From d111c7b68c12eec6b38dca1471aeaab88cd4bb62 Mon Sep 17 00:00:00 2001 From: may Date: Thu, 27 Feb 2025 20:17:45 +0100 Subject: [PATCH 1/4] parse default const parameters --- grammar.js | 13 +++++++++++++ test/corpus/declarations.txt | 26 ++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/grammar.js b/grammar.js index 6a7de4b3..f9f06ae4 100644 --- a/grammar.js +++ b/grammar.js @@ -566,6 +566,19 @@ module.exports = grammar({ field('name', $.identifier), ':', field('type', $._type), + optional( + seq( + '=', + field('value', + choice( + $.block, + $.identifier, + $._literal, + $.negative_literal, + ), + ), + ), + ), ), constrained_type_parameter: $ => seq( diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 7f62fb17..b25c05e4 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -2413,3 +2413,29 @@ where (type_arguments (type_identifier)))))) (block))) + +================================================================================ +Const generics with default +================================================================================ + +pub struct Loaf([T; N]); + +-------------------------------------------------------------------------------- + +(source_file + (struct_item + (visibility_modifier) + (type_identifier) + (type_parameters + (constrained_type_parameter + (type_identifier) + (trait_bounds + (type_identifier))) + (const_parameter + (identifier) + (primitive_type) + (integer_literal))) + (ordered_field_declaration_list + (array_type + (type_identifier) + (identifier))))) From 3c2ecddc5cb47510081166236d93c149bdadf455 Mon Sep 17 00:00:00 2001 From: may Date: Thu, 27 Feb 2025 22:12:27 +0100 Subject: [PATCH 2/4] implement type_parameter like const_parameter instead of having two seperate type_parameter rules: `constrained_type_parameter` and `optional_type_parameter`, combine them into one rule with two `optional`s. --- grammar.js | 29 +++----- test/corpus/declarations.txt | 137 +++++++++++++++++++++-------------- 2 files changed, 94 insertions(+), 72 deletions(-) diff --git a/grammar.js b/grammar.js index f9f06ae4..9397c886 100644 --- a/grammar.js +++ b/grammar.js @@ -107,7 +107,6 @@ module.exports = grammar({ [$.scoped_identifier, $.scoped_type_identifier], [$.parameters, $._pattern], [$.parameters, $.tuple_struct_pattern], - [$.type_parameters, $.for_lifetimes], [$.array_expression], [$.visibility_modifier], [$.visibility_modifier, $.scoped_identifier, $.scoped_type_identifier], @@ -549,11 +548,8 @@ module.exports = grammar({ sepBy1(',', seq( repeat($.attribute_item), choice( - $.lifetime, $.metavariable, - $._type_identifier, - $.constrained_type_parameter, - $.optional_type_parameter, + $.type_parameter, $.const_parameter, ), )), @@ -581,19 +577,16 @@ module.exports = grammar({ ), ), - constrained_type_parameter: $ => seq( - field('left', choice($.lifetime, $._type_identifier)), - field('bounds', $.trait_bounds), - ), - - optional_type_parameter: $ => seq( - field('name', choice( - $._type_identifier, - $.constrained_type_parameter, - )), - '=', - field('default_type', $._type), - ), + type_parameter: $ => prec(1, seq( + field('name', choice($.lifetime, $._type_identifier)), + optional(field('bounds', $.trait_bounds)), + optional( + seq( + '=', + field('default_type', $._type), + ), + ), + )), let_declaration: $ => seq( 'let', diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index b25c05e4..5928f29c 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -211,8 +211,9 @@ fn foo(bar: impl for<'a> Baz>) {} pattern: (identifier) type: (abstract_type (type_parameters - (lifetime - (identifier))) + (type_parameter + name: (lifetime + (identifier)))) trait: (generic_type type: (type_identifier) type_arguments: (type_arguments @@ -715,21 +716,25 @@ struct E<#[attr] T> {} (struct_item name: (type_identifier) type_parameters: (type_parameters - (type_identifier)) + (type_parameter + name: (type_identifier))) body: (field_declaration_list)) (struct_item name: (type_identifier) type_parameters: (type_parameters - (lifetime - (identifier)) - (lifetime - (identifier))) + (type_parameter + name: (lifetime + (identifier))) + (type_parameter + name: (lifetime + (identifier)))) body: (field_declaration_list)) (struct_item name: (type_identifier) type_parameters: (type_parameters - (lifetime - (identifier))) + (type_parameter + name: (lifetime + (identifier)))) body: (field_declaration_list)) (struct_item name: (type_identifier) @@ -744,7 +749,8 @@ struct E<#[attr] T> {} (attribute_item (attribute (identifier))) - (type_identifier)) + (type_parameter + name: (type_identifier))) body: (field_declaration_list))) ================================================================================ @@ -775,7 +781,8 @@ pub enum Node { (visibility_modifier) (type_identifier) (type_parameters - (type_identifier)) + (type_parameter + (type_identifier))) (enum_variant_list (enum_variant (identifier)) @@ -787,7 +794,7 @@ pub enum Node { (visibility_modifier) (type_identifier) (type_parameters - (constrained_type_parameter + (type_parameter (type_identifier) (trait_bounds (type_identifier)))) @@ -858,8 +865,8 @@ pub fn uninit_array() -> [Self; LEN] {} (visibility_modifier) name: (identifier) type_parameters: (type_parameters - (constrained_type_parameter - left: (type_identifier) + (type_parameter + name: (type_identifier) bounds: (trait_bounds (generic_type type: (type_identifier) @@ -1055,7 +1062,8 @@ type LazyResolve = impl (FnOnce() -> Capture) + Send + Sync + UnwindSafe; (type_item (type_identifier) (type_parameters - (type_identifier)) + (type_parameter + (type_identifier))) (generic_type (type_identifier) (type_arguments @@ -1496,8 +1504,9 @@ impl ConvertTo for i32 { (source_file (impl_item type_parameters: (type_parameters - (lifetime - (identifier))) + (type_parameter + name: (lifetime + (identifier)))) trait: (scoped_type_identifier path: (identifier) name: (type_identifier)) @@ -1568,7 +1577,7 @@ impl Display for OccupiedError; (source_file (impl_item (type_parameters - (constrained_type_parameter + (type_parameter (type_identifier) (trait_bounds (type_identifier) @@ -1580,7 +1589,7 @@ impl Display for OccupiedError; (type_identifier)))) (impl_item (type_parameters - (constrained_type_parameter + (type_parameter (type_identifier) (trait_bounds (type_identifier) @@ -1672,7 +1681,7 @@ trait Add { (trait_item (type_identifier) (type_parameters - (optional_type_parameter + (type_parameter (type_identifier) (type_identifier))) (declaration_list @@ -1705,7 +1714,7 @@ fn univariant(this: &impl ?Sized, that: &(impl LayoutCalculator + ?Sized)) {} (trait_item (type_identifier) (type_parameters - (constrained_type_parameter + (type_parameter (type_identifier) (trait_bounds (removed_trait_bound @@ -1742,7 +1751,7 @@ impl> HasNodeId for T {} (source_file (impl_item (type_parameters - (constrained_type_parameter + (type_parameter (type_identifier) (trait_bounds (generic_type @@ -1865,9 +1874,11 @@ where (associated_type (type_identifier) (type_parameters - (lifetime - (identifier)) - (type_identifier)) + (type_parameter + (lifetime + (identifier))) + (type_parameter + (type_identifier))) (trait_bounds (generic_type (type_identifier) @@ -1884,9 +1895,11 @@ where (type_item (type_identifier) (type_parameters - (lifetime - (identifier)) - (type_identifier)) + (type_parameter + (lifetime + (identifier))) + (type_parameter + (type_identifier))) (generic_type (type_identifier) (type_arguments @@ -1896,7 +1909,7 @@ where (function_item (identifier) (type_parameters - (constrained_type_parameter + (type_parameter (type_identifier) (trait_bounds (generic_type @@ -1914,7 +1927,8 @@ where (function_item (identifier) (type_parameters - (type_identifier)) + (type_parameter + (type_identifier))) (parameters) (where_clause (where_predicate @@ -1949,8 +1963,9 @@ type FnObject<'b> = dyn for<'a> FnLike<&'a isize, &'a isize> + 'b; (trait_bounds (higher_ranked_trait_bound (type_parameters - (lifetime - (identifier))) + (type_parameter + (lifetime + (identifier)))) (generic_type (type_identifier) (type_arguments @@ -1962,14 +1977,16 @@ type FnObject<'b> = dyn for<'a> FnLike<&'a isize, &'a isize> + 'b; (type_item (type_identifier) (type_parameters - (lifetime - (identifier))) + (type_parameter + (lifetime + (identifier)))) (bounded_type (dynamic_type (higher_ranked_trait_bound (type_parameters - (lifetime - (identifier))) + (type_parameter + (lifetime + (identifier)))) (generic_type (type_identifier) (type_arguments @@ -2101,7 +2118,8 @@ impl Default for B where *mut A: C + D {} (function_item name: (identifier) type_parameters: (type_parameters - (type_identifier)) + (type_parameter + name: (type_identifier))) parameters: (parameters (self_parameter (self)) @@ -2126,10 +2144,11 @@ impl Default for B where *mut A: C + D {} (boolean_literal)))) (impl_item type_parameters: (type_parameters - (lifetime - (identifier)) - (constrained_type_parameter - left: (type_identifier) + (type_parameter + name: (lifetime + (identifier))) + (type_parameter + name: (type_identifier) bounds: (trait_bounds (lifetime (identifier)) @@ -2150,7 +2169,8 @@ impl Default for B where *mut A: C + D {} body: (declaration_list)) (impl_item type_parameters: (type_parameters - (type_identifier)) + (type_parameter + name: (type_identifier))) trait: (type_identifier) type: (generic_type type: (type_identifier) @@ -2178,9 +2198,11 @@ impl Default for B where *mut A: C + D {} body: (declaration_list)) (impl_item type_parameters: (type_parameters - (lifetime - (identifier)) - (type_identifier)) + (type_parameter + name: (lifetime + (identifier))) + (type_parameter + name: (type_identifier))) type: (type_identifier) (where_clause (where_predicate @@ -2193,7 +2215,8 @@ impl Default for B where *mut A: C + D {} body: (declaration_list)) (impl_item type_parameters: (type_parameters - (type_identifier)) + (type_parameter + name: (type_identifier))) trait: (type_identifier) type: (generic_type type: (type_identifier) @@ -2210,7 +2233,8 @@ impl Default for B where *mut A: C + D {} body: (declaration_list)) (impl_item type_parameters: (type_parameters - (type_identifier)) + (type_parameter + name: (type_identifier))) trait: (type_identifier) type: (generic_type type: (type_identifier) @@ -2220,8 +2244,9 @@ impl Default for B where *mut A: C + D {} (where_predicate left: (higher_ranked_trait_bound type_parameters: (type_parameters - (lifetime - (identifier))) + (type_parameter + name: (lifetime + (identifier)))) type: (generic_type type: (type_identifier) type_arguments: (type_arguments @@ -2237,7 +2262,8 @@ impl Default for B where *mut A: C + D {} (visibility_modifier) name: (type_identifier) type_parameters: (type_parameters - (type_identifier)) + (type_parameter + name: (type_identifier))) (where_clause (where_predicate left: (type_identifier) @@ -2247,7 +2273,8 @@ impl Default for B where *mut A: C + D {} (function_item name: (identifier) type_parameters: (type_parameters - (type_identifier)) + (type_parameter + name: (type_identifier))) parameters: (parameters) (where_clause (where_predicate @@ -2268,7 +2295,8 @@ impl Default for B where *mut A: C + D {} body: (block)) (impl_item type_parameters: (type_parameters - (type_identifier)) + (type_parameter + name: (type_identifier))) trait: (type_identifier) type: (generic_type type: (type_identifier) @@ -2397,7 +2425,8 @@ where (function_item (identifier) (type_parameters - (type_identifier)) + (type_parameter + (type_identifier))) (parameters (parameter (identifier) @@ -2427,7 +2456,7 @@ pub struct Loaf([T; N]); (visibility_modifier) (type_identifier) (type_parameters - (constrained_type_parameter + (type_parameter (type_identifier) (trait_bounds (type_identifier))) From e4a6f5d0637024d094fadb8692ee8c82309e436b Mon Sep 17 00:00:00 2001 From: may Date: Fri, 28 Feb 2025 00:01:01 +0100 Subject: [PATCH 3/4] split type_parameter into itself and lifetime_parameter --- grammar.js | 8 +++++++- test/corpus/declarations.txt | 26 +++++++++++++------------- 2 files changed, 20 insertions(+), 14 deletions(-) diff --git a/grammar.js b/grammar.js index 9397c886..0b125586 100644 --- a/grammar.js +++ b/grammar.js @@ -550,6 +550,7 @@ module.exports = grammar({ choice( $.metavariable, $.type_parameter, + $.lifetime_parameter, $.const_parameter, ), )), @@ -578,7 +579,7 @@ module.exports = grammar({ ), type_parameter: $ => prec(1, seq( - field('name', choice($.lifetime, $._type_identifier)), + field('name', $._type_identifier), optional(field('bounds', $.trait_bounds)), optional( seq( @@ -588,6 +589,11 @@ module.exports = grammar({ ), )), + lifetime_parameter: $ => prec(1, seq( + field('name', $.lifetime), + optional(field('bounds', $.trait_bounds)), + )), + let_declaration: $ => seq( 'let', optional($.mutable_specifier), diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 5928f29c..9048ea83 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -211,7 +211,7 @@ fn foo(bar: impl for<'a> Baz>) {} pattern: (identifier) type: (abstract_type (type_parameters - (type_parameter + (lifetime_parameter name: (lifetime (identifier)))) trait: (generic_type @@ -722,17 +722,17 @@ struct E<#[attr] T> {} (struct_item name: (type_identifier) type_parameters: (type_parameters - (type_parameter + (lifetime_parameter name: (lifetime (identifier))) - (type_parameter + (lifetime_parameter name: (lifetime (identifier)))) body: (field_declaration_list)) (struct_item name: (type_identifier) type_parameters: (type_parameters - (type_parameter + (lifetime_parameter name: (lifetime (identifier)))) body: (field_declaration_list)) @@ -1504,7 +1504,7 @@ impl ConvertTo for i32 { (source_file (impl_item type_parameters: (type_parameters - (type_parameter + (lifetime_parameter name: (lifetime (identifier)))) trait: (scoped_type_identifier @@ -1874,7 +1874,7 @@ where (associated_type (type_identifier) (type_parameters - (type_parameter + (lifetime_parameter (lifetime (identifier))) (type_parameter @@ -1895,7 +1895,7 @@ where (type_item (type_identifier) (type_parameters - (type_parameter + (lifetime_parameter (lifetime (identifier))) (type_parameter @@ -1963,7 +1963,7 @@ type FnObject<'b> = dyn for<'a> FnLike<&'a isize, &'a isize> + 'b; (trait_bounds (higher_ranked_trait_bound (type_parameters - (type_parameter + (lifetime_parameter (lifetime (identifier)))) (generic_type @@ -1977,14 +1977,14 @@ type FnObject<'b> = dyn for<'a> FnLike<&'a isize, &'a isize> + 'b; (type_item (type_identifier) (type_parameters - (type_parameter + (lifetime_parameter (lifetime (identifier)))) (bounded_type (dynamic_type (higher_ranked_trait_bound (type_parameters - (type_parameter + (lifetime_parameter (lifetime (identifier)))) (generic_type @@ -2144,7 +2144,7 @@ impl Default for B where *mut A: C + D {} (boolean_literal)))) (impl_item type_parameters: (type_parameters - (type_parameter + (lifetime_parameter name: (lifetime (identifier))) (type_parameter @@ -2198,7 +2198,7 @@ impl Default for B where *mut A: C + D {} body: (declaration_list)) (impl_item type_parameters: (type_parameters - (type_parameter + (lifetime_parameter name: (lifetime (identifier))) (type_parameter @@ -2244,7 +2244,7 @@ impl Default for B where *mut A: C + D {} (where_predicate left: (higher_ranked_trait_bound type_parameters: (type_parameters - (type_parameter + (lifetime_parameter name: (lifetime (identifier)))) type: (generic_type From 5269fa0edce86cd011ff627f01b06e03770368a8 Mon Sep 17 00:00:00 2001 From: may Date: Thu, 27 Feb 2025 23:50:21 +0100 Subject: [PATCH 4/4] chore: tree-sitter generate --- src/grammar.json | 189 +- src/node-types.json | 134 +- src/parser.c | 186923 ++++++++++++++++++++--------------------- 3 files changed, 93020 insertions(+), 94226 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 24f49f41..a3169923 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3123,25 +3123,17 @@ { "type": "CHOICE", "members": [ - { - "type": "SYMBOL", - "name": "lifetime" - }, { "type": "SYMBOL", "name": "metavariable" }, { "type": "SYMBOL", - "name": "_type_identifier" + "name": "type_parameter" }, { "type": "SYMBOL", - "name": "constrained_type_parameter" - }, - { - "type": "SYMBOL", - "name": "optional_type_parameter" + "name": "lifetime_parameter" }, { "type": "SYMBOL", @@ -3173,25 +3165,17 @@ { "type": "CHOICE", "members": [ - { - "type": "SYMBOL", - "name": "lifetime" - }, { "type": "SYMBOL", "name": "metavariable" }, { "type": "SYMBOL", - "name": "_type_identifier" + "name": "type_parameter" }, { "type": "SYMBOL", - "name": "constrained_type_parameter" - }, - { - "type": "SYMBOL", - "name": "optional_type_parameter" + "name": "lifetime_parameter" }, { "type": "SYMBOL", @@ -3251,72 +3235,141 @@ "type": "SYMBOL", "name": "_type" } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "block" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "SYMBOL", + "name": "negative_literal" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] } ] }, - "constrained_type_parameter": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { + "type_parameter": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "lifetime" + "type": "FIELD", + "name": "bounds", + "content": { + "type": "SYMBOL", + "name": "trait_bounds" + } }, { - "type": "SYMBOL", - "name": "_type_identifier" + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "default_type", + "content": { + "type": "SYMBOL", + "name": "_type" + } + } + ] + }, + { + "type": "BLANK" } ] } - }, - { - "type": "FIELD", - "name": "bounds", - "content": { - "type": "SYMBOL", - "name": "trait_bounds" - } - } - ] + ] + } }, - "optional_type_parameter": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { + "lifetime_parameter": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "lifetime" + } + }, + { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_type_identifier" + "type": "FIELD", + "name": "bounds", + "content": { + "type": "SYMBOL", + "name": "trait_bounds" + } }, { - "type": "SYMBOL", - "name": "constrained_type_parameter" + "type": "BLANK" } ] } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "default_type", - "content": { - "type": "SYMBOL", - "name": "_type" - } - } - ] + ] + } }, "let_declaration": { "type": "SEQ", @@ -9423,10 +9476,6 @@ "parameters", "tuple_struct_pattern" ], - [ - "type_parameters", - "for_lifetimes" - ], [ "array_expression" ], diff --git a/src/node-types.json b/src/node-types.json index e33e1e7a..43944107 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1418,33 +1418,25 @@ "named": true } ] - } - } - }, - { - "type": "constrained_type_parameter", - "named": true, - "fields": { - "bounds": { + }, + "value": { "multiple": false, - "required": true, + "required": false, "types": [ { - "type": "trait_bounds", + "type": "_literal", "named": true - } - ] - }, - "left": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "lifetime", + "type": "block", "named": true }, { - "type": "type_identifier", + "type": "identifier", + "named": true + }, + { + "type": "negative_literal", "named": true } ] @@ -2672,6 +2664,32 @@ ] } }, + { + "type": "lifetime_parameter", + "named": true, + "fields": { + "bounds": { + "multiple": false, + "required": false, + "types": [ + { + "type": "trait_bounds", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "lifetime", + "named": true + } + ] + } + } + }, { "type": "line_comment", "named": true, @@ -3010,36 +3028,6 @@ "named": true, "fields": {} }, - { - "type": "optional_type_parameter", - "named": true, - "fields": { - "default_type": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_type", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "constrained_type_parameter", - "named": true - }, - { - "type": "type_identifier", - "named": true - } - ] - } - } - }, { "type": "or_pattern", "named": true, @@ -4437,6 +4425,42 @@ ] } }, + { + "type": "type_parameter", + "named": true, + "fields": { + "bounds": { + "multiple": false, + "required": false, + "types": [ + { + "type": "trait_bounds", + "named": true + } + ] + }, + "default_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_type", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type_identifier", + "named": true + } + ] + } + } + }, { "type": "type_parameters", "named": true, @@ -4454,11 +4478,7 @@ "named": true }, { - "type": "constrained_type_parameter", - "named": true - }, - { - "type": "lifetime", + "type": "lifetime_parameter", "named": true }, { @@ -4466,11 +4486,7 @@ "named": true }, { - "type": "optional_type_parameter", - "named": true - }, - { - "type": "type_identifier", + "type": "type_parameter", "named": true } ] diff --git a/src/parser.c b/src/parser.c index 7ff37e80..e5d082d3 100644 --- a/src/parser.c +++ b/src/parser.c @@ -7,7 +7,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3667 +#define STATE_COUNT 3625 #define LARGE_STATE_COUNT 1018 #define SYMBOL_COUNT 347 #define ALIAS_COUNT 4 @@ -16,7 +16,7 @@ #define FIELD_COUNT 31 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 281 +#define PRODUCTION_ID_COUNT 282 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -218,8 +218,8 @@ enum ts_symbol_identifiers { sym_removed_trait_bound = 196, sym_type_parameters = 197, sym_const_parameter = 198, - sym_constrained_type_parameter = 199, - sym_optional_type_parameter = 200, + sym_type_parameter = 199, + sym_lifetime_parameter = 200, sym_let_declaration = 201, sym_use_declaration = 202, sym__use_clause = 203, @@ -572,8 +572,8 @@ static const char * const ts_symbol_names[] = { [sym_removed_trait_bound] = "removed_trait_bound", [sym_type_parameters] = "type_parameters", [sym_const_parameter] = "const_parameter", - [sym_constrained_type_parameter] = "constrained_type_parameter", - [sym_optional_type_parameter] = "optional_type_parameter", + [sym_type_parameter] = "type_parameter", + [sym_lifetime_parameter] = "lifetime_parameter", [sym_let_declaration] = "let_declaration", [sym_use_declaration] = "use_declaration", [sym__use_clause] = "_use_clause", @@ -926,8 +926,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_removed_trait_bound] = sym_removed_trait_bound, [sym_type_parameters] = sym_type_parameters, [sym_const_parameter] = sym_const_parameter, - [sym_constrained_type_parameter] = sym_constrained_type_parameter, - [sym_optional_type_parameter] = sym_optional_type_parameter, + [sym_type_parameter] = sym_type_parameter, + [sym_lifetime_parameter] = sym_lifetime_parameter, [sym_let_declaration] = sym_let_declaration, [sym_use_declaration] = sym_use_declaration, [sym__use_clause] = sym__use_clause, @@ -1877,11 +1877,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_constrained_type_parameter] = { + [sym_type_parameter] = { .visible = true, .named = true, }, - [sym_optional_type_parameter] = { + [sym_lifetime_parameter] = { .visible = true, .named = true, }, @@ -2589,51 +2589,52 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [28] = {.index = 26, .length = 1}, [29] = {.index = 27, .length = 2}, [30] = {.index = 29, .length = 2}, - [31] = {.index = 31, .length = 2}, - [32] = {.index = 33, .length = 1}, - [33] = {.index = 34, .length = 2}, - [34] = {.index = 27, .length = 2}, - [35] = {.index = 36, .length = 2}, - [36] = {.index = 38, .length = 1}, - [37] = {.index = 39, .length = 1}, - [38] = {.index = 40, .length = 2}, - [39] = {.index = 26, .length = 1}, - [40] = {.index = 16, .length = 2}, - [41] = {.index = 16, .length = 2}, - [42] = {.index = 42, .length = 2}, - [43] = {.index = 44, .length = 2}, - [44] = {.index = 46, .length = 1}, - [45] = {.index = 16, .length = 2}, - [46] = {.index = 16, .length = 2}, - [47] = {.index = 47, .length = 3}, - [48] = {.index = 50, .length = 2}, - [49] = {.index = 52, .length = 2}, - [50] = {.index = 52, .length = 2}, - [51] = {.index = 54, .length = 2}, - [52] = {.index = 44, .length = 2}, - [53] = {.index = 11, .length = 3}, - [54] = {.index = 3, .length = 1}, - [55] = {.index = 56, .length = 1}, + [31] = {.index = 31, .length = 1}, + [32] = {.index = 31, .length = 1}, + [33] = {.index = 32, .length = 2}, + [34] = {.index = 34, .length = 1}, + [35] = {.index = 35, .length = 2}, + [36] = {.index = 27, .length = 2}, + [37] = {.index = 37, .length = 2}, + [38] = {.index = 39, .length = 1}, + [39] = {.index = 40, .length = 1}, + [40] = {.index = 41, .length = 2}, + [41] = {.index = 26, .length = 1}, + [42] = {.index = 16, .length = 2}, + [43] = {.index = 16, .length = 2}, + [44] = {.index = 43, .length = 2}, + [45] = {.index = 45, .length = 2}, + [46] = {.index = 47, .length = 1}, + [47] = {.index = 16, .length = 2}, + [48] = {.index = 16, .length = 2}, + [49] = {.index = 48, .length = 3}, + [50] = {.index = 51, .length = 2}, + [51] = {.index = 53, .length = 2}, + [52] = {.index = 53, .length = 2}, + [53] = {.index = 55, .length = 2}, + [54] = {.index = 45, .length = 2}, + [55] = {.index = 11, .length = 3}, + [56] = {.index = 3, .length = 1}, [57] = {.index = 57, .length = 1}, - [58] = {.index = 57, .length = 1}, [59] = {.index = 58, .length = 1}, - [61] = {.index = 59, .length = 1}, - [62] = {.index = 60, .length = 2}, - [63] = {.index = 57, .length = 1}, - [64] = {.index = 62, .length = 1}, - [65] = {.index = 63, .length = 1}, - [66] = {.index = 64, .length = 1}, - [67] = {.index = 65, .length = 2}, - [68] = {.index = 67, .length = 2}, - [69] = {.index = 67, .length = 2}, - [70] = {.index = 69, .length = 1}, - [71] = {.index = 69, .length = 1}, - [72] = {.index = 58, .length = 1}, - [73] = {.index = 70, .length = 2}, - [74] = {.index = 72, .length = 3}, - [75] = {.index = 75, .length = 2}, - [76] = {.index = 77, .length = 3}, - [77] = {.index = 80, .length = 3}, + [60] = {.index = 58, .length = 1}, + [61] = {.index = 31, .length = 1}, + [63] = {.index = 59, .length = 1}, + [64] = {.index = 60, .length = 2}, + [65] = {.index = 58, .length = 1}, + [66] = {.index = 62, .length = 1}, + [67] = {.index = 63, .length = 1}, + [68] = {.index = 64, .length = 1}, + [69] = {.index = 65, .length = 2}, + [70] = {.index = 67, .length = 2}, + [71] = {.index = 67, .length = 2}, + [72] = {.index = 69, .length = 1}, + [73] = {.index = 69, .length = 1}, + [74] = {.index = 70, .length = 2}, + [75] = {.index = 72, .length = 3}, + [76] = {.index = 75, .length = 2}, + [77] = {.index = 77, .length = 3}, + [78] = {.index = 80, .length = 3}, [79] = {.index = 83, .length = 2}, [80] = {.index = 83, .length = 2}, [81] = {.index = 85, .length = 2}, @@ -2668,172 +2669,174 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [110] = {.index = 123, .length = 3}, [111] = {.index = 18, .length = 1}, [112] = {.index = 127, .length = 2}, - [113] = {.index = 129, .length = 3}, - [114] = {.index = 132, .length = 3}, - [115] = {.index = 135, .length = 4}, - [116] = {.index = 139, .length = 3}, - [117] = {.index = 142, .length = 3}, - [118] = {.index = 145, .length = 2}, - [119] = {.index = 147, .length = 2}, + [113] = {.index = 129, .length = 2}, + [114] = {.index = 129, .length = 2}, + [115] = {.index = 131, .length = 3}, + [116] = {.index = 134, .length = 3}, + [117] = {.index = 137, .length = 4}, + [118] = {.index = 141, .length = 3}, + [119] = {.index = 144, .length = 3}, [120] = {.index = 147, .length = 2}, - [122] = {.index = 149, .length = 2}, - [123] = {.index = 151, .length = 3}, - [124] = {.index = 154, .length = 3}, - [125] = {.index = 149, .length = 2}, - [126] = {.index = 151, .length = 3}, - [127] = {.index = 157, .length = 2}, - [129] = {.index = 159, .length = 3}, - [130] = {.index = 162, .length = 3}, - [131] = {.index = 165, .length = 4}, + [121] = {.index = 149, .length = 2}, + [122] = {.index = 151, .length = 2}, + [123] = {.index = 153, .length = 3}, + [124] = {.index = 156, .length = 3}, + [125] = {.index = 151, .length = 2}, + [126] = {.index = 153, .length = 3}, + [127] = {.index = 159, .length = 2}, + [129] = {.index = 161, .length = 3}, + [130] = {.index = 164, .length = 3}, + [131] = {.index = 167, .length = 4}, [132] = {.index = 127, .length = 2}, - [133] = {.index = 169, .length = 3}, - [134] = {.index = 172, .length = 2}, - [135] = {.index = 174, .length = 3}, - [136] = {.index = 177, .length = 2}, - [137] = {.index = 179, .length = 2}, - [138] = {.index = 181, .length = 3}, - [139] = {.index = 184, .length = 3}, - [140] = {.index = 187, .length = 2}, - [141] = {.index = 187, .length = 2}, - [142] = {.index = 189, .length = 2}, - [143] = {.index = 191, .length = 3}, - [144] = {.index = 194, .length = 2}, - [145] = {.index = 196, .length = 2}, - [146] = {.index = 198, .length = 1}, - [147] = {.index = 199, .length = 2}, - [148] = {.index = 201, .length = 1}, - [149] = {.index = 202, .length = 2}, + [133] = {.index = 171, .length = 3}, + [134] = {.index = 174, .length = 2}, + [135] = {.index = 176, .length = 3}, + [136] = {.index = 179, .length = 2}, + [137] = {.index = 181, .length = 2}, + [138] = {.index = 183, .length = 3}, + [139] = {.index = 186, .length = 3}, + [140] = {.index = 189, .length = 2}, + [141] = {.index = 189, .length = 2}, + [142] = {.index = 191, .length = 2}, + [143] = {.index = 193, .length = 3}, + [144] = {.index = 196, .length = 2}, + [145] = {.index = 198, .length = 2}, + [146] = {.index = 200, .length = 1}, + [147] = {.index = 201, .length = 2}, + [148] = {.index = 203, .length = 1}, + [149] = {.index = 204, .length = 2}, [150] = {.index = 110, .length = 1}, - [151] = {.index = 204, .length = 2}, - [152] = {.index = 206, .length = 2}, - [153] = {.index = 208, .length = 1}, - [154] = {.index = 209, .length = 2}, - [155] = {.index = 211, .length = 3}, - [156] = {.index = 211, .length = 3}, - [157] = {.index = 214, .length = 2}, - [158] = {.index = 216, .length = 4}, - [159] = {.index = 220, .length = 3}, - [160] = {.index = 223, .length = 4}, - [161] = {.index = 227, .length = 2}, - [162] = {.index = 229, .length = 3}, - [163] = {.index = 227, .length = 2}, - [164] = {.index = 229, .length = 3}, - [165] = {.index = 232, .length = 3}, - [166] = {.index = 235, .length = 3}, - [167] = {.index = 238, .length = 4}, - [168] = {.index = 235, .length = 3}, - [169] = {.index = 238, .length = 4}, - [170] = {.index = 232, .length = 3}, - [171] = {.index = 242, .length = 2}, - [172] = {.index = 244, .length = 2}, - [173] = {.index = 246, .length = 2}, - [174] = {.index = 248, .length = 2}, - [175] = {.index = 250, .length = 1}, - [176] = {.index = 251, .length = 2}, - [177] = {.index = 253, .length = 3}, - [178] = {.index = 256, .length = 2}, - [179] = {.index = 258, .length = 2}, - [180] = {.index = 202, .length = 2}, - [181] = {.index = 260, .length = 4}, - [182] = {.index = 264, .length = 3}, - [183] = {.index = 267, .length = 3}, - [184] = {.index = 270, .length = 3}, - [185] = {.index = 273, .length = 3}, - [186] = {.index = 276, .length = 4}, - [187] = {.index = 280, .length = 2}, - [188] = {.index = 282, .length = 2}, - [189] = {.index = 282, .length = 2}, - [190] = {.index = 284, .length = 3}, - [191] = {.index = 287, .length = 4}, - [192] = {.index = 291, .length = 3}, - [193] = {.index = 251, .length = 2}, - [194] = {.index = 294, .length = 2}, - [195] = {.index = 296, .length = 3}, - [196] = {.index = 299, .length = 3}, - [197] = {.index = 302, .length = 2}, - [198] = {.index = 304, .length = 3}, - [199] = {.index = 202, .length = 2}, - [200] = {.index = 307, .length = 3}, - [201] = {.index = 310, .length = 2}, - [202] = {.index = 312, .length = 2}, - [203] = {.index = 314, .length = 3}, - [204] = {.index = 317, .length = 3}, - [205] = {.index = 320, .length = 2}, - [206] = {.index = 322, .length = 4}, - [207] = {.index = 326, .length = 5}, - [208] = {.index = 331, .length = 4}, - [209] = {.index = 335, .length = 3}, - [210] = {.index = 335, .length = 3}, - [211] = {.index = 338, .length = 3}, - [212] = {.index = 341, .length = 4}, - [213] = {.index = 338, .length = 3}, - [214] = {.index = 341, .length = 4}, - [215] = {.index = 345, .length = 4}, - [216] = {.index = 345, .length = 4}, - [217] = {.index = 349, .length = 3}, - [218] = {.index = 352, .length = 3}, - [219] = {.index = 355, .length = 3}, - [220] = {.index = 358, .length = 2}, - [221] = {.index = 360, .length = 2}, - [222] = {.index = 127, .length = 2}, - [223] = {.index = 362, .length = 2}, - [224] = {.index = 364, .length = 3}, - [225] = {.index = 362, .length = 2}, - [226] = {.index = 364, .length = 3}, - [227] = {.index = 367, .length = 3}, - [228] = {.index = 370, .length = 4}, - [229] = {.index = 367, .length = 3}, - [230] = {.index = 370, .length = 4}, - [231] = {.index = 374, .length = 4}, - [232] = {.index = 378, .length = 4}, - [233] = {.index = 382, .length = 3}, - [234] = {.index = 385, .length = 4}, - [235] = {.index = 389, .length = 3}, - [236] = {.index = 392, .length = 3}, - [237] = {.index = 395, .length = 3}, - [238] = {.index = 398, .length = 4}, - [239] = {.index = 402, .length = 2}, - [240] = {.index = 404, .length = 3}, - [241] = {.index = 407, .length = 4}, - [242] = {.index = 411, .length = 3}, - [243] = {.index = 414, .length = 3}, - [244] = {.index = 417, .length = 2}, - [245] = {.index = 419, .length = 3}, - [246] = {.index = 422, .length = 5}, - [247] = {.index = 427, .length = 4}, - [248] = {.index = 427, .length = 4}, - [249] = {.index = 431, .length = 3}, - [250] = {.index = 434, .length = 3}, - [251] = {.index = 437, .length = 3}, - [252] = {.index = 440, .length = 3}, - [253] = {.index = 443, .length = 2}, - [254] = {.index = 445, .length = 3}, - [255] = {.index = 445, .length = 3}, - [256] = {.index = 448, .length = 3}, - [257] = {.index = 451, .length = 4}, - [258] = {.index = 448, .length = 3}, - [259] = {.index = 451, .length = 4}, - [260] = {.index = 455, .length = 4}, - [261] = {.index = 455, .length = 4}, - [262] = {.index = 459, .length = 4}, - [263] = {.index = 463, .length = 5}, - [264] = {.index = 468, .length = 4}, - [265] = {.index = 472, .length = 2}, - [266] = {.index = 474, .length = 4}, - [267] = {.index = 478, .length = 4}, - [268] = {.index = 482, .length = 3}, - [269] = {.index = 485, .length = 4}, - [270] = {.index = 489, .length = 4}, - [271] = {.index = 493, .length = 3}, - [272] = {.index = 496, .length = 4}, - [273] = {.index = 496, .length = 4}, - [274] = {.index = 500, .length = 5}, - [275] = {.index = 505, .length = 4}, - [276] = {.index = 509, .length = 5}, - [277] = {.index = 514, .length = 4}, - [278] = {.index = 518, .length = 4}, - [279] = {.index = 522, .length = 3}, - [280] = {.index = 525, .length = 5}, + [151] = {.index = 206, .length = 2}, + [152] = {.index = 208, .length = 2}, + [153] = {.index = 210, .length = 1}, + [154] = {.index = 211, .length = 2}, + [155] = {.index = 213, .length = 3}, + [156] = {.index = 213, .length = 3}, + [157] = {.index = 216, .length = 2}, + [158] = {.index = 218, .length = 4}, + [159] = {.index = 222, .length = 3}, + [160] = {.index = 225, .length = 4}, + [161] = {.index = 229, .length = 2}, + [162] = {.index = 231, .length = 3}, + [163] = {.index = 229, .length = 2}, + [164] = {.index = 231, .length = 3}, + [165] = {.index = 234, .length = 3}, + [166] = {.index = 237, .length = 3}, + [167] = {.index = 240, .length = 3}, + [168] = {.index = 243, .length = 4}, + [169] = {.index = 240, .length = 3}, + [170] = {.index = 243, .length = 4}, + [171] = {.index = 237, .length = 3}, + [172] = {.index = 247, .length = 2}, + [173] = {.index = 249, .length = 2}, + [174] = {.index = 251, .length = 2}, + [175] = {.index = 253, .length = 2}, + [176] = {.index = 255, .length = 1}, + [177] = {.index = 256, .length = 2}, + [178] = {.index = 258, .length = 3}, + [179] = {.index = 261, .length = 2}, + [180] = {.index = 263, .length = 2}, + [181] = {.index = 204, .length = 2}, + [182] = {.index = 265, .length = 4}, + [183] = {.index = 269, .length = 3}, + [184] = {.index = 272, .length = 3}, + [185] = {.index = 275, .length = 3}, + [186] = {.index = 278, .length = 3}, + [187] = {.index = 281, .length = 4}, + [188] = {.index = 285, .length = 2}, + [189] = {.index = 287, .length = 2}, + [190] = {.index = 287, .length = 2}, + [191] = {.index = 289, .length = 3}, + [192] = {.index = 292, .length = 4}, + [193] = {.index = 296, .length = 3}, + [194] = {.index = 256, .length = 2}, + [195] = {.index = 299, .length = 2}, + [196] = {.index = 301, .length = 3}, + [197] = {.index = 304, .length = 3}, + [198] = {.index = 307, .length = 2}, + [199] = {.index = 309, .length = 3}, + [200] = {.index = 204, .length = 2}, + [201] = {.index = 312, .length = 3}, + [202] = {.index = 315, .length = 2}, + [203] = {.index = 317, .length = 2}, + [204] = {.index = 319, .length = 3}, + [205] = {.index = 322, .length = 3}, + [206] = {.index = 325, .length = 2}, + [207] = {.index = 327, .length = 4}, + [208] = {.index = 331, .length = 5}, + [209] = {.index = 336, .length = 4}, + [210] = {.index = 340, .length = 3}, + [211] = {.index = 340, .length = 3}, + [212] = {.index = 343, .length = 3}, + [213] = {.index = 346, .length = 4}, + [214] = {.index = 343, .length = 3}, + [215] = {.index = 346, .length = 4}, + [216] = {.index = 350, .length = 4}, + [217] = {.index = 350, .length = 4}, + [218] = {.index = 354, .length = 3}, + [219] = {.index = 357, .length = 3}, + [220] = {.index = 360, .length = 3}, + [221] = {.index = 363, .length = 2}, + [222] = {.index = 365, .length = 2}, + [223] = {.index = 127, .length = 2}, + [224] = {.index = 367, .length = 2}, + [225] = {.index = 369, .length = 3}, + [226] = {.index = 367, .length = 2}, + [227] = {.index = 369, .length = 3}, + [228] = {.index = 372, .length = 3}, + [229] = {.index = 375, .length = 4}, + [230] = {.index = 372, .length = 3}, + [231] = {.index = 375, .length = 4}, + [232] = {.index = 379, .length = 4}, + [233] = {.index = 383, .length = 4}, + [234] = {.index = 387, .length = 3}, + [235] = {.index = 390, .length = 4}, + [236] = {.index = 394, .length = 3}, + [237] = {.index = 397, .length = 3}, + [238] = {.index = 400, .length = 3}, + [239] = {.index = 403, .length = 4}, + [240] = {.index = 407, .length = 2}, + [241] = {.index = 409, .length = 3}, + [242] = {.index = 412, .length = 4}, + [243] = {.index = 416, .length = 3}, + [244] = {.index = 419, .length = 3}, + [245] = {.index = 422, .length = 2}, + [246] = {.index = 424, .length = 3}, + [247] = {.index = 427, .length = 5}, + [248] = {.index = 432, .length = 4}, + [249] = {.index = 432, .length = 4}, + [250] = {.index = 436, .length = 3}, + [251] = {.index = 439, .length = 3}, + [252] = {.index = 442, .length = 3}, + [253] = {.index = 445, .length = 3}, + [254] = {.index = 448, .length = 2}, + [255] = {.index = 450, .length = 3}, + [256] = {.index = 450, .length = 3}, + [257] = {.index = 453, .length = 3}, + [258] = {.index = 456, .length = 4}, + [259] = {.index = 453, .length = 3}, + [260] = {.index = 456, .length = 4}, + [261] = {.index = 460, .length = 4}, + [262] = {.index = 460, .length = 4}, + [263] = {.index = 464, .length = 4}, + [264] = {.index = 468, .length = 5}, + [265] = {.index = 473, .length = 4}, + [266] = {.index = 477, .length = 2}, + [267] = {.index = 479, .length = 4}, + [268] = {.index = 483, .length = 4}, + [269] = {.index = 487, .length = 3}, + [270] = {.index = 490, .length = 4}, + [271] = {.index = 494, .length = 4}, + [272] = {.index = 498, .length = 3}, + [273] = {.index = 501, .length = 4}, + [274] = {.index = 501, .length = 4}, + [275] = {.index = 505, .length = 5}, + [276] = {.index = 510, .length = 4}, + [277] = {.index = 514, .length = 5}, + [278] = {.index = 519, .length = 4}, + [279] = {.index = 523, .length = 4}, + [280] = {.index = 527, .length = 3}, + [281] = {.index = 530, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2889,50 +2892,50 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_condition, 1}, {field_consequence, 2}, [31] = + {field_name, 0}, + [32] = {field_body, 2}, {field_type, 1}, - [33] = - {field_pattern, 1}, [34] = + {field_pattern, 1}, + [35] = {field_body, 2}, {field_value, 1}, - [36] = + [37] = {field_body, 2}, {field_parameters, 1}, - [38] = - {field_list, 1}, [39] = - {field_argument, 1}, + {field_list, 1}, [40] = + {field_argument, 1}, + [41] = {field_body, 2}, {field_condition, 1}, - [42] = + [43] = {field_function, 0}, {field_type_arguments, 2}, - [44] = + [45] = {field_type, 0}, {field_type_arguments, 2}, - [46] = - {field_body, 2}, [47] = + {field_body, 2}, + [48] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [50] = + [51] = {field_left, 0}, {field_right, 2}, - [52] = + [53] = {field_field, 2}, {field_value, 0}, - [54] = + [55] = {field_type, 2}, {field_value, 0}, - [56] = - {field_value, 3}, [57] = - {field_type, 0}, + {field_value, 3}, [58] = - {field_name, 0}, + {field_type, 0}, [59] = {field_type_arguments, 2}, [60] = @@ -2972,7 +2975,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_consequence, 2}, [83] = {field_bounds, 1}, - {field_left, 0}, + {field_name, 0}, [85] = {field_type, 2}, {field_type_parameters, 1}, @@ -3042,536 +3045,543 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 1}, {field_type, 3}, [129] = + {field_bounds, 1}, + {field_left, 0}, + [131] = {field_body, 4}, {field_name, 1}, {field_type_parameters, 2}, - [132] = + [134] = {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [135] = + [137] = {field_body, 4}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [139] = + [141] = {field_body, 4}, {field_name, 1}, {field_parameters, 2}, - [142] = + [144] = {field_body, 4}, {field_pattern, 1}, {field_value, 3}, - [145] = + [147] = {field_pattern, 1}, {field_value, 3}, - [147] = + [149] = {field_default_type, 2}, {field_name, 0}, - [149] = + [151] = {field_trait, 1}, {field_type, 3}, - [151] = + [153] = {field_body, 4}, {field_trait, 1}, {field_type, 3}, - [154] = + [156] = {field_body, 4}, {field_type, 2}, {field_type_parameters, 1}, - [157] = + [159] = {field_alternative, 3}, {field_pattern, 1}, - [159] = + [161] = {field_body, 4}, {field_parameters, 1}, {field_return_type, 3}, - [162] = + [164] = {field_body, 4}, {field_bounds, 2}, {field_name, 1}, - [165] = + [167] = {field_body, 4}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [169] = + [171] = {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [172] = + [174] = {field_type, 3}, {field_type_parameters, 2}, - [174] = + [176] = {field_body, 4}, {field_type, 3}, {field_type_parameters, 2}, - [177] = + [179] = {field_body, 4}, {field_type, 2}, - [179] = + [181] = {field_body, 4}, {field_name, 2}, - [181] = + [183] = {field_body, 4}, {field_bounds, 3}, {field_name, 2}, - [184] = + [186] = {field_body, 4}, {field_name, 2}, {field_type_parameters, 3}, - [187] = + [189] = {field_field, 0}, {field_value, 2}, - [189] = + [191] = {field_name, 2}, {field_parameters, 3}, - [191] = + [193] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [194] = + [196] = {field_name, 2}, {field_type_parameters, 3}, - [196] = + [198] = {field_body, 4}, {field_name, 3}, - [198] = + [200] = {field_name, 3}, - [199] = + [201] = {field_body, 4}, {field_condition, 3}, - [201] = + [203] = {field_length, 4}, - [202] = + [204] = {field_name, 0}, {field_type, 2}, - [204] = + [206] = {field_name, 0}, {field_pattern, 2}, - [206] = + [208] = {field_element, 1}, {field_length, 3}, - [208] = + [210] = {field_pattern, 0}, - [209] = + [211] = {field_parameters, 2}, {field_return_type, 4}, - [211] = + [213] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [214] = + [216] = {field_name, 0}, {field_value, 2}, - [216] = + [218] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [220] = + [222] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [223] = + [225] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [227] = + [229] = {field_trait, 2}, {field_type, 4}, - [229] = + [231] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [232] = + [234] = + {field_bounds, 1}, + {field_default_type, 3}, + {field_name, 0}, + [237] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [235] = + [240] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [238] = + [243] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [242] = + [247] = {field_pattern, 2}, {field_type, 4}, - [244] = + [249] = {field_pattern, 2}, {field_value, 4}, - [246] = + [251] = {field_alternative, 4}, {field_pattern, 2}, - [248] = + [253] = {field_pattern, 0}, {field_value, 2}, - [250] = + [255] = {field_condition, 2}, - [251] = + [256] = {field_name, 2}, {field_type, 4}, - [253] = + [258] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4}, - [256] = + [261] = {field_type, 1}, {field_type, 2, .inherited = true}, - [258] = + [263] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [260] = + [265] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [264] = + [269] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [267] = + [272] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [270] = + [275] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [273] = + [278] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [276] = + [281] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [280] = + [285] = {field_alias, 4}, {field_name, 2}, - [282] = + [287] = {field_field, 1}, {field_value, 3}, - [284] = + [289] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [287] = + [292] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [291] = + [296] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [294] = + [299] = {field_body, 5}, {field_name, 3}, - [296] = + [301] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [299] = + [304] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [302] = + [307] = {field_name, 3}, {field_parameters, 4}, - [304] = + [309] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [307] = + [312] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [310] = + [315] = {field_name, 1}, {field_pattern, 3}, - [312] = + [317] = {field_parameters, 3}, {field_return_type, 5}, - [314] = + [319] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [317] = + [322] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [320] = + [325] = {field_name, 1}, {field_value, 3}, - [322] = + [327] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [326] = + [331] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [331] = + [336] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [335] = + [340] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [338] = + [343] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [341] = + [346] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [345] = + [350] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [349] = + [354] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [352] = + [357] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [355] = + [360] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [358] = + [363] = {field_name, 3}, {field_type, 5}, - [360] = + [365] = {field_type, 2}, {field_type, 3, .inherited = true}, - [362] = + [367] = {field_trait, 3}, {field_type, 5}, - [364] = + [369] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, - [367] = + [372] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [370] = + [375] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [374] = + [379] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [378] = + [383] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [382] = + [387] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [385] = + [390] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [389] = + [394] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [392] = + [397] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [395] = + [400] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [398] = + [403] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [402] = + [407] = {field_alias, 5}, {field_name, 3}, - [404] = + [409] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [407] = + [412] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [411] = + [416] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [414] = + [419] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [417] = + [422] = {field_name, 2}, {field_pattern, 4}, - [419] = + [424] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [422] = + [427] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [427] = + [432] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [431] = + [436] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [434] = + [439] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [437] = + [442] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [440] = + [445] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [443] = + [448] = {field_type, 3}, {field_type, 4, .inherited = true}, - [445] = + [450] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, - [448] = + [453] = {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [451] = + [456] = {field_body, 7}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [455] = + [460] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [459] = + [464] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [463] = + [468] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [468] = + [473] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [472] = + [477] = {field_name, 4}, {field_type, 6}, - [474] = + [479] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [478] = + [483] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [482] = + [487] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [485] = + [490] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [489] = + [494] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [493] = + [498] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [496] = + [501] = {field_body, 8}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [500] = + [505] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [505] = + [510] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [509] = + [514] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [514] = + [519] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [518] = + [523] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [522] = + [527] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [525] = + [530] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3621,57 +3631,57 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [29] = { [1] = alias_sym_type_identifier, }, - [41] = { - [2] = alias_sym_type_identifier, + [31] = { + [0] = alias_sym_type_identifier, }, [43] = { - [0] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [45] = { + [0] = alias_sym_type_identifier, + }, + [47] = { [0] = sym_generic_type, }, - [46] = { + [48] = { [0] = sym_generic_type, [2] = alias_sym_type_identifier, }, - [50] = { + [52] = { [2] = alias_sym_field_identifier, }, - [53] = { + [55] = { [2] = sym__line_doc_content, }, - [54] = { + [56] = { [1] = sym_identifier, }, - [56] = { + [58] = { [0] = sym_identifier, [2] = sym_identifier, }, - [58] = { + [60] = { [0] = alias_sym_type_identifier, }, - [59] = { + [61] = { [0] = alias_sym_shorthand_field_identifier, }, - [60] = { + [62] = { [2] = sym_identifier, }, - [63] = { + [65] = { [0] = sym_generic_type, }, - [68] = { + [70] = { [1] = alias_sym_type_identifier, }, - [70] = { + [72] = { [0] = sym_identifier, }, - [73] = { - [1] = alias_sym_type_identifier, - }, [74] = { [1] = alias_sym_type_identifier, }, - [78] = { + [75] = { [1] = alias_sym_type_identifier, }, [79] = { @@ -3710,14 +3720,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [111] = { [0] = sym_identifier, }, - [113] = { - [1] = alias_sym_type_identifier, - }, - [119] = { + [114] = { [0] = alias_sym_type_identifier, }, + [115] = { + [1] = alias_sym_type_identifier, + }, [121] = { - [2] = alias_sym_type_identifier, + [0] = alias_sym_type_identifier, }, [122] = { [1] = alias_sym_type_identifier, @@ -3777,25 +3787,25 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = alias_sym_type_identifier, }, [165] = { - [1] = alias_sym_type_identifier, + [0] = alias_sym_type_identifier, }, [166] = { - [2] = alias_sym_type_identifier, + [1] = alias_sym_type_identifier, }, [167] = { [2] = alias_sym_type_identifier, }, - [180] = { - [0] = alias_sym_field_identifier, + [168] = { + [2] = alias_sym_type_identifier, }, [181] = { - [1] = alias_sym_type_identifier, + [0] = alias_sym_field_identifier, }, [182] = { [1] = alias_sym_type_identifier, }, - [184] = { - [2] = alias_sym_type_identifier, + [183] = { + [1] = alias_sym_type_identifier, }, [185] = { [2] = alias_sym_type_identifier, @@ -3803,14 +3813,14 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [186] = { [2] = alias_sym_type_identifier, }, - [189] = { - [1] = alias_sym_field_identifier, - }, - [193] = { + [187] = { [2] = alias_sym_type_identifier, }, + [190] = { + [1] = alias_sym_field_identifier, + }, [194] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [195] = { [3] = alias_sym_type_identifier, @@ -3818,47 +3828,47 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [196] = { [3] = alias_sym_type_identifier, }, - [200] = { - [0] = alias_sym_type_identifier, + [197] = { + [3] = alias_sym_type_identifier, }, [201] = { + [0] = alias_sym_type_identifier, + }, + [202] = { [1] = alias_sym_field_identifier, }, - [209] = { + [210] = { [2] = alias_sym_type_identifier, }, - [211] = { + [212] = { [3] = alias_sym_type_identifier, }, - [212] = { + [213] = { [3] = alias_sym_type_identifier, }, - [215] = { + [216] = { [2] = alias_sym_type_identifier, }, - [222] = { - [1] = alias_sym_field_identifier, - }, [223] = { - [3] = alias_sym_type_identifier, + [1] = alias_sym_field_identifier, }, [224] = { [3] = alias_sym_type_identifier, }, - [227] = { + [225] = { [3] = alias_sym_type_identifier, }, [228] = { [3] = alias_sym_type_identifier, }, - [231] = { - [2] = alias_sym_type_identifier, + [229] = { + [3] = alias_sym_type_identifier, }, - [235] = { + [232] = { [2] = alias_sym_type_identifier, }, [236] = { - [3] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [237] = { [3] = alias_sym_type_identifier, @@ -3866,28 +3876,31 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [238] = { [3] = alias_sym_type_identifier, }, - [244] = { + [239] = { + [3] = alias_sym_type_identifier, + }, + [245] = { [2] = alias_sym_field_identifier, }, - [247] = { + [248] = { [3] = alias_sym_type_identifier, }, - [254] = { + [255] = { [3] = alias_sym_type_identifier, }, - [256] = { + [257] = { [4] = alias_sym_type_identifier, }, - [257] = { + [258] = { [4] = alias_sym_type_identifier, }, - [260] = { + [261] = { [3] = alias_sym_type_identifier, }, - [266] = { + [267] = { [3] = alias_sym_type_identifier, }, - [272] = { + [273] = { [4] = alias_sym_type_identifier, }, }; @@ -3941,34 +3954,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [35] = 35, [36] = 36, [37] = 37, - [38] = 38, + [38] = 36, [39] = 37, - [40] = 38, + [40] = 40, [41] = 41, [42] = 42, [43] = 35, - [44] = 41, + [44] = 40, [45] = 35, - [46] = 36, + [46] = 41, [47] = 42, - [48] = 38, + [48] = 36, [49] = 37, - [50] = 38, + [50] = 36, [51] = 37, [52] = 35, - [53] = 38, - [54] = 41, + [53] = 36, + [54] = 40, [55] = 42, - [56] = 36, - [57] = 41, - [58] = 38, - [59] = 36, + [56] = 41, + [57] = 40, + [58] = 36, + [59] = 41, [60] = 42, [61] = 37, - [62] = 38, + [62] = 36, [63] = 37, [64] = 37, - [65] = 38, + [65] = 36, [66] = 37, [67] = 67, [68] = 68, @@ -3991,165 +4004,165 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [85] = 85, [86] = 86, [87] = 87, - [88] = 88, + [88] = 85, [89] = 89, [90] = 90, - [91] = 88, - [92] = 89, - [93] = 90, + [91] = 91, + [92] = 92, + [93] = 93, [94] = 94, - [95] = 95, + [95] = 84, [96] = 96, - [97] = 84, - [98] = 98, - [99] = 99, - [100] = 100, - [101] = 86, - [102] = 87, - [103] = 94, - [104] = 99, - [105] = 88, - [106] = 89, - [107] = 90, - [108] = 108, - [109] = 95, - [110] = 96, - [111] = 84, - [112] = 100, - [113] = 88, - [114] = 89, - [115] = 90, - [116] = 95, - [117] = 96, - [118] = 84, - [119] = 88, - [120] = 89, - [121] = 90, - [122] = 95, - [123] = 96, - [124] = 88, - [125] = 89, - [126] = 90, - [127] = 95, - [128] = 95, - [129] = 96, - [130] = 84, - [131] = 96, - [132] = 84, - [133] = 98, + [97] = 97, + [98] = 96, + [99] = 90, + [100] = 94, + [101] = 97, + [102] = 102, + [103] = 103, + [104] = 102, + [105] = 86, + [106] = 87, + [107] = 85, + [108] = 87, + [109] = 92, + [110] = 93, + [111] = 94, + [112] = 86, + [113] = 86, + [114] = 87, + [115] = 85, + [116] = 92, + [117] = 93, + [118] = 94, + [119] = 86, + [120] = 87, + [121] = 85, + [122] = 92, + [123] = 93, + [124] = 94, + [125] = 92, + [126] = 86, + [127] = 87, + [128] = 85, + [129] = 93, + [130] = 92, + [131] = 93, + [132] = 94, + [133] = 103, [134] = 134, [135] = 135, - [136] = 136, - [137] = 137, + [136] = 135, + [137] = 134, [138] = 138, [139] = 139, [140] = 140, - [141] = 138, - [142] = 135, - [143] = 139, - [144] = 134, + [141] = 141, + [142] = 139, + [143] = 143, + [144] = 138, [145] = 145, [146] = 146, [147] = 147, [148] = 148, [149] = 149, [150] = 150, - [151] = 149, + [151] = 151, [152] = 152, - [153] = 146, + [153] = 153, [154] = 154, [155] = 155, [156] = 156, - [157] = 157, + [157] = 140, [158] = 158, [159] = 159, [160] = 160, [161] = 161, - [162] = 162, + [162] = 148, [163] = 163, [164] = 164, - [165] = 165, - [166] = 150, - [167] = 145, + [165] = 158, + [166] = 159, + [167] = 167, [168] = 168, - [169] = 169, - [170] = 163, + [169] = 146, + [170] = 149, [171] = 171, [172] = 172, [173] = 173, [174] = 174, [175] = 175, - [176] = 162, + [176] = 176, [177] = 177, - [178] = 155, + [178] = 156, [179] = 179, [180] = 180, [181] = 181, - [182] = 182, + [182] = 151, [183] = 183, - [184] = 137, - [185] = 158, + [184] = 163, + [185] = 160, [186] = 186, - [187] = 154, - [188] = 171, - [189] = 189, - [190] = 172, - [191] = 154, - [192] = 171, - [193] = 172, - [194] = 154, - [195] = 171, - [196] = 172, + [187] = 187, + [188] = 161, + [189] = 164, + [190] = 190, + [191] = 146, + [192] = 161, + [193] = 164, + [194] = 146, + [195] = 161, + [196] = 164, [197] = 197, - [198] = 177, - [199] = 181, - [200] = 183, + [198] = 179, + [199] = 199, + [200] = 181, [201] = 201, - [202] = 202, - [203] = 203, + [202] = 183, + [203] = 167, [204] = 204, - [205] = 156, - [206] = 206, + [205] = 171, + [206] = 150, [207] = 207, [208] = 208, - [209] = 174, - [210] = 210, + [209] = 209, + [210] = 208, [211] = 211, - [212] = 203, - [213] = 201, - [214] = 179, + [212] = 212, + [213] = 211, + [214] = 214, [215] = 215, [216] = 216, [217] = 217, - [218] = 216, + [218] = 218, [219] = 219, [220] = 220, - [221] = 219, - [222] = 220, + [221] = 221, + [222] = 218, [223] = 216, - [224] = 219, + [224] = 224, [225] = 225, - [226] = 226, - [227] = 227, - [228] = 228, - [229] = 220, - [230] = 216, - [231] = 215, - [232] = 219, - [233] = 228, - [234] = 226, - [235] = 217, - [236] = 225, - [237] = 219, - [238] = 226, - [239] = 220, - [240] = 226, - [241] = 227, - [242] = 242, - [243] = 220, - [244] = 244, - [245] = 216, - [246] = 242, + [226] = 221, + [227] = 217, + [228] = 221, + [229] = 217, + [230] = 215, + [231] = 231, + [232] = 221, + [233] = 225, + [234] = 225, + [235] = 216, + [236] = 217, + [237] = 237, + [238] = 220, + [239] = 217, + [240] = 225, + [241] = 231, + [242] = 216, + [243] = 216, + [244] = 224, + [245] = 237, + [246] = 221, [247] = 247, [248] = 248, [249] = 249, @@ -4167,131 +4180,131 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [261] = 261, [262] = 262, [263] = 263, - [264] = 264, - [265] = 265, - [266] = 266, - [267] = 267, - [268] = 268, + [264] = 249, + [265] = 250, + [266] = 251, + [267] = 252, + [268] = 253, [269] = 269, - [270] = 270, - [271] = 271, - [272] = 272, - [273] = 273, - [274] = 274, - [275] = 275, - [276] = 276, + [270] = 254, + [271] = 255, + [272] = 256, + [273] = 257, + [274] = 258, + [275] = 259, + [276] = 260, [277] = 277, - [278] = 256, + [278] = 278, [279] = 279, [280] = 280, [281] = 281, - [282] = 282, - [283] = 283, - [284] = 284, + [282] = 259, + [283] = 248, + [284] = 259, [285] = 285, - [286] = 286, + [286] = 259, [287] = 287, - [288] = 247, + [288] = 259, [289] = 289, [290] = 290, [291] = 291, [292] = 292, - [293] = 279, - [294] = 251, - [295] = 280, - [296] = 281, - [297] = 282, - [298] = 283, - [299] = 284, - [300] = 285, - [301] = 286, - [302] = 287, - [303] = 289, - [304] = 276, - [305] = 256, - [306] = 290, - [307] = 279, - [308] = 280, - [309] = 281, - [310] = 282, - [311] = 283, - [312] = 284, - [313] = 285, - [314] = 286, - [315] = 247, - [316] = 289, - [317] = 290, - [318] = 291, - [319] = 319, - [320] = 256, - [321] = 279, - [322] = 280, - [323] = 281, - [324] = 282, - [325] = 283, - [326] = 284, - [327] = 285, - [328] = 286, - [329] = 287, - [330] = 247, - [331] = 289, - [332] = 290, - [333] = 291, - [334] = 291, - [335] = 290, - [336] = 290, - [337] = 290, - [338] = 290, - [339] = 276, + [293] = 293, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 289, + [298] = 298, + [299] = 249, + [300] = 250, + [301] = 251, + [302] = 252, + [303] = 303, + [304] = 304, + [305] = 305, + [306] = 253, + [307] = 269, + [308] = 254, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 289, + [313] = 313, + [314] = 289, + [315] = 315, + [316] = 316, + [317] = 255, + [318] = 256, + [319] = 247, + [320] = 257, + [321] = 258, + [322] = 249, + [323] = 250, + [324] = 251, + [325] = 252, + [326] = 253, + [327] = 269, + [328] = 254, + [329] = 255, + [330] = 256, + [331] = 257, + [332] = 258, + [333] = 247, + [334] = 259, + [335] = 260, + [336] = 259, + [337] = 337, + [338] = 337, + [339] = 339, [340] = 340, [341] = 341, [342] = 342, - [343] = 276, + [343] = 298, [344] = 344, - [345] = 277, - [346] = 292, - [347] = 319, - [348] = 340, - [349] = 342, - [350] = 252, - [351] = 248, - [352] = 253, - [353] = 257, - [354] = 259, - [355] = 261, - [356] = 264, - [357] = 267, - [358] = 269, - [359] = 270, - [360] = 273, - [361] = 275, - [362] = 277, - [363] = 340, - [364] = 248, - [365] = 264, - [366] = 277, - [367] = 340, - [368] = 264, - [369] = 287, + [345] = 344, + [346] = 262, + [347] = 287, + [348] = 341, + [349] = 311, + [350] = 313, + [351] = 339, + [352] = 261, + [353] = 277, + [354] = 279, + [355] = 248, + [356] = 292, + [357] = 294, + [358] = 295, + [359] = 305, + [360] = 310, + [361] = 341, + [362] = 262, + [363] = 260, + [364] = 313, + [365] = 248, + [366] = 247, + [367] = 341, + [368] = 262, + [369] = 269, [370] = 370, [371] = 371, [372] = 372, - [373] = 371, - [374] = 374, + [373] = 373, + [374] = 371, [375] = 375, - [376] = 370, - [377] = 371, + [376] = 371, + [377] = 373, [378] = 378, [379] = 379, - [380] = 370, + [380] = 373, [381] = 381, [382] = 382, [383] = 383, [384] = 384, [385] = 385, - [386] = 386, - [387] = 387, - [388] = 211, + [386] = 385, + [387] = 381, + [388] = 212, [389] = 389, [390] = 390, [391] = 391, @@ -4299,30 +4312,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [393] = 393, [394] = 394, [395] = 395, - [396] = 386, - [397] = 397, - [398] = 398, + [396] = 396, + [397] = 384, + [398] = 384, [399] = 399, [400] = 385, - [401] = 395, - [402] = 386, - [403] = 385, - [404] = 395, - [405] = 405, + [401] = 401, + [402] = 402, + [403] = 403, + [404] = 404, + [405] = 214, [406] = 406, - [407] = 407, + [407] = 381, [408] = 408, [409] = 409, [410] = 410, - [411] = 210, + [411] = 411, [412] = 412, [413] = 413, [414] = 414, [415] = 415, [416] = 415, - [417] = 417, + [417] = 401, [418] = 415, - [419] = 414, + [419] = 419, [420] = 420, [421] = 421, [422] = 421, @@ -4331,69 +4344,69 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [425] = 425, [426] = 426, [427] = 427, - [428] = 425, + [428] = 428, [429] = 427, - [430] = 427, - [431] = 426, - [432] = 432, - [433] = 425, - [434] = 432, + [430] = 428, + [431] = 427, + [432] = 425, + [433] = 426, + [434] = 428, [435] = 435, [436] = 435, [437] = 437, [438] = 438, [439] = 439, [440] = 440, - [441] = 441, - [442] = 440, - [443] = 440, + [441] = 440, + [442] = 442, + [443] = 442, [444] = 440, - [445] = 439, - [446] = 441, + [445] = 442, + [446] = 440, [447] = 439, - [448] = 441, - [449] = 441, + [448] = 439, + [449] = 442, [450] = 439, [451] = 451, [452] = 452, - [453] = 451, - [454] = 451, - [455] = 451, - [456] = 341, - [457] = 457, - [458] = 372, - [459] = 457, - [460] = 374, - [461] = 375, - [462] = 457, - [463] = 457, + [453] = 452, + [454] = 452, + [455] = 452, + [456] = 285, + [457] = 375, + [458] = 458, + [459] = 458, + [460] = 378, + [461] = 458, + [462] = 372, + [463] = 370, [464] = 379, - [465] = 378, - [466] = 391, - [467] = 397, - [468] = 468, - [469] = 398, - [470] = 468, - [471] = 410, - [472] = 383, - [473] = 390, - [474] = 384, - [475] = 409, - [476] = 412, - [477] = 382, - [478] = 413, - [479] = 394, - [480] = 480, - [481] = 393, - [482] = 387, - [483] = 407, - [484] = 468, - [485] = 399, - [486] = 405, - [487] = 487, - [488] = 381, - [489] = 468, - [490] = 389, + [465] = 458, + [466] = 466, + [467] = 395, + [468] = 390, + [469] = 396, + [470] = 393, + [471] = 402, + [472] = 403, + [473] = 473, + [474] = 404, + [475] = 383, + [476] = 409, + [477] = 477, + [478] = 410, + [479] = 413, + [480] = 411, + [481] = 391, + [482] = 382, + [483] = 414, + [484] = 399, + [485] = 412, + [486] = 466, + [487] = 394, + [488] = 466, + [489] = 406, + [490] = 466, [491] = 491, [492] = 492, [493] = 493, @@ -4544,7 +4557,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [638] = 638, [639] = 639, [640] = 640, - [641] = 641, + [641] = 379, [642] = 642, [643] = 643, [644] = 644, @@ -4555,12 +4568,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [649] = 649, [650] = 650, [651] = 651, - [652] = 652, + [652] = 370, [653] = 653, - [654] = 654, + [654] = 372, [655] = 655, [656] = 375, - [657] = 657, + [657] = 378, [658] = 658, [659] = 659, [660] = 660, @@ -4575,19 +4588,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [669] = 669, [670] = 670, [671] = 671, - [672] = 378, - [673] = 673, - [674] = 374, - [675] = 379, - [676] = 372, + [672] = 630, + [673] = 632, + [674] = 674, + [675] = 675, + [676] = 676, [677] = 677, [678] = 678, [679] = 679, [680] = 680, [681] = 681, [682] = 682, - [683] = 547, - [684] = 603, + [683] = 683, + [684] = 684, [685] = 685, [686] = 686, [687] = 687, @@ -4612,7 +4625,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [706] = 706, [707] = 707, [708] = 708, - [709] = 709, + [709] = 682, [710] = 710, [711] = 711, [712] = 712, @@ -4639,7 +4652,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [733] = 733, [734] = 734, [735] = 735, - [736] = 689, + [736] = 736, [737] = 737, [738] = 738, [739] = 739, @@ -4674,9 +4687,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [768] = 768, [769] = 769, [770] = 770, - [771] = 771, + [771] = 769, [772] = 770, - [773] = 768, + [773] = 773, [774] = 774, [775] = 775, [776] = 776, @@ -4684,11 +4697,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [778] = 778, [779] = 779, [780] = 780, - [781] = 781, + [781] = 778, [782] = 782, - [783] = 779, - [784] = 784, - [785] = 784, + [783] = 783, + [784] = 783, + [785] = 785, [786] = 786, [787] = 787, [788] = 782, @@ -4696,59 +4709,59 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [790] = 790, [791] = 791, [792] = 792, - [793] = 789, + [793] = 793, [794] = 794, [795] = 795, [796] = 796, [797] = 797, [798] = 798, - [799] = 799, - [800] = 796, + [799] = 796, + [800] = 800, [801] = 801, - [802] = 797, - [803] = 798, - [804] = 804, - [805] = 791, - [806] = 806, - [807] = 794, + [802] = 792, + [803] = 793, + [804] = 794, + [805] = 805, + [806] = 797, + [807] = 789, [808] = 808, [809] = 809, [810] = 810, [811] = 811, - [812] = 812, + [812] = 808, [813] = 813, - [814] = 812, + [814] = 814, [815] = 815, [816] = 816, [817] = 817, [818] = 818, - [819] = 819, - [820] = 813, - [821] = 821, - [822] = 819, + [819] = 809, + [820] = 816, + [821] = 814, + [822] = 810, [823] = 823, - [824] = 815, + [824] = 824, [825] = 825, - [826] = 821, - [827] = 827, - [828] = 828, - [829] = 808, - [830] = 816, - [831] = 817, - [832] = 827, + [826] = 826, + [827] = 815, + [828] = 818, + [829] = 829, + [830] = 823, + [831] = 825, + [832] = 826, [833] = 833, - [834] = 828, - [835] = 810, - [836] = 825, - [837] = 810, - [838] = 825, - [839] = 810, - [840] = 825, + [834] = 834, + [835] = 833, + [836] = 814, + [837] = 815, + [838] = 814, + [839] = 815, + [840] = 817, [841] = 841, [842] = 842, - [843] = 841, - [844] = 841, - [845] = 841, + [843] = 842, + [844] = 842, + [845] = 842, [846] = 846, [847] = 847, [848] = 848, @@ -4756,583 +4769,583 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [850] = 850, [851] = 851, [852] = 852, - [853] = 853, + [853] = 848, [854] = 854, - [855] = 851, + [855] = 855, [856] = 849, - [857] = 846, - [858] = 852, - [859] = 859, - [860] = 852, - [861] = 848, - [862] = 851, - [863] = 863, + [857] = 851, + [858] = 850, + [859] = 850, + [860] = 860, + [861] = 861, + [862] = 849, + [863] = 860, [864] = 864, - [865] = 865, - [866] = 849, - [867] = 852, - [868] = 846, - [869] = 853, + [865] = 851, + [866] = 848, + [867] = 850, + [868] = 852, + [869] = 869, [870] = 870, [871] = 871, [872] = 872, - [873] = 873, - [874] = 873, + [873] = 870, + [874] = 874, [875] = 875, [876] = 876, [877] = 877, [878] = 878, - [879] = 622, + [879] = 879, [880] = 880, - [881] = 880, - [882] = 882, + [881] = 881, + [882] = 878, [883] = 883, - [884] = 882, + [884] = 884, [885] = 885, - [886] = 883, + [886] = 886, [887] = 887, [888] = 888, [889] = 889, [890] = 890, [891] = 891, [892] = 892, - [893] = 893, + [893] = 884, [894] = 894, - [895] = 875, - [896] = 885, + [895] = 894, + [896] = 896, [897] = 897, [898] = 898, [899] = 899, - [900] = 871, - [901] = 872, + [900] = 900, + [901] = 901, [902] = 902, - [903] = 873, - [904] = 875, - [905] = 876, - [906] = 877, - [907] = 878, - [908] = 908, - [909] = 880, - [910] = 882, - [911] = 883, + [903] = 576, + [904] = 904, + [905] = 905, + [906] = 906, + [907] = 907, + [908] = 879, + [909] = 881, + [910] = 910, + [911] = 911, [912] = 912, - [913] = 913, - [914] = 885, + [913] = 912, + [914] = 914, [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, + [916] = 879, + [917] = 912, + [918] = 910, [919] = 919, - [920] = 876, + [920] = 920, [921] = 921, - [922] = 922, - [923] = 877, - [924] = 878, + [922] = 894, + [923] = 923, + [924] = 924, [925] = 925, [926] = 926, - [927] = 927, + [927] = 923, [928] = 928, - [929] = 929, - [930] = 930, + [929] = 875, + [930] = 878, [931] = 931, [932] = 932, - [933] = 933, - [934] = 899, - [935] = 871, - [936] = 870, + [933] = 881, + [934] = 889, + [935] = 935, + [936] = 884, [937] = 937, - [938] = 890, + [938] = 938, [939] = 939, - [940] = 940, - [941] = 941, - [942] = 899, - [943] = 871, - [944] = 944, - [945] = 939, - [946] = 940, - [947] = 872, + [940] = 879, + [941] = 912, + [942] = 924, + [943] = 943, + [944] = 935, + [945] = 945, + [946] = 911, + [947] = 943, [948] = 948, [949] = 949, - [950] = 950, + [950] = 938, [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, - [955] = 873, - [956] = 870, - [957] = 876, - [958] = 958, - [959] = 959, + [952] = 876, + [953] = 880, + [954] = 887, + [955] = 890, + [956] = 956, + [957] = 948, + [958] = 897, + [959] = 885, [960] = 960, - [961] = 961, - [962] = 962, - [963] = 963, - [964] = 939, + [961] = 907, + [962] = 914, + [963] = 915, + [964] = 925, [965] = 965, - [966] = 966, - [967] = 967, - [968] = 968, - [969] = 969, - [970] = 970, - [971] = 954, - [972] = 967, - [973] = 897, - [974] = 949, - [975] = 958, - [976] = 960, - [977] = 961, - [978] = 962, - [979] = 963, - [980] = 966, - [981] = 968, + [966] = 898, + [967] = 905, + [968] = 951, + [969] = 871, + [970] = 877, + [971] = 874, + [972] = 891, + [973] = 901, + [974] = 910, + [975] = 888, + [976] = 976, + [977] = 977, + [978] = 889, + [979] = 892, + [980] = 980, + [981] = 981, [982] = 982, - [983] = 887, - [984] = 898, - [985] = 908, - [986] = 919, - [987] = 921, - [988] = 933, - [989] = 989, - [990] = 944, - [991] = 965, - [992] = 888, - [993] = 917, - [994] = 922, - [995] = 894, - [996] = 915, - [997] = 916, - [998] = 925, - [999] = 948, - [1000] = 950, - [1001] = 952, - [1002] = 953, - [1003] = 969, - [1004] = 989, - [1005] = 931, - [1006] = 932, - [1007] = 941, - [1008] = 951, - [1009] = 959, - [1010] = 913, - [1011] = 954, - [1012] = 899, - [1013] = 1013, + [983] = 983, + [984] = 984, + [985] = 883, + [986] = 980, + [987] = 949, + [988] = 965, + [989] = 931, + [990] = 932, + [991] = 945, + [992] = 992, + [993] = 960, + [994] = 994, + [995] = 994, + [996] = 992, + [997] = 935, + [998] = 981, + [999] = 982, + [1000] = 937, + [1001] = 977, + [1002] = 939, + [1003] = 905, + [1004] = 983, + [1005] = 1005, + [1006] = 943, + [1007] = 897, + [1008] = 937, + [1009] = 875, + [1010] = 951, + [1011] = 875, + [1012] = 881, + [1013] = 976, [1014] = 1014, [1015] = 1015, [1016] = 1016, [1017] = 1017, [1018] = 1018, - [1019] = 622, + [1019] = 576, [1020] = 1020, [1021] = 1021, [1022] = 1022, [1023] = 1023, [1024] = 1024, [1025] = 1025, - [1026] = 1026, - [1027] = 392, - [1028] = 406, - [1029] = 1029, - [1030] = 211, - [1031] = 210, - [1032] = 375, - [1033] = 378, - [1034] = 374, - [1035] = 379, - [1036] = 372, + [1026] = 392, + [1027] = 1027, + [1028] = 214, + [1029] = 379, + [1030] = 408, + [1031] = 375, + [1032] = 1032, + [1033] = 370, + [1034] = 378, + [1035] = 372, + [1036] = 212, [1037] = 1037, [1038] = 1038, - [1039] = 633, - [1040] = 634, + [1039] = 1039, + [1040] = 1040, [1041] = 1041, - [1042] = 521, - [1043] = 559, - [1044] = 1044, + [1042] = 734, + [1043] = 1043, + [1044] = 668, [1045] = 1045, - [1046] = 725, - [1047] = 1047, - [1048] = 1048, + [1046] = 1046, + [1047] = 515, + [1048] = 604, [1049] = 1049, - [1050] = 1050, + [1050] = 551, [1051] = 1051, [1052] = 1052, [1053] = 1053, - [1054] = 1054, + [1054] = 1052, [1055] = 1055, - [1056] = 1056, + [1056] = 1053, [1057] = 1057, [1058] = 1058, - [1059] = 1058, - [1060] = 1054, + [1059] = 1059, + [1060] = 1052, [1061] = 1061, [1062] = 1014, - [1063] = 1058, - [1064] = 1054, + [1063] = 1053, + [1064] = 1064, [1065] = 1065, - [1066] = 576, - [1067] = 762, - [1068] = 763, + [1066] = 1066, + [1067] = 517, + [1068] = 1068, [1069] = 1069, [1070] = 1070, - [1071] = 494, - [1072] = 495, - [1073] = 497, - [1074] = 498, - [1075] = 499, - [1076] = 500, - [1077] = 501, - [1078] = 502, - [1079] = 503, - [1080] = 504, - [1081] = 505, - [1082] = 506, - [1083] = 507, - [1084] = 508, - [1085] = 509, - [1086] = 510, - [1087] = 511, - [1088] = 512, - [1089] = 513, - [1090] = 514, - [1091] = 515, - [1092] = 518, - [1093] = 520, - [1094] = 737, - [1095] = 522, - [1096] = 523, - [1097] = 524, - [1098] = 525, - [1099] = 526, - [1100] = 527, - [1101] = 528, - [1102] = 529, - [1103] = 530, - [1104] = 531, - [1105] = 532, - [1106] = 533, - [1107] = 534, - [1108] = 535, - [1109] = 536, - [1110] = 537, - [1111] = 538, - [1112] = 539, - [1113] = 540, - [1114] = 541, - [1115] = 542, - [1116] = 543, - [1117] = 544, - [1118] = 545, - [1119] = 546, - [1120] = 1120, - [1121] = 1121, - [1122] = 548, - [1123] = 549, - [1124] = 550, - [1125] = 551, - [1126] = 552, - [1127] = 553, - [1128] = 554, - [1129] = 492, - [1130] = 556, - [1131] = 557, - [1132] = 558, - [1133] = 738, - [1134] = 560, - [1135] = 561, - [1136] = 562, - [1137] = 563, - [1138] = 564, - [1139] = 565, - [1140] = 566, - [1141] = 567, - [1142] = 568, - [1143] = 569, - [1144] = 570, - [1145] = 571, - [1146] = 572, - [1147] = 573, - [1148] = 574, - [1149] = 575, - [1150] = 1150, - [1151] = 577, - [1152] = 579, - [1153] = 580, - [1154] = 581, - [1155] = 582, - [1156] = 583, - [1157] = 584, - [1158] = 585, - [1159] = 586, - [1160] = 587, - [1161] = 588, - [1162] = 589, - [1163] = 590, - [1164] = 591, - [1165] = 592, - [1166] = 593, - [1167] = 594, - [1168] = 595, - [1169] = 596, - [1170] = 597, - [1171] = 598, - [1172] = 599, - [1173] = 600, - [1174] = 1174, - [1175] = 766, - [1176] = 555, - [1177] = 1177, - [1178] = 1178, - [1179] = 1179, - [1180] = 1180, - [1181] = 1181, - [1182] = 693, - [1183] = 1183, - [1184] = 1184, - [1185] = 1185, - [1186] = 1186, - [1187] = 341, - [1188] = 517, - [1189] = 519, - [1190] = 578, - [1191] = 606, - [1192] = 607, - [1193] = 699, - [1194] = 1194, - [1195] = 608, - [1196] = 612, - [1197] = 613, - [1198] = 615, - [1199] = 621, - [1200] = 700, - [1201] = 653, - [1202] = 654, - [1203] = 1203, - [1204] = 1204, - [1205] = 668, - [1206] = 669, - [1207] = 670, - [1208] = 673, - [1209] = 678, - [1210] = 1210, - [1211] = 1211, - [1212] = 679, - [1213] = 680, - [1214] = 1214, - [1215] = 681, - [1216] = 682, - [1217] = 685, - [1218] = 1218, - [1219] = 1219, - [1220] = 687, - [1221] = 714, - [1222] = 717, - [1223] = 719, - [1224] = 748, - [1225] = 761, - [1226] = 764, - [1227] = 1227, - [1228] = 765, - [1229] = 1229, - [1230] = 657, - [1231] = 493, - [1232] = 496, - [1233] = 622, - [1234] = 735, - [1235] = 1235, - [1236] = 601, - [1237] = 604, - [1238] = 1238, - [1239] = 1239, - [1240] = 705, - [1241] = 1241, - [1242] = 712, - [1243] = 1243, - [1244] = 713, - [1245] = 1245, - [1246] = 718, - [1247] = 1247, - [1248] = 720, - [1249] = 609, - [1250] = 611, - [1251] = 614, - [1252] = 616, - [1253] = 617, - [1254] = 618, - [1255] = 619, - [1256] = 620, - [1257] = 623, - [1258] = 624, - [1259] = 625, - [1260] = 626, - [1261] = 627, - [1262] = 628, - [1263] = 629, - [1264] = 630, - [1265] = 631, - [1266] = 632, - [1267] = 721, - [1268] = 635, - [1269] = 636, - [1270] = 637, - [1271] = 638, - [1272] = 639, - [1273] = 640, - [1274] = 641, - [1275] = 642, - [1276] = 643, - [1277] = 644, - [1278] = 645, - [1279] = 646, - [1280] = 647, - [1281] = 648, - [1282] = 649, - [1283] = 650, - [1284] = 651, - [1285] = 652, - [1286] = 655, - [1287] = 767, - [1288] = 1288, - [1289] = 658, - [1290] = 659, - [1291] = 660, - [1292] = 724, - [1293] = 661, - [1294] = 662, - [1295] = 663, - [1296] = 1024, - [1297] = 664, - [1298] = 665, - [1299] = 666, - [1300] = 667, - [1301] = 435, + [1071] = 631, + [1072] = 633, + [1073] = 1022, + [1074] = 1074, + [1075] = 1021, + [1076] = 1076, + [1077] = 1077, + [1078] = 1020, + [1079] = 1079, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 1083, + [1084] = 634, + [1085] = 1085, + [1086] = 285, + [1087] = 638, + [1088] = 639, + [1089] = 640, + [1090] = 645, + [1091] = 651, + [1092] = 665, + [1093] = 666, + [1094] = 690, + [1095] = 691, + [1096] = 704, + [1097] = 705, + [1098] = 707, + [1099] = 710, + [1100] = 711, + [1101] = 733, + [1102] = 751, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, + [1108] = 594, + [1109] = 595, + [1110] = 596, + [1111] = 597, + [1112] = 598, + [1113] = 599, + [1114] = 600, + [1115] = 601, + [1116] = 602, + [1117] = 603, + [1118] = 605, + [1119] = 606, + [1120] = 607, + [1121] = 608, + [1122] = 609, + [1123] = 610, + [1124] = 611, + [1125] = 612, + [1126] = 613, + [1127] = 614, + [1128] = 615, + [1129] = 616, + [1130] = 617, + [1131] = 618, + [1132] = 619, + [1133] = 620, + [1134] = 621, + [1135] = 623, + [1136] = 624, + [1137] = 625, + [1138] = 626, + [1139] = 627, + [1140] = 628, + [1141] = 629, + [1142] = 635, + [1143] = 636, + [1144] = 1144, + [1145] = 1145, + [1146] = 1146, + [1147] = 1147, + [1148] = 1148, + [1149] = 642, + [1150] = 643, + [1151] = 644, + [1152] = 646, + [1153] = 647, + [1154] = 648, + [1155] = 649, + [1156] = 650, + [1157] = 653, + [1158] = 655, + [1159] = 658, + [1160] = 659, + [1161] = 660, + [1162] = 661, + [1163] = 662, + [1164] = 663, + [1165] = 664, + [1166] = 667, + [1167] = 669, + [1168] = 670, + [1169] = 671, + [1170] = 674, + [1171] = 675, + [1172] = 676, + [1173] = 677, + [1174] = 678, + [1175] = 679, + [1176] = 680, + [1177] = 681, + [1178] = 683, + [1179] = 684, + [1180] = 685, + [1181] = 686, + [1182] = 687, + [1183] = 688, + [1184] = 689, + [1185] = 692, + [1186] = 693, + [1187] = 694, + [1188] = 695, + [1189] = 696, + [1190] = 697, + [1191] = 698, + [1192] = 699, + [1193] = 700, + [1194] = 701, + [1195] = 702, + [1196] = 703, + [1197] = 706, + [1198] = 708, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 712, + [1203] = 713, + [1204] = 714, + [1205] = 715, + [1206] = 716, + [1207] = 717, + [1208] = 718, + [1209] = 719, + [1210] = 720, + [1211] = 721, + [1212] = 722, + [1213] = 723, + [1214] = 724, + [1215] = 725, + [1216] = 726, + [1217] = 727, + [1218] = 728, + [1219] = 729, + [1220] = 730, + [1221] = 731, + [1222] = 732, + [1223] = 735, + [1224] = 736, + [1225] = 737, + [1226] = 738, + [1227] = 739, + [1228] = 740, + [1229] = 741, + [1230] = 742, + [1231] = 743, + [1232] = 744, + [1233] = 745, + [1234] = 1234, + [1235] = 747, + [1236] = 748, + [1237] = 749, + [1238] = 750, + [1239] = 752, + [1240] = 753, + [1241] = 754, + [1242] = 755, + [1243] = 756, + [1244] = 757, + [1245] = 758, + [1246] = 759, + [1247] = 760, + [1248] = 761, + [1249] = 762, + [1250] = 763, + [1251] = 764, + [1252] = 1252, + [1253] = 1253, + [1254] = 765, + [1255] = 766, + [1256] = 494, + [1257] = 495, + [1258] = 496, + [1259] = 497, + [1260] = 498, + [1261] = 499, + [1262] = 500, + [1263] = 501, + [1264] = 502, + [1265] = 503, + [1266] = 504, + [1267] = 505, + [1268] = 506, + [1269] = 507, + [1270] = 508, + [1271] = 509, + [1272] = 510, + [1273] = 511, + [1274] = 512, + [1275] = 513, + [1276] = 514, + [1277] = 516, + [1278] = 767, + [1279] = 518, + [1280] = 519, + [1281] = 520, + [1282] = 521, + [1283] = 522, + [1284] = 523, + [1285] = 492, + [1286] = 524, + [1287] = 525, + [1288] = 526, + [1289] = 527, + [1290] = 528, + [1291] = 529, + [1292] = 530, + [1293] = 531, + [1294] = 532, + [1295] = 533, + [1296] = 534, + [1297] = 535, + [1298] = 536, + [1299] = 537, + [1300] = 538, + [1301] = 539, [1302] = 1302, - [1303] = 671, - [1304] = 677, - [1305] = 1305, - [1306] = 1306, - [1307] = 1307, - [1308] = 722, - [1309] = 1309, - [1310] = 726, - [1311] = 1311, - [1312] = 686, - [1313] = 688, - [1314] = 1314, - [1315] = 1315, - [1316] = 692, - [1317] = 1317, - [1318] = 1318, - [1319] = 694, - [1320] = 695, - [1321] = 602, - [1322] = 696, - [1323] = 605, - [1324] = 697, - [1325] = 698, - [1326] = 701, - [1327] = 702, - [1328] = 703, - [1329] = 704, - [1330] = 706, - [1331] = 707, - [1332] = 708, - [1333] = 709, - [1334] = 1024, - [1335] = 710, - [1336] = 711, - [1337] = 715, - [1338] = 716, - [1339] = 723, - [1340] = 727, - [1341] = 728, - [1342] = 729, - [1343] = 730, - [1344] = 731, - [1345] = 732, - [1346] = 733, - [1347] = 734, - [1348] = 739, - [1349] = 740, - [1350] = 741, - [1351] = 742, - [1352] = 743, - [1353] = 744, - [1354] = 745, - [1355] = 746, - [1356] = 747, - [1357] = 749, - [1358] = 750, - [1359] = 751, - [1360] = 752, - [1361] = 753, - [1362] = 754, - [1363] = 755, + [1303] = 1303, + [1304] = 540, + [1305] = 541, + [1306] = 542, + [1307] = 543, + [1308] = 544, + [1309] = 545, + [1310] = 546, + [1311] = 547, + [1312] = 548, + [1313] = 549, + [1314] = 550, + [1315] = 552, + [1316] = 553, + [1317] = 554, + [1318] = 555, + [1319] = 556, + [1320] = 557, + [1321] = 558, + [1322] = 559, + [1323] = 560, + [1324] = 561, + [1325] = 562, + [1326] = 563, + [1327] = 564, + [1328] = 565, + [1329] = 566, + [1330] = 567, + [1331] = 568, + [1332] = 569, + [1333] = 570, + [1334] = 571, + [1335] = 572, + [1336] = 573, + [1337] = 574, + [1338] = 575, + [1339] = 577, + [1340] = 578, + [1341] = 579, + [1342] = 580, + [1343] = 581, + [1344] = 582, + [1345] = 583, + [1346] = 584, + [1347] = 585, + [1348] = 586, + [1349] = 587, + [1350] = 588, + [1351] = 589, + [1352] = 590, + [1353] = 591, + [1354] = 592, + [1355] = 1355, + [1356] = 1356, + [1357] = 1357, + [1358] = 1358, + [1359] = 576, + [1360] = 1360, + [1361] = 1024, + [1362] = 1362, + [1363] = 1363, [1364] = 1364, - [1365] = 756, - [1366] = 1020, - [1367] = 1021, + [1365] = 1024, + [1366] = 435, + [1367] = 1367, [1368] = 1368, [1369] = 1369, - [1370] = 757, - [1371] = 1022, - [1372] = 1372, - [1373] = 1373, - [1374] = 758, - [1375] = 759, - [1376] = 516, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1380, - [1381] = 622, - [1382] = 1382, - [1383] = 1383, + [1370] = 746, + [1371] = 1371, + [1372] = 382, + [1373] = 411, + [1374] = 392, + [1375] = 413, + [1376] = 410, + [1377] = 383, + [1378] = 409, + [1379] = 399, + [1380] = 406, + [1381] = 395, + [1382] = 1015, + [1383] = 393, [1384] = 1384, - [1385] = 1385, - [1386] = 399, - [1387] = 1387, - [1388] = 1388, - [1389] = 609, - [1390] = 1390, + [1385] = 181, + [1386] = 1386, + [1387] = 370, + [1388] = 379, + [1389] = 396, + [1390] = 408, [1391] = 1391, - [1392] = 405, - [1393] = 1393, - [1394] = 406, - [1395] = 181, - [1396] = 1396, - [1397] = 1024, + [1392] = 1392, + [1393] = 378, + [1394] = 1394, + [1395] = 1395, + [1396] = 372, + [1397] = 1397, [1398] = 1398, - [1399] = 210, - [1400] = 1400, - [1401] = 407, + [1399] = 1399, + [1400] = 403, + [1401] = 1401, [1402] = 1402, [1403] = 1403, [1404] = 1404, - [1405] = 211, - [1406] = 393, + [1405] = 375, + [1406] = 391, [1407] = 1407, - [1408] = 387, + [1408] = 1408, [1409] = 1409, - [1410] = 381, - [1411] = 397, - [1412] = 398, + [1410] = 1410, + [1411] = 1411, + [1412] = 1412, [1413] = 1413, [1414] = 1414, [1415] = 1415, [1416] = 1416, - [1417] = 389, + [1417] = 1417, [1418] = 1418, [1419] = 1419, - [1420] = 410, + [1420] = 1420, [1421] = 1421, [1422] = 1422, - [1423] = 1423, - [1424] = 1424, - [1425] = 1425, - [1426] = 372, + [1423] = 183, + [1424] = 179, + [1425] = 214, + [1426] = 1426, [1427] = 1427, [1428] = 1428, - [1429] = 374, + [1429] = 1429, [1430] = 1430, [1431] = 1431, [1432] = 1432, @@ -5341,1131 +5354,1131 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1435] = 1435, [1436] = 1436, [1437] = 1437, - [1438] = 1438, + [1438] = 576, [1439] = 1439, - [1440] = 1440, - [1441] = 392, + [1440] = 150, + [1441] = 1441, [1442] = 1442, - [1443] = 179, + [1443] = 642, [1444] = 1444, [1445] = 1445, [1446] = 1446, - [1447] = 1447, - [1448] = 1015, - [1449] = 174, - [1450] = 1450, - [1451] = 1451, + [1447] = 1024, + [1448] = 1448, + [1449] = 1449, + [1450] = 171, + [1451] = 212, [1452] = 1452, - [1453] = 375, + [1453] = 1453, [1454] = 1454, [1455] = 1455, [1456] = 1456, [1457] = 1457, - [1458] = 1458, + [1458] = 390, [1459] = 1459, [1460] = 1460, - [1461] = 383, - [1462] = 183, - [1463] = 1463, - [1464] = 384, - [1465] = 394, - [1466] = 1466, - [1467] = 390, + [1461] = 402, + [1462] = 1462, + [1463] = 394, + [1464] = 1464, + [1465] = 1465, + [1466] = 412, + [1467] = 1467, [1468] = 1468, - [1469] = 409, - [1470] = 391, - [1471] = 1471, - [1472] = 412, + [1469] = 1469, + [1470] = 1470, + [1471] = 404, + [1472] = 1472, [1473] = 1473, [1474] = 1474, [1475] = 1475, [1476] = 1476, - [1477] = 413, + [1477] = 1477, [1478] = 1478, - [1479] = 379, + [1479] = 1479, [1480] = 1480, [1481] = 1481, [1482] = 1482, - [1483] = 382, + [1483] = 1483, [1484] = 1484, [1485] = 1485, - [1486] = 1486, + [1486] = 414, [1487] = 1487, [1488] = 1488, - [1489] = 177, - [1490] = 378, + [1489] = 1489, + [1490] = 1490, [1491] = 1491, [1492] = 1492, [1493] = 1493, [1494] = 1494, [1495] = 1495, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 1024, + [1496] = 1024, + [1497] = 1493, + [1498] = 1024, + [1499] = 1493, + [1500] = 1500, [1501] = 1501, - [1502] = 1024, - [1503] = 1499, - [1504] = 1499, - [1505] = 1505, + [1502] = 1502, + [1503] = 1503, + [1504] = 1504, + [1505] = 1057, [1506] = 1506, [1507] = 1507, [1508] = 1508, - [1509] = 1051, + [1509] = 1509, [1510] = 1510, [1511] = 1511, - [1512] = 1512, + [1512] = 1023, [1513] = 1513, [1514] = 1514, [1515] = 1515, - [1516] = 1516, + [1516] = 1515, [1517] = 1517, [1518] = 1518, [1519] = 1519, [1520] = 1520, - [1521] = 1023, + [1521] = 1510, [1522] = 1522, [1523] = 1523, [1524] = 1524, - [1525] = 1525, - [1526] = 1507, - [1527] = 1527, - [1528] = 1524, + [1525] = 1057, + [1526] = 1057, + [1527] = 1025, + [1528] = 1528, [1529] = 1529, - [1530] = 1530, + [1530] = 1027, [1531] = 1531, - [1532] = 1029, + [1532] = 1032, [1533] = 1533, [1534] = 1534, [1535] = 1535, - [1536] = 1536, - [1537] = 1537, - [1538] = 1538, - [1539] = 1025, - [1540] = 1051, - [1541] = 1541, - [1542] = 1026, - [1543] = 1051, - [1544] = 1311, - [1545] = 1422, - [1546] = 1227, - [1547] = 1186, - [1548] = 1315, - [1549] = 1038, - [1550] = 1315, - [1551] = 1041, - [1552] = 1478, - [1553] = 1227, - [1554] = 1037, - [1555] = 1311, - [1556] = 1049, - [1557] = 1044, - [1558] = 1048, - [1559] = 1478, - [1560] = 1186, - [1561] = 1047, - [1562] = 1050, - [1563] = 1563, - [1564] = 1564, - [1565] = 1484, - [1566] = 1566, - [1567] = 1238, - [1568] = 1468, - [1569] = 1307, - [1570] = 1364, - [1571] = 1571, - [1572] = 341, - [1573] = 1364, - [1574] = 1478, - [1575] = 1563, - [1576] = 1422, - [1577] = 1052, - [1578] = 1578, - [1579] = 1484, - [1580] = 1069, - [1581] = 1571, - [1582] = 1563, - [1583] = 1571, - [1584] = 1563, - [1585] = 1120, - [1586] = 1505, - [1587] = 1501, - [1588] = 1578, - [1589] = 1057, - [1590] = 1564, - [1591] = 1053, - [1592] = 1468, - [1593] = 1055, - [1594] = 1566, - [1595] = 1578, - [1596] = 1571, - [1597] = 1317, - [1598] = 1598, - [1599] = 1184, - [1600] = 1600, - [1601] = 1309, - [1602] = 1302, - [1603] = 1603, - [1604] = 1604, - [1605] = 1605, - [1606] = 1305, - [1607] = 1306, - [1608] = 1505, - [1609] = 1501, - [1610] = 1288, - [1611] = 1368, - [1612] = 1506, - [1613] = 1523, - [1614] = 1185, - [1615] = 1600, - [1616] = 1530, - [1617] = 1508, - [1618] = 1527, + [1536] = 1037, + [1537] = 1363, + [1538] = 1362, + [1539] = 1041, + [1540] = 1363, + [1541] = 1040, + [1542] = 1145, + [1543] = 1355, + [1544] = 1043, + [1545] = 1038, + [1546] = 1039, + [1547] = 1145, + [1548] = 1362, + [1549] = 1355, + [1550] = 1478, + [1551] = 1045, + [1552] = 1046, + [1553] = 1480, + [1554] = 1478, + [1555] = 1555, + [1556] = 1061, + [1557] = 1066, + [1558] = 1055, + [1559] = 1418, + [1560] = 1065, + [1561] = 1432, + [1562] = 1144, + [1563] = 1199, + [1564] = 1252, + [1565] = 1302, + [1566] = 285, + [1567] = 1555, + [1568] = 1568, + [1569] = 1568, + [1570] = 1570, + [1571] = 1480, + [1572] = 1572, + [1573] = 1570, + [1574] = 1574, + [1575] = 1574, + [1576] = 1066, + [1577] = 1570, + [1578] = 1574, + [1579] = 1059, + [1580] = 1570, + [1581] = 1574, + [1582] = 1495, + [1583] = 1494, + [1584] = 1478, + [1585] = 1572, + [1586] = 1432, + [1587] = 1572, + [1588] = 1418, + [1589] = 1501, + [1590] = 1514, + [1591] = 1358, + [1592] = 1303, + [1593] = 1082, + [1594] = 379, + [1595] = 370, + [1596] = 372, + [1597] = 375, + [1598] = 378, + [1599] = 1068, + [1600] = 1069, + [1601] = 1083, + [1602] = 1518, + [1603] = 1511, + [1604] = 1520, + [1605] = 1509, + [1606] = 1500, + [1607] = 1495, + [1608] = 1608, + [1609] = 1074, + [1610] = 1610, + [1611] = 1076, + [1612] = 1612, + [1613] = 1077, + [1614] = 1103, + [1615] = 1508, + [1616] = 1104, + [1617] = 1253, + [1618] = 1106, [1619] = 1070, - [1620] = 1510, - [1621] = 1598, - [1622] = 1318, - [1623] = 1121, - [1624] = 1511, - [1625] = 1241, - [1626] = 1604, - [1627] = 1512, - [1628] = 1179, - [1629] = 1519, - [1630] = 1183, - [1631] = 1522, - [1632] = 1369, - [1633] = 1529, - [1634] = 1372, - [1635] = 1373, - [1636] = 375, - [1637] = 1525, - [1638] = 1150, - [1639] = 378, - [1640] = 374, - [1641] = 1245, - [1642] = 1180, - [1643] = 379, - [1644] = 372, - [1645] = 1178, - [1646] = 1181, - [1647] = 1247, - [1648] = 1520, - [1649] = 1513, - [1650] = 1514, - [1651] = 1651, - [1652] = 1515, - [1653] = 1516, - [1654] = 1177, - [1655] = 1517, - [1656] = 1518, - [1657] = 1243, - [1658] = 1482, - [1659] = 1659, - [1660] = 1383, - [1661] = 1508, - [1662] = 1510, - [1663] = 1463, - [1664] = 1492, - [1665] = 1665, - [1666] = 1511, - [1667] = 1667, - [1668] = 1668, - [1669] = 1669, - [1670] = 1670, - [1671] = 1512, - [1672] = 1513, + [1620] = 1494, + [1621] = 1513, + [1622] = 1107, + [1623] = 1079, + [1624] = 1517, + [1625] = 1146, + [1626] = 1147, + [1627] = 1519, + [1628] = 1608, + [1629] = 1522, + [1630] = 1523, + [1631] = 1524, + [1632] = 1506, + [1633] = 1504, + [1634] = 1148, + [1635] = 1502, + [1636] = 1636, + [1637] = 1503, + [1638] = 1080, + [1639] = 1200, + [1640] = 1356, + [1641] = 1357, + [1642] = 1507, + [1643] = 1610, + [1644] = 1612, + [1645] = 1368, + [1646] = 1081, + [1647] = 1647, + [1648] = 1648, + [1649] = 1105, + [1650] = 1650, + [1651] = 1398, + [1652] = 1652, + [1653] = 1394, + [1654] = 1395, + [1655] = 1384, + [1656] = 1656, + [1657] = 1386, + [1658] = 1446, + [1659] = 1448, + [1660] = 435, + [1661] = 394, + [1662] = 382, + [1663] = 413, + [1664] = 383, + [1665] = 395, + [1666] = 1500, + [1667] = 1408, + [1668] = 411, + [1669] = 1511, + [1670] = 406, + [1671] = 1513, + [1672] = 393, [1673] = 1514, - [1674] = 1515, - [1675] = 1516, - [1676] = 1506, - [1677] = 1523, - [1678] = 1659, - [1679] = 1530, - [1680] = 1527, - [1681] = 1681, - [1682] = 1430, - [1683] = 1517, - [1684] = 1518, - [1685] = 1485, - [1686] = 1519, - [1687] = 1497, - [1688] = 1520, - [1689] = 1421, - [1690] = 1659, - [1691] = 1455, - [1692] = 1692, - [1693] = 409, - [1694] = 1457, - [1695] = 1446, - [1696] = 1696, - [1697] = 1697, - [1698] = 1456, - [1699] = 381, - [1700] = 1700, - [1701] = 389, - [1702] = 1702, - [1703] = 1529, - [1704] = 1413, - [1705] = 1705, - [1706] = 1506, - [1707] = 394, - [1708] = 1708, - [1709] = 1670, - [1710] = 1418, - [1711] = 1659, - [1712] = 1681, - [1713] = 1382, - [1714] = 1523, - [1715] = 1385, - [1716] = 1716, - [1717] = 1494, - [1718] = 397, - [1719] = 1445, - [1720] = 1419, - [1721] = 1377, - [1722] = 1696, - [1723] = 398, - [1724] = 410, - [1725] = 1702, - [1726] = 1475, - [1727] = 1480, - [1728] = 382, - [1729] = 387, - [1730] = 1670, - [1731] = 1427, - [1732] = 1681, - [1733] = 407, - [1734] = 1530, - [1735] = 174, - [1736] = 1379, - [1737] = 1737, - [1738] = 1702, - [1739] = 177, - [1740] = 1696, - [1741] = 1380, - [1742] = 1702, - [1743] = 1391, - [1744] = 1670, - [1745] = 412, - [1746] = 1681, - [1747] = 384, + [1674] = 396, + [1675] = 1513, + [1676] = 1517, + [1677] = 1519, + [1678] = 1522, + [1679] = 1523, + [1680] = 1524, + [1681] = 1506, + [1682] = 1504, + [1683] = 1502, + [1684] = 1503, + [1685] = 1507, + [1686] = 1402, + [1687] = 1403, + [1688] = 1449, + [1689] = 414, + [1690] = 399, + [1691] = 1508, + [1692] = 403, + [1693] = 1407, + [1694] = 1441, + [1695] = 390, + [1696] = 402, + [1697] = 410, + [1698] = 391, + [1699] = 404, + [1700] = 409, + [1701] = 179, + [1702] = 181, + [1703] = 1703, + [1704] = 412, + [1705] = 183, + [1706] = 1500, + [1707] = 171, + [1708] = 392, + [1709] = 1514, + [1710] = 150, + [1711] = 408, + [1712] = 1508, + [1713] = 1517, + [1714] = 1519, + [1715] = 1522, + [1716] = 212, + [1717] = 214, + [1718] = 1523, + [1719] = 1524, + [1720] = 1409, + [1721] = 1506, + [1722] = 1391, + [1723] = 1723, + [1724] = 1504, + [1725] = 1725, + [1726] = 1502, + [1727] = 1727, + [1728] = 1723, + [1729] = 1729, + [1730] = 1439, + [1731] = 1503, + [1732] = 1507, + [1733] = 1650, + [1734] = 1397, + [1735] = 1472, + [1736] = 1435, + [1737] = 1399, + [1738] = 1738, + [1739] = 1444, + [1740] = 1401, + [1741] = 1020, + [1742] = 1742, + [1743] = 1743, + [1744] = 1738, + [1745] = 1479, + [1746] = 1742, + [1747] = 1747, [1748] = 1748, - [1749] = 179, - [1750] = 1452, - [1751] = 1442, - [1752] = 1520, - [1753] = 181, - [1754] = 1696, - [1755] = 1696, - [1756] = 1702, - [1757] = 392, - [1758] = 1670, - [1759] = 1450, - [1760] = 1681, - [1761] = 1522, - [1762] = 1696, - [1763] = 1763, - [1764] = 1702, - [1765] = 1447, - [1766] = 1520, - [1767] = 1527, - [1768] = 183, - [1769] = 1444, - [1770] = 406, - [1771] = 1496, - [1772] = 391, - [1773] = 1773, - [1774] = 1474, - [1775] = 1529, - [1776] = 1681, - [1777] = 1667, - [1778] = 1403, - [1779] = 1425, - [1780] = 1471, - [1781] = 1407, - [1782] = 1525, - [1783] = 1393, - [1784] = 1459, - [1785] = 1705, - [1786] = 1786, - [1787] = 1404, - [1788] = 1708, - [1789] = 1493, - [1790] = 1414, - [1791] = 1466, - [1792] = 1495, - [1793] = 1665, - [1794] = 1794, - [1795] = 1020, - [1796] = 1696, - [1797] = 393, - [1798] = 413, - [1799] = 1670, - [1800] = 399, - [1801] = 1460, - [1802] = 1802, - [1803] = 210, - [1804] = 211, - [1805] = 1384, - [1806] = 1473, - [1807] = 1697, - [1808] = 1522, - [1809] = 1702, - [1810] = 1432, - [1811] = 405, - [1812] = 1439, - [1813] = 1525, - [1814] = 1814, - [1815] = 1815, - [1816] = 1387, - [1817] = 1434, - [1818] = 1390, - [1819] = 1819, - [1820] = 1529, - [1821] = 1522, - [1822] = 1437, - [1823] = 1400, - [1824] = 435, - [1825] = 1433, - [1826] = 1487, - [1827] = 1827, - [1828] = 1458, - [1829] = 1454, - [1830] = 1830, - [1831] = 1831, - [1832] = 1508, - [1833] = 1488, - [1834] = 1510, - [1835] = 1511, - [1836] = 1396, - [1837] = 1512, - [1838] = 1513, - [1839] = 1398, - [1840] = 383, - [1841] = 1514, - [1842] = 1486, - [1843] = 1515, - [1844] = 1378, - [1845] = 1402, - [1846] = 1409, - [1847] = 1516, - [1848] = 1670, - [1849] = 1517, - [1850] = 1416, - [1851] = 1388, - [1852] = 1518, - [1853] = 1519, - [1854] = 1415, - [1855] = 1681, - [1856] = 1438, - [1857] = 1435, - [1858] = 1830, - [1859] = 1498, + [1749] = 1518, + [1750] = 1750, + [1751] = 1751, + [1752] = 1475, + [1753] = 1453, + [1754] = 1417, + [1755] = 1755, + [1756] = 1420, + [1757] = 1422, + [1758] = 1758, + [1759] = 1759, + [1760] = 1656, + [1761] = 1481, + [1762] = 1452, + [1763] = 1727, + [1764] = 1500, + [1765] = 1474, + [1766] = 1766, + [1767] = 1455, + [1768] = 1768, + [1769] = 1758, + [1770] = 1429, + [1771] = 1430, + [1772] = 1483, + [1773] = 1723, + [1774] = 1484, + [1775] = 1485, + [1776] = 1518, + [1777] = 1501, + [1778] = 1650, + [1779] = 1520, + [1780] = 1509, + [1781] = 1738, + [1782] = 1426, + [1783] = 1460, + [1784] = 1508, + [1785] = 1427, + [1786] = 1759, + [1787] = 1750, + [1788] = 1788, + [1789] = 1759, + [1790] = 1501, + [1791] = 1791, + [1792] = 1488, + [1793] = 1723, + [1794] = 1489, + [1795] = 1650, + [1796] = 1738, + [1797] = 1747, + [1798] = 1490, + [1799] = 1404, + [1800] = 1464, + [1801] = 1412, + [1802] = 1750, + [1803] = 1803, + [1804] = 1759, + [1805] = 1416, + [1806] = 1462, + [1807] = 1477, + [1808] = 1723, + [1809] = 1487, + [1810] = 1738, + [1811] = 1419, + [1812] = 1473, + [1813] = 1454, + [1814] = 1768, + [1815] = 1750, + [1816] = 1759, + [1817] = 1465, + [1818] = 1723, + [1819] = 1738, + [1820] = 1820, + [1821] = 1750, + [1822] = 1759, + [1823] = 1723, + [1824] = 1738, + [1825] = 1750, + [1826] = 1759, + [1827] = 1392, + [1828] = 1509, + [1829] = 1421, + [1830] = 1476, + [1831] = 1456, + [1832] = 1437, + [1833] = 1833, + [1834] = 1834, + [1835] = 1835, + [1836] = 1428, + [1837] = 1433, + [1838] = 1410, + [1839] = 1411, + [1840] = 1840, + [1841] = 1431, + [1842] = 1511, + [1843] = 1413, + [1844] = 1492, + [1845] = 1459, + [1846] = 1750, + [1847] = 1725, + [1848] = 1457, + [1849] = 1414, + [1850] = 1436, + [1851] = 1442, + [1852] = 1755, + [1853] = 1467, + [1854] = 1520, + [1855] = 1514, + [1856] = 1415, + [1857] = 1445, + [1858] = 1371, + [1859] = 1859, [1860] = 1860, - [1861] = 1481, - [1862] = 1773, - [1863] = 390, - [1864] = 1451, - [1865] = 1476, - [1866] = 1748, - [1867] = 1431, - [1868] = 1868, - [1869] = 1869, - [1870] = 1716, - [1871] = 1871, + [1861] = 1861, + [1862] = 1862, + [1863] = 1863, + [1864] = 1862, + [1865] = 1865, + [1866] = 1866, + [1867] = 1867, + [1868] = 1859, + [1869] = 1865, + [1870] = 1870, + [1871] = 1863, [1872] = 1872, [1873] = 1873, - [1874] = 1815, - [1875] = 1875, + [1874] = 1874, + [1875] = 1870, [1876] = 1876, - [1877] = 1877, - [1878] = 1878, - [1879] = 1879, + [1877] = 1861, + [1878] = 1874, + [1879] = 1866, [1880] = 1880, [1881] = 1881, [1882] = 1882, - [1883] = 1877, - [1884] = 1881, + [1883] = 1876, + [1884] = 1884, [1885] = 1885, - [1886] = 1886, - [1887] = 1869, - [1888] = 1871, - [1889] = 1876, - [1890] = 1878, + [1886] = 1862, + [1887] = 1880, + [1888] = 1872, + [1889] = 1873, + [1890] = 1833, [1891] = 1891, - [1892] = 1892, - [1893] = 1882, - [1894] = 1886, - [1895] = 1895, - [1896] = 1895, + [1892] = 1860, + [1893] = 1881, + [1894] = 1894, + [1895] = 1803, + [1896] = 1896, [1897] = 1897, - [1898] = 1871, - [1899] = 1692, - [1900] = 1879, - [1901] = 1868, - [1902] = 1897, - [1903] = 1903, - [1904] = 1892, + [1898] = 1898, + [1899] = 1899, + [1900] = 1900, + [1901] = 1899, + [1902] = 1898, + [1903] = 1900, + [1904] = 1897, [1905] = 1905, [1906] = 1906, [1907] = 1907, [1908] = 1908, - [1909] = 1906, - [1910] = 1907, - [1911] = 1908, - [1912] = 1905, - [1913] = 1913, - [1914] = 1914, - [1915] = 1915, + [1909] = 1909, + [1910] = 1909, + [1911] = 1909, + [1912] = 1909, + [1913] = 1908, + [1914] = 1908, + [1915] = 1909, [1916] = 1916, [1917] = 1916, - [1918] = 1918, - [1919] = 1916, - [1920] = 1916, - [1921] = 1918, - [1922] = 1918, - [1923] = 1916, - [1924] = 1924, - [1925] = 1924, - [1926] = 1023, - [1927] = 183, - [1928] = 179, - [1929] = 1050, - [1930] = 1029, - [1931] = 1048, - [1932] = 1038, - [1933] = 1026, - [1934] = 1934, - [1935] = 1047, - [1936] = 1025, - [1937] = 1041, - [1938] = 1038, - [1939] = 1049, - [1940] = 1120, - [1941] = 1047, - [1942] = 1238, - [1943] = 1050, - [1944] = 1069, - [1945] = 1048, - [1946] = 1037, - [1947] = 1307, - [1948] = 1044, - [1949] = 1057, - [1950] = 1052, - [1951] = 1177, - [1952] = 1053, - [1953] = 1055, + [1918] = 150, + [1919] = 183, + [1920] = 1023, + [1921] = 1038, + [1922] = 1032, + [1923] = 1923, + [1924] = 1046, + [1925] = 1039, + [1926] = 1025, + [1927] = 1043, + [1928] = 1027, + [1929] = 1041, + [1930] = 1046, + [1931] = 1039, + [1932] = 1045, + [1933] = 1037, + [1934] = 1199, + [1935] = 1043, + [1936] = 1252, + [1937] = 1040, + [1938] = 1302, + [1939] = 1038, + [1940] = 1144, + [1941] = 1941, + [1942] = 1065, + [1943] = 1059, + [1944] = 1061, + [1945] = 1055, + [1946] = 1103, + [1947] = 1947, + [1948] = 1076, + [1949] = 1949, + [1950] = 1077, + [1951] = 1074, + [1952] = 1949, + [1953] = 1953, [1954] = 1954, - [1955] = 1369, - [1956] = 1372, - [1957] = 1957, - [1958] = 1373, - [1959] = 1957, - [1960] = 1960, - [1961] = 1179, - [1962] = 1305, - [1963] = 1181, - [1964] = 392, - [1965] = 406, - [1966] = 1966, - [1967] = 210, - [1968] = 1241, - [1969] = 211, - [1970] = 1070, - [1971] = 1243, - [1972] = 1180, - [1973] = 1966, - [1974] = 1183, - [1975] = 1247, - [1976] = 1184, - [1977] = 1185, - [1978] = 1178, - [1979] = 1245, - [1980] = 1531, - [1981] = 1981, - [1982] = 1302, - [1983] = 1306, - [1984] = 1966, - [1985] = 1954, - [1986] = 1150, - [1987] = 1309, - [1988] = 1121, - [1989] = 1989, - [1990] = 1451, - [1991] = 1393, - [1992] = 1454, - [1993] = 1455, - [1994] = 1457, - [1995] = 1459, - [1996] = 1954, - [1997] = 1382, - [1998] = 1998, - [1999] = 1378, - [2000] = 1387, - [2001] = 1380, - [2002] = 1390, - [2003] = 1402, - [2004] = 1385, - [2005] = 1460, - [2006] = 1384, - [2007] = 1391, - [2008] = 1534, - [2009] = 1536, - [2010] = 1456, - [2011] = 1541, - [2012] = 1496, - [2013] = 1427, - [2014] = 1493, - [2015] = 1494, - [2016] = 1450, - [2017] = 1383, - [2018] = 1379, - [2019] = 1495, - [2020] = 1388, - [2021] = 181, - [2022] = 2022, - [2023] = 177, + [1955] = 1069, + [1956] = 1253, + [1957] = 392, + [1958] = 1070, + [1959] = 214, + [1960] = 408, + [1961] = 1148, + [1962] = 1147, + [1963] = 1079, + [1964] = 1080, + [1965] = 1081, + [1966] = 1105, + [1967] = 1082, + [1968] = 1954, + [1969] = 1104, + [1970] = 1083, + [1971] = 1954, + [1972] = 1200, + [1973] = 1535, + [1974] = 1303, + [1975] = 1106, + [1976] = 1068, + [1977] = 212, + [1978] = 1146, + [1979] = 1979, + [1980] = 1953, + [1981] = 1107, + [1982] = 1391, + [1983] = 1395, + [1984] = 1403, + [1985] = 1441, + [1986] = 1397, + [1987] = 1531, + [1988] = 1402, + [1989] = 1420, + [1990] = 1408, + [1991] = 1991, + [1992] = 1413, + [1993] = 1399, + [1994] = 1414, + [1995] = 1452, + [1996] = 1422, + [1997] = 1415, + [1998] = 1529, + [1999] = 1419, + [2000] = 1953, + [2001] = 1528, + [2002] = 1410, + [2003] = 1404, + [2004] = 1416, + [2005] = 1407, + [2006] = 1411, + [2007] = 2007, + [2008] = 1401, + [2009] = 1412, + [2010] = 1417, + [2011] = 1398, + [2012] = 1421, + [2013] = 1462, + [2014] = 2014, + [2015] = 2015, + [2016] = 171, + [2017] = 2017, + [2018] = 181, + [2019] = 1038, + [2020] = 1046, + [2021] = 1046, + [2022] = 1039, + [2023] = 1039, [2024] = 2024, - [2025] = 2025, - [2026] = 1038, - [2027] = 2027, - [2028] = 1038, - [2029] = 1048, + [2025] = 1043, + [2026] = 1923, + [2027] = 1046, + [2028] = 1043, + [2029] = 1039, [2030] = 2030, - [2031] = 1934, - [2032] = 1047, - [2033] = 1047, - [2034] = 1050, - [2035] = 1048, + [2031] = 2031, + [2032] = 1038, + [2033] = 1043, + [2034] = 1038, + [2035] = 2035, [2036] = 2036, - [2037] = 1050, - [2038] = 1038, - [2039] = 1047, - [2040] = 1050, - [2041] = 1048, - [2042] = 2042, - [2043] = 2043, + [2037] = 2037, + [2038] = 2038, + [2039] = 2035, + [2040] = 2040, + [2041] = 2041, + [2042] = 2040, + [2043] = 2041, [2044] = 2044, [2045] = 2045, - [2046] = 2046, + [2046] = 2044, [2047] = 2047, - [2048] = 2048, + [2048] = 375, [2049] = 2049, [2050] = 2050, - [2051] = 2051, + [2051] = 378, [2052] = 2047, - [2053] = 2048, - [2054] = 2043, - [2055] = 2046, - [2056] = 2045, + [2053] = 2053, + [2054] = 1046, + [2055] = 2055, + [2056] = 2056, [2057] = 2057, - [2058] = 2049, - [2059] = 2044, - [2060] = 2060, + [2058] = 2058, + [2059] = 2059, + [2060] = 370, [2061] = 2061, [2062] = 2062, [2063] = 2063, - [2064] = 378, - [2065] = 2065, - [2066] = 2066, + [2064] = 1038, + [2065] = 2050, + [2066] = 2061, [2067] = 2067, [2068] = 2068, [2069] = 2069, [2070] = 2070, - [2071] = 2071, + [2071] = 372, [2072] = 2072, [2073] = 2073, - [2074] = 2061, - [2075] = 379, - [2076] = 2076, - [2077] = 372, - [2078] = 2078, - [2079] = 2079, - [2080] = 1038, - [2081] = 2081, + [2074] = 2074, + [2075] = 2053, + [2076] = 1043, + [2077] = 2062, + [2078] = 2070, + [2079] = 2055, + [2080] = 2059, + [2081] = 379, [2082] = 2082, [2083] = 2083, - [2084] = 2084, - [2085] = 2085, - [2086] = 2072, - [2087] = 2076, + [2084] = 1039, + [2085] = 1947, + [2086] = 2086, + [2087] = 2087, [2088] = 2088, - [2089] = 2060, - [2090] = 1960, - [2091] = 374, - [2092] = 2079, - [2093] = 2084, + [2089] = 2089, + [2090] = 2090, + [2091] = 2091, + [2092] = 2092, + [2093] = 2093, [2094] = 2094, - [2095] = 2078, - [2096] = 2088, - [2097] = 1048, - [2098] = 1047, - [2099] = 375, - [2100] = 1050, - [2101] = 2094, + [2095] = 2095, + [2096] = 2096, + [2097] = 2097, + [2098] = 2098, + [2099] = 2099, + [2100] = 2100, + [2101] = 2092, [2102] = 2102, [2103] = 2103, [2104] = 2104, - [2105] = 2105, + [2105] = 1947, [2106] = 2106, [2107] = 2107, [2108] = 2108, [2109] = 2109, [2110] = 2110, [2111] = 2111, - [2112] = 1960, + [2112] = 2088, [2113] = 2113, [2114] = 2114, [2115] = 2115, [2116] = 2116, - [2117] = 2117, + [2117] = 2113, [2118] = 2118, [2119] = 2119, [2120] = 2120, - [2121] = 2110, - [2122] = 2122, - [2123] = 2123, - [2124] = 2124, + [2121] = 2121, + [2122] = 1979, + [2123] = 2090, + [2124] = 412, [2125] = 2125, [2126] = 2126, - [2127] = 2109, + [2127] = 2104, [2128] = 2128, [2129] = 2129, - [2130] = 2130, + [2130] = 1947, [2131] = 2131, [2132] = 2132, - [2133] = 2130, - [2134] = 384, + [2133] = 2133, + [2134] = 2134, [2135] = 2135, - [2136] = 1981, - [2137] = 2137, + [2136] = 2136, + [2137] = 2092, [2138] = 2138, [2139] = 2139, - [2140] = 1960, - [2141] = 2141, + [2140] = 2140, + [2141] = 1061, [2142] = 2142, - [2143] = 2143, + [2143] = 2139, [2144] = 2144, - [2145] = 2108, + [2145] = 2139, [2146] = 2146, [2147] = 2147, - [2148] = 2109, - [2149] = 2149, - [2150] = 2150, - [2151] = 2123, - [2152] = 2152, - [2153] = 2153, + [2148] = 2148, + [2149] = 2144, + [2150] = 1947, + [2151] = 2151, + [2152] = 2146, + [2153] = 2151, [2154] = 2154, [2155] = 2155, - [2156] = 2156, + [2156] = 2154, [2157] = 2157, [2158] = 2158, - [2159] = 2159, - [2160] = 2157, + [2159] = 2140, + [2160] = 1055, [2161] = 2161, - [2162] = 1052, - [2163] = 1981, - [2164] = 2158, - [2165] = 2165, + [2162] = 2162, + [2163] = 1979, + [2164] = 2157, + [2165] = 1979, [2166] = 2166, - [2167] = 2167, - [2168] = 1053, - [2169] = 2169, - [2170] = 2154, - [2171] = 2159, - [2172] = 2172, - [2173] = 2156, - [2174] = 1055, - [2175] = 1057, - [2176] = 2156, - [2177] = 2177, - [2178] = 2177, - [2179] = 1981, + [2167] = 2166, + [2168] = 2138, + [2169] = 2162, + [2170] = 2157, + [2171] = 1065, + [2172] = 2161, + [2173] = 2148, + [2174] = 2174, + [2175] = 2175, + [2176] = 2176, + [2177] = 1059, + [2178] = 2178, + [2179] = 2179, [2180] = 2180, [2181] = 2181, - [2182] = 2155, - [2183] = 2183, - [2184] = 2183, - [2185] = 2185, + [2182] = 2176, + [2183] = 2147, + [2184] = 2174, + [2185] = 2175, [2186] = 2186, [2187] = 2187, [2188] = 2188, - [2189] = 2167, - [2190] = 1960, - [2191] = 2161, - [2192] = 2192, - [2193] = 2165, - [2194] = 2172, + [2189] = 2189, + [2190] = 2190, + [2191] = 2191, + [2192] = 2191, + [2193] = 2193, + [2194] = 2194, [2195] = 2195, - [2196] = 2183, - [2197] = 2180, - [2198] = 2166, - [2199] = 2187, - [2200] = 2186, + [2196] = 2188, + [2197] = 2197, + [2198] = 2198, + [2199] = 2199, + [2200] = 2200, [2201] = 2201, [2202] = 2202, [2203] = 2203, [2204] = 2204, - [2205] = 2205, + [2205] = 1979, [2206] = 2206, - [2207] = 2207, + [2207] = 2194, [2208] = 2208, [2209] = 2209, [2210] = 2210, [2211] = 2211, - [2212] = 2212, + [2212] = 2203, [2213] = 2213, - [2214] = 2209, - [2215] = 2210, - [2216] = 2216, - [2217] = 2205, + [2214] = 2214, + [2215] = 2195, + [2216] = 2209, + [2217] = 2214, [2218] = 2218, - [2219] = 2219, + [2219] = 2186, [2220] = 2220, - [2221] = 2202, + [2221] = 2221, [2222] = 2222, - [2223] = 2223, - [2224] = 2224, - [2225] = 2225, - [2226] = 2222, - [2227] = 2207, - [2228] = 2228, - [2229] = 2229, + [2223] = 2190, + [2224] = 2199, + [2225] = 2211, + [2226] = 2226, + [2227] = 2227, + [2228] = 2213, + [2229] = 2220, [2230] = 2230, - [2231] = 2230, - [2232] = 2232, - [2233] = 2233, - [2234] = 2208, - [2235] = 2211, - [2236] = 2229, - [2237] = 2219, + [2231] = 2218, + [2232] = 2193, + [2233] = 2230, + [2234] = 2189, + [2235] = 2208, + [2236] = 2236, + [2237] = 2237, [2238] = 2238, - [2239] = 2224, - [2240] = 2216, - [2241] = 2241, + [2239] = 2239, + [2240] = 2226, + [2241] = 2201, [2242] = 2242, - [2243] = 1981, + [2243] = 2017, [2244] = 2244, [2245] = 2245, [2246] = 2246, [2247] = 2247, [2248] = 2248, - [2249] = 2212, + [2249] = 2249, [2250] = 2250, - [2251] = 2228, - [2252] = 2241, + [2251] = 2251, + [2252] = 2252, [2253] = 2253, - [2254] = 2213, - [2255] = 2232, - [2256] = 2233, - [2257] = 2204, + [2254] = 2248, + [2255] = 2255, + [2256] = 2256, + [2257] = 2257, [2258] = 2258, [2259] = 2259, [2260] = 2260, - [2261] = 2258, + [2261] = 2261, [2262] = 2262, [2263] = 2263, [2264] = 2264, [2265] = 2265, - [2266] = 2266, + [2266] = 2262, [2267] = 2267, [2268] = 2268, - [2269] = 2269, - [2270] = 2260, - [2271] = 2271, + [2269] = 2263, + [2270] = 2270, + [2271] = 2257, [2272] = 2272, [2273] = 2273, - [2274] = 2274, - [2275] = 2275, + [2274] = 2264, + [2275] = 2247, [2276] = 2276, [2277] = 2277, [2278] = 2278, - [2279] = 2279, - [2280] = 2280, - [2281] = 2024, - [2282] = 2282, - [2283] = 2267, - [2284] = 2284, - [2285] = 2285, + [2279] = 2250, + [2280] = 2268, + [2281] = 2267, + [2282] = 2258, + [2283] = 2272, + [2284] = 2264, + [2285] = 2242, [2286] = 2286, - [2287] = 2276, - [2288] = 2278, - [2289] = 2279, - [2290] = 2277, - [2291] = 2280, - [2292] = 2292, - [2293] = 2293, - [2294] = 2294, - [2295] = 2295, - [2296] = 2296, - [2297] = 2282, - [2298] = 2284, + [2287] = 2259, + [2288] = 2288, + [2289] = 2289, + [2290] = 2260, + [2291] = 2249, + [2292] = 2276, + [2293] = 2246, + [2294] = 2244, + [2295] = 2286, + [2296] = 2261, + [2297] = 2251, + [2298] = 2270, [2299] = 2299, [2300] = 2300, - [2301] = 2286, - [2302] = 2293, - [2303] = 2268, - [2304] = 2294, + [2301] = 2301, + [2302] = 2302, + [2303] = 2303, + [2304] = 2304, [2305] = 2305, - [2306] = 2263, - [2307] = 2284, - [2308] = 2295, - [2309] = 2266, - [2310] = 2296, - [2311] = 2264, + [2306] = 2306, + [2307] = 2307, + [2308] = 2308, + [2309] = 2309, + [2310] = 2310, + [2311] = 2311, [2312] = 2312, - [2313] = 2312, - [2314] = 2259, - [2315] = 2275, - [2316] = 2316, + [2313] = 2313, + [2314] = 181, + [2315] = 2300, + [2316] = 183, [2317] = 2317, [2318] = 2318, - [2319] = 2319, - [2320] = 2320, + [2319] = 171, + [2320] = 2305, [2321] = 2321, - [2322] = 2322, - [2323] = 2320, - [2324] = 2321, - [2325] = 2325, - [2326] = 2326, - [2327] = 2327, - [2328] = 2328, - [2329] = 2329, - [2330] = 2326, + [2322] = 2302, + [2323] = 2323, + [2324] = 2324, + [2325] = 150, + [2326] = 2323, + [2327] = 2305, + [2328] = 2324, + [2329] = 2030, + [2330] = 2330, [2331] = 2331, - [2332] = 2332, + [2332] = 2301, [2333] = 2333, [2334] = 2334, [2335] = 2335, - [2336] = 2316, - [2337] = 2326, - [2338] = 2329, - [2339] = 2331, - [2340] = 2332, - [2341] = 2335, + [2336] = 2336, + [2337] = 2337, + [2338] = 2312, + [2339] = 2308, + [2340] = 2336, + [2341] = 2330, [2342] = 2342, - [2343] = 2326, - [2344] = 2027, - [2345] = 2345, - [2346] = 2335, - [2347] = 2030, + [2343] = 2321, + [2344] = 2311, + [2345] = 2301, + [2346] = 2346, + [2347] = 2347, [2348] = 2348, - [2349] = 2349, + [2349] = 2306, [2350] = 2350, - [2351] = 2319, + [2351] = 2351, [2352] = 2352, - [2353] = 2353, - [2354] = 2354, - [2355] = 2352, + [2353] = 2335, + [2354] = 2335, + [2355] = 2355, [2356] = 2356, - [2357] = 2325, + [2357] = 2305, [2358] = 2358, - [2359] = 177, - [2360] = 2360, - [2361] = 2361, - [2362] = 2316, - [2363] = 2363, - [2364] = 2335, - [2365] = 2365, - [2366] = 179, - [2367] = 2353, - [2368] = 2350, - [2369] = 2036, - [2370] = 2354, - [2371] = 2363, - [2372] = 2372, - [2373] = 2373, - [2374] = 181, - [2375] = 183, - [2376] = 2376, - [2377] = 2317, - [2378] = 2378, - [2379] = 2333, - [2380] = 2380, - [2381] = 2381, - [2382] = 2360, - [2383] = 2383, - [2384] = 2345, - [2385] = 2385, + [2359] = 2359, + [2360] = 2356, + [2361] = 2031, + [2362] = 2362, + [2363] = 2350, + [2364] = 2311, + [2365] = 2348, + [2366] = 2358, + [2367] = 2334, + [2368] = 2313, + [2369] = 2369, + [2370] = 2370, + [2371] = 2347, + [2372] = 2304, + [2373] = 2369, + [2374] = 2359, + [2375] = 2355, + [2376] = 2301, + [2377] = 2318, + [2378] = 2307, + [2379] = 2379, + [2380] = 2318, + [2381] = 2342, + [2382] = 2337, + [2383] = 2379, + [2384] = 2352, + [2385] = 2311, [2386] = 2386, - [2387] = 2387, - [2388] = 2356, - [2389] = 2322, + [2387] = 2351, + [2388] = 2317, + [2389] = 2303, [2390] = 2390, - [2391] = 2316, - [2392] = 2349, - [2393] = 2372, - [2394] = 2394, - [2395] = 2386, - [2396] = 2328, - [2397] = 2349, - [2398] = 2327, - [2399] = 2334, - [2400] = 2342, - [2401] = 2383, - [2402] = 2402, - [2403] = 2325, + [2391] = 2309, + [2392] = 2310, + [2393] = 2370, + [2394] = 2014, + [2395] = 2395, + [2396] = 2396, + [2397] = 2397, + [2398] = 2398, + [2399] = 2399, + [2400] = 2400, + [2401] = 2401, + [2402] = 1020, + [2403] = 2403, [2404] = 2404, - [2405] = 2376, - [2406] = 2394, - [2407] = 2373, - [2408] = 2378, - [2409] = 2409, - [2410] = 2381, - [2411] = 2385, - [2412] = 2412, - [2413] = 2380, - [2414] = 2361, - [2415] = 2387, - [2416] = 2409, - [2417] = 1307, + [2405] = 1144, + [2406] = 2406, + [2407] = 1199, + [2408] = 2408, + [2409] = 1252, + [2410] = 1302, + [2411] = 2037, + [2412] = 2036, + [2413] = 2413, + [2414] = 2396, + [2415] = 2415, + [2416] = 2416, + [2417] = 2417, [2418] = 2418, [2419] = 2419, - [2420] = 2420, - [2421] = 1020, + [2420] = 1364, + [2421] = 2421, [2422] = 2422, [2423] = 2423, - [2424] = 1238, - [2425] = 2420, + [2424] = 2423, + [2425] = 2425, [2426] = 2426, [2427] = 2427, - [2428] = 2428, + [2428] = 2403, [2429] = 2429, - [2430] = 1194, - [2431] = 1203, - [2432] = 2432, + [2430] = 2430, + [2431] = 2431, + [2432] = 1085, [2433] = 2433, - [2434] = 1204, + [2434] = 2413, [2435] = 2435, - [2436] = 2436, - [2437] = 1210, - [2438] = 2438, + [2436] = 2401, + [2437] = 2437, + [2438] = 2418, [2439] = 2439, [2440] = 2440, [2441] = 2441, [2442] = 2442, [2443] = 2443, - [2444] = 2444, + [2444] = 2397, [2445] = 2445, - [2446] = 1069, - [2447] = 1211, + [2446] = 1360, + [2447] = 2417, [2448] = 2448, - [2449] = 2449, - [2450] = 2450, - [2451] = 2443, - [2452] = 2042, - [2453] = 2435, - [2454] = 2454, - [2455] = 1120, - [2456] = 2427, - [2457] = 2439, + [2449] = 2431, + [2450] = 2435, + [2451] = 2440, + [2452] = 2452, + [2453] = 2453, + [2454] = 2453, + [2455] = 2455, + [2456] = 2456, + [2457] = 2457, [2458] = 2458, - [2459] = 2426, - [2460] = 2442, - [2461] = 2461, - [2462] = 2462, + [2459] = 2459, + [2460] = 2421, + [2461] = 2429, + [2462] = 2433, [2463] = 2463, - [2464] = 2432, + [2464] = 2413, [2465] = 2465, - [2466] = 2466, - [2467] = 2428, - [2468] = 2462, - [2469] = 1214, - [2470] = 2470, - [2471] = 2050, - [2472] = 2422, + [2466] = 1367, + [2467] = 2467, + [2468] = 2468, + [2469] = 2441, + [2470] = 2433, + [2471] = 2455, + [2472] = 2403, [2473] = 2473, - [2474] = 2474, - [2475] = 2458, - [2476] = 2476, - [2477] = 2420, - [2478] = 2478, + [2474] = 2456, + [2475] = 2441, + [2476] = 2429, + [2477] = 2477, + [2478] = 2433, [2479] = 2479, [2480] = 2480, [2481] = 2481, - [2482] = 2427, - [2483] = 2429, - [2484] = 2476, - [2485] = 2485, + [2482] = 2457, + [2483] = 2483, + [2484] = 2442, + [2485] = 2458, [2486] = 2486, - [2487] = 2432, - [2488] = 2488, - [2489] = 2489, - [2490] = 2422, - [2491] = 2491, + [2487] = 2421, + [2488] = 2459, + [2489] = 2413, + [2490] = 2490, + [2491] = 2443, [2492] = 2492, [2493] = 2493, - [2494] = 2494, + [2494] = 2396, [2495] = 2495, - [2496] = 2428, - [2497] = 2470, - [2498] = 1218, + [2496] = 2430, + [2497] = 2497, + [2498] = 2498, [2499] = 2499, [2500] = 2500, - [2501] = 2449, + [2501] = 2501, [2502] = 2502, - [2503] = 1235, - [2504] = 1239, - [2505] = 1219, - [2506] = 2502, - [2507] = 2494, - [2508] = 2476, + [2503] = 2503, + [2504] = 2504, + [2505] = 2505, + [2506] = 2063, + [2507] = 2072, + [2508] = 2508, [2509] = 2509, - [2510] = 2510, - [2511] = 2436, - [2512] = 2476, + [2510] = 2074, + [2511] = 2511, + [2512] = 2082, [2513] = 2513, - [2514] = 2420, - [2515] = 2502, - [2516] = 2448, - [2517] = 2517, - [2518] = 2438, - [2519] = 2465, + [2514] = 2514, + [2515] = 2067, + [2516] = 2516, + [2517] = 2083, + [2518] = 2045, + [2519] = 2519, [2520] = 2520, - [2521] = 2521, + [2521] = 2505, [2522] = 2522, - [2523] = 2480, - [2524] = 2433, + [2523] = 2523, + [2524] = 2524, [2525] = 2525, - [2526] = 2488, - [2527] = 2450, + [2526] = 2523, + [2527] = 2049, [2528] = 2528, [2529] = 2529, [2530] = 2530, - [2531] = 2531, + [2531] = 2500, [2532] = 2532, [2533] = 2533, - [2534] = 2534, - [2535] = 2535, - [2536] = 2081, + [2534] = 145, + [2535] = 2525, + [2536] = 2536, [2537] = 2537, [2538] = 2538, - [2539] = 2529, + [2539] = 2539, [2540] = 2540, [2541] = 2541, - [2542] = 2537, + [2542] = 2542, [2543] = 2543, [2544] = 2544, [2545] = 2545, - [2546] = 2546, + [2546] = 2538, [2547] = 2547, [2548] = 2548, [2549] = 2549, [2550] = 2550, - [2551] = 2551, - [2552] = 2552, + [2551] = 2528, + [2552] = 2545, [2553] = 2553, - [2554] = 2552, - [2555] = 2555, + [2554] = 2513, + [2555] = 2514, [2556] = 2556, [2557] = 2557, [2558] = 2558, - [2559] = 2559, - [2560] = 2560, - [2561] = 2561, - [2562] = 2562, + [2559] = 2524, + [2560] = 2529, + [2561] = 2501, + [2562] = 2504, [2563] = 2563, [2564] = 2564, [2565] = 2565, @@ -6475,292 +6488,292 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2569] = 2569, [2570] = 2570, [2571] = 2571, - [2572] = 2531, - [2573] = 2533, - [2574] = 2548, - [2575] = 2575, - [2576] = 2576, - [2577] = 2563, - [2578] = 2571, + [2572] = 2572, + [2573] = 2573, + [2574] = 2570, + [2575] = 2572, + [2576] = 2573, + [2577] = 2572, + [2578] = 2578, [2579] = 2579, [2580] = 2580, - [2581] = 2531, - [2582] = 2533, - [2583] = 2534, - [2584] = 2535, - [2585] = 2538, - [2586] = 2529, - [2587] = 2540, - [2588] = 2544, - [2589] = 2545, - [2590] = 2550, - [2591] = 2553, - [2592] = 2579, - [2593] = 2579, + [2581] = 2581, + [2582] = 2582, + [2583] = 2549, + [2584] = 2536, + [2585] = 2564, + [2586] = 2567, + [2587] = 2498, + [2588] = 2588, + [2589] = 2589, + [2590] = 2590, + [2591] = 2532, + [2592] = 2548, + [2593] = 2556, [2594] = 2594, - [2595] = 2595, - [2596] = 2557, - [2597] = 2544, - [2598] = 2545, - [2599] = 2534, - [2600] = 2600, + [2595] = 2578, + [2596] = 2596, + [2597] = 2597, + [2598] = 2598, + [2599] = 2599, + [2600] = 2504, [2601] = 2601, - [2602] = 2548, - [2603] = 2546, - [2604] = 2535, - [2605] = 2568, - [2606] = 2563, + [2602] = 2579, + [2603] = 2603, + [2604] = 2530, + [2605] = 2511, + [2606] = 2573, [2607] = 2607, - [2608] = 2538, - [2609] = 2579, - [2610] = 2580, + [2608] = 2580, + [2609] = 2581, + [2610] = 2528, [2611] = 2611, - [2612] = 2612, - [2613] = 2533, - [2614] = 2529, - [2615] = 2540, - [2616] = 2544, - [2617] = 2545, - [2618] = 2550, - [2619] = 2553, - [2620] = 2550, - [2621] = 2621, - [2622] = 2580, - [2623] = 2579, - [2624] = 2529, - [2625] = 2566, - [2626] = 2550, - [2627] = 2553, - [2628] = 2071, - [2629] = 2629, - [2630] = 2630, - [2631] = 2631, - [2632] = 2567, - [2633] = 2633, - [2634] = 2634, - [2635] = 2562, - [2636] = 2540, - [2637] = 2550, - [2638] = 2553, - [2639] = 2552, - [2640] = 2640, - [2641] = 2553, - [2642] = 2541, - [2643] = 164, - [2644] = 2644, - [2645] = 2645, - [2646] = 2646, - [2647] = 2647, + [2612] = 2549, + [2613] = 2537, + [2614] = 2498, + [2615] = 2570, + [2616] = 2572, + [2617] = 2573, + [2618] = 2578, + [2619] = 2581, + [2620] = 2549, + [2621] = 2536, + [2622] = 2564, + [2623] = 2588, + [2624] = 2567, + [2625] = 2625, + [2626] = 2626, + [2627] = 2532, + [2628] = 2548, + [2629] = 2594, + [2630] = 2597, + [2631] = 2589, + [2632] = 2504, + [2633] = 2536, + [2634] = 2594, + [2635] = 2564, + [2636] = 2636, + [2637] = 2528, + [2638] = 2638, + [2639] = 2573, + [2640] = 2578, + [2641] = 2549, + [2642] = 2498, + [2643] = 2588, + [2644] = 2532, + [2645] = 2548, + [2646] = 2594, + [2647] = 2597, [2648] = 2648, - [2649] = 2580, - [2650] = 2565, + [2649] = 2649, + [2650] = 2650, [2651] = 2651, - [2652] = 2652, - [2653] = 2653, - [2654] = 2621, - [2655] = 2085, - [2656] = 2629, - [2657] = 2657, - [2658] = 2557, - [2659] = 2659, - [2660] = 2564, - [2661] = 2661, - [2662] = 2662, - [2663] = 2663, - [2664] = 2664, + [2652] = 2573, + [2653] = 2537, + [2654] = 2654, + [2655] = 2498, + [2656] = 2594, + [2657] = 2597, + [2658] = 173, + [2659] = 2567, + [2660] = 2498, + [2661] = 2596, + [2662] = 2597, + [2663] = 2594, + [2664] = 2597, [2665] = 2665, - [2666] = 2666, - [2667] = 2667, - [2668] = 2668, - [2669] = 2553, - [2670] = 2670, - [2671] = 2631, - [2672] = 2543, - [2673] = 2568, - [2674] = 2667, + [2666] = 2519, + [2667] = 2588, + [2668] = 2589, + [2669] = 2669, + [2670] = 2530, + [2671] = 2508, + [2672] = 2672, + [2673] = 2502, + [2674] = 2674, [2675] = 2675, - [2676] = 2676, + [2676] = 2520, [2677] = 2677, - [2678] = 2678, - [2679] = 2648, - [2680] = 2676, + [2678] = 2516, + [2679] = 2590, + [2680] = 2580, [2681] = 2681, - [2682] = 2682, + [2682] = 2570, [2683] = 2683, - [2684] = 2533, - [2685] = 2538, - [2686] = 2082, - [2687] = 2687, - [2688] = 2688, - [2689] = 2557, - [2690] = 2690, - [2691] = 2691, - [2692] = 2692, - [2693] = 2677, - [2694] = 2595, - [2695] = 2535, - [2696] = 2529, + [2684] = 2684, + [2685] = 2651, + [2686] = 2686, + [2687] = 2569, + [2688] = 2509, + [2689] = 2638, + [2690] = 2532, + [2691] = 2578, + [2692] = 2649, + [2693] = 2693, + [2694] = 2543, + [2695] = 2539, + [2696] = 2696, [2697] = 2697, - [2698] = 2544, - [2699] = 2699, - [2700] = 2700, - [2701] = 2661, - [2702] = 2702, - [2703] = 2551, - [2704] = 2704, - [2705] = 2705, - [2706] = 2561, - [2707] = 2560, - [2708] = 2576, - [2709] = 2601, - [2710] = 2083, - [2711] = 2683, - [2712] = 2664, - [2713] = 2662, - [2714] = 2700, - [2715] = 2550, - [2716] = 2716, - [2717] = 2565, - [2718] = 2718, - [2719] = 2545, - [2720] = 2720, - [2721] = 2640, - [2722] = 2607, - [2723] = 2562, - [2724] = 2563, - [2725] = 2718, - [2726] = 2571, - [2727] = 2558, - [2728] = 2579, - [2729] = 2718, - [2730] = 2730, - [2731] = 2546, - [2732] = 2675, - [2733] = 2565, - [2734] = 2580, - [2735] = 2068, - [2736] = 2640, - [2737] = 2676, - [2738] = 2565, + [2698] = 2698, + [2699] = 2696, + [2700] = 2697, + [2701] = 2579, + [2702] = 2548, + [2703] = 2603, + [2704] = 2607, + [2705] = 2556, + [2706] = 2582, + [2707] = 2672, + [2708] = 2665, + [2709] = 2709, + [2710] = 2710, + [2711] = 2594, + [2712] = 2530, + [2713] = 2511, + [2714] = 2674, + [2715] = 2715, + [2716] = 2596, + [2717] = 2590, + [2718] = 2530, + [2719] = 2674, + [2720] = 2597, + [2721] = 2581, + [2722] = 2541, + [2723] = 2625, + [2724] = 2674, + [2725] = 2683, + [2726] = 2698, + [2727] = 2686, + [2728] = 2728, + [2729] = 2558, + [2730] = 2499, + [2731] = 2728, + [2732] = 2513, + [2733] = 2514, + [2734] = 2542, + [2735] = 2588, + [2736] = 2736, + [2737] = 2737, + [2738] = 2738, [2739] = 2739, - [2740] = 2692, - [2741] = 2630, - [2742] = 2668, - [2743] = 2534, - [2744] = 2531, - [2745] = 2569, - [2746] = 2540, - [2747] = 2663, - [2748] = 2716, - [2749] = 2653, - [2750] = 2558, - [2751] = 2633, - [2752] = 2571, - [2753] = 2600, + [2740] = 2740, + [2741] = 2741, + [2742] = 2742, + [2743] = 2743, + [2744] = 2744, + [2745] = 2745, + [2746] = 2742, + [2747] = 2747, + [2748] = 2748, + [2749] = 2749, + [2750] = 2750, + [2751] = 2751, + [2752] = 2752, + [2753] = 2753, [2754] = 2754, - [2755] = 2575, - [2756] = 2690, - [2757] = 2541, - [2758] = 2561, - [2759] = 2537, - [2760] = 2678, - [2761] = 2657, - [2762] = 2568, - [2763] = 2659, + [2755] = 2755, + [2756] = 2756, + [2757] = 2757, + [2758] = 2758, + [2759] = 2759, + [2760] = 2760, + [2761] = 2761, + [2762] = 2762, + [2763] = 2763, [2764] = 2764, - [2765] = 2069, - [2766] = 161, - [2767] = 2704, - [2768] = 2699, - [2769] = 2070, - [2770] = 2705, - [2771] = 2640, + [2765] = 2109, + [2766] = 2766, + [2767] = 2767, + [2768] = 2768, + [2769] = 2769, + [2770] = 2739, + [2771] = 2771, [2772] = 2772, - [2773] = 2773, + [2773] = 2736, [2774] = 2774, - [2775] = 2144, - [2776] = 2776, + [2775] = 2775, + [2776] = 2116, [2777] = 2777, [2778] = 2778, [2779] = 2779, [2780] = 2780, [2781] = 2781, - [2782] = 2782, - [2783] = 2783, - [2784] = 2784, - [2785] = 2785, + [2782] = 2744, + [2783] = 2120, + [2784] = 2771, + [2785] = 2100, [2786] = 2786, - [2787] = 2126, - [2788] = 2788, + [2787] = 2769, + [2788] = 2121, [2789] = 2789, - [2790] = 2153, + [2790] = 2094, [2791] = 2791, [2792] = 2792, - [2793] = 2793, + [2793] = 2786, [2794] = 2794, [2795] = 2795, - [2796] = 2796, + [2796] = 2099, [2797] = 2797, [2798] = 2798, - [2799] = 2799, - [2800] = 2797, + [2799] = 2093, + [2800] = 2800, [2801] = 2801, - [2802] = 2802, + [2802] = 2095, [2803] = 2803, - [2804] = 2804, - [2805] = 174, - [2806] = 2803, + [2804] = 2098, + [2805] = 2805, + [2806] = 2102, [2807] = 2807, [2808] = 2808, - [2809] = 2129, - [2810] = 2796, - [2811] = 2811, - [2812] = 2137, + [2809] = 2809, + [2810] = 2111, + [2811] = 2132, + [2812] = 2110, [2813] = 2813, [2814] = 2814, - [2815] = 2815, - [2816] = 2816, - [2817] = 2149, + [2815] = 2087, + [2816] = 2089, + [2817] = 2817, [2818] = 2818, - [2819] = 2819, + [2819] = 2114, [2820] = 2820, [2821] = 2821, [2822] = 2822, [2823] = 2823, - [2824] = 384, - [2825] = 2825, + [2824] = 2824, + [2825] = 2126, [2826] = 2826, - [2827] = 2827, + [2827] = 2763, [2828] = 2828, - [2829] = 2829, + [2829] = 2789, [2830] = 2830, - [2831] = 2831, - [2832] = 2128, - [2833] = 2801, + [2831] = 2086, + [2832] = 2832, + [2833] = 2135, [2834] = 2834, - [2835] = 2807, + [2835] = 2835, [2836] = 2836, [2837] = 2837, - [2838] = 2808, + [2838] = 2777, [2839] = 2839, - [2840] = 2814, - [2841] = 2797, - [2842] = 2827, + [2840] = 2840, + [2841] = 2841, + [2842] = 2842, [2843] = 2843, - [2844] = 2836, + [2844] = 2844, [2845] = 2845, [2846] = 2846, - [2847] = 2786, + [2847] = 2847, [2848] = 2848, - [2849] = 2849, + [2849] = 412, [2850] = 2850, [2851] = 2851, [2852] = 2852, [2853] = 2853, - [2854] = 2107, + [2854] = 2840, [2855] = 2855, [2856] = 2856, - [2857] = 2857, + [2857] = 2830, [2858] = 2858, [2859] = 2859, [2860] = 2860, @@ -6769,807 +6782,765 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2863] = 2863, [2864] = 2864, [2865] = 2865, - [2866] = 2815, - [2867] = 2816, - [2868] = 2135, - [2869] = 2143, - [2870] = 2827, - [2871] = 2871, - [2872] = 2872, + [2866] = 2866, + [2867] = 2855, + [2868] = 2856, + [2869] = 2869, + [2870] = 2778, + [2871] = 2791, + [2872] = 2841, [2873] = 2873, - [2874] = 2786, - [2875] = 2807, + [2874] = 2842, + [2875] = 2875, [2876] = 2876, - [2877] = 2813, + [2877] = 2877, [2878] = 2878, - [2879] = 2879, + [2879] = 2103, [2880] = 2880, - [2881] = 2146, - [2882] = 2882, - [2883] = 2883, - [2884] = 2884, + [2881] = 2847, + [2882] = 2106, + [2883] = 2107, + [2884] = 2108, [2885] = 2885, - [2886] = 2886, - [2887] = 2887, - [2888] = 2888, - [2889] = 2889, + [2886] = 2779, + [2887] = 2844, + [2888] = 2762, + [2889] = 2764, [2890] = 2890, - [2891] = 2891, - [2892] = 2815, - [2893] = 2816, - [2894] = 2894, - [2895] = 2895, - [2896] = 2124, - [2897] = 2849, - [2898] = 2831, - [2899] = 2872, - [2900] = 2900, - [2901] = 2884, - [2902] = 2887, - [2903] = 2903, - [2904] = 2904, - [2905] = 2820, - [2906] = 2807, - [2907] = 2823, - [2908] = 2851, + [2891] = 2885, + [2892] = 2892, + [2893] = 2115, + [2894] = 2794, + [2895] = 2869, + [2896] = 2896, + [2897] = 2794, + [2898] = 2795, + [2899] = 2899, + [2900] = 2803, + [2901] = 2805, + [2902] = 2902, + [2903] = 2845, + [2904] = 2835, + [2905] = 2797, + [2906] = 2777, + [2907] = 2858, + [2908] = 2908, [2909] = 2909, - [2910] = 2910, - [2911] = 2774, - [2912] = 2781, + [2910] = 2869, + [2911] = 2859, + [2912] = 2741, [2913] = 2913, - [2914] = 2914, - [2915] = 2853, - [2916] = 2916, - [2917] = 2917, - [2918] = 2887, - [2919] = 2828, - [2920] = 2920, - [2921] = 2921, + [2914] = 2798, + [2915] = 2780, + [2916] = 2885, + [2917] = 2860, + [2918] = 2800, + [2919] = 2826, + [2920] = 2861, + [2921] = 2801, [2922] = 2922, [2923] = 2923, - [2924] = 2914, - [2925] = 2922, - [2926] = 2852, - [2927] = 2927, - [2928] = 2928, - [2929] = 2929, - [2930] = 2930, - [2931] = 2931, - [2932] = 2819, - [2933] = 2802, + [2924] = 2863, + [2925] = 2794, + [2926] = 2795, + [2927] = 2835, + [2928] = 2750, + [2929] = 2869, + [2930] = 2737, + [2931] = 2890, + [2932] = 2740, + [2933] = 2803, [2934] = 2934, - [2935] = 2111, - [2936] = 2936, - [2937] = 2864, - [2938] = 2927, - [2939] = 2931, + [2935] = 2753, + [2936] = 2805, + [2937] = 2937, + [2938] = 2846, + [2939] = 2939, [2940] = 2940, - [2941] = 2803, - [2942] = 2942, - [2943] = 2150, + [2941] = 2941, + [2942] = 2755, + [2943] = 2943, [2944] = 2944, - [2945] = 2945, - [2946] = 2783, - [2947] = 2103, - [2948] = 2920, - [2949] = 2104, - [2950] = 2856, - [2951] = 2113, + [2945] = 2896, + [2946] = 2946, + [2947] = 2947, + [2948] = 2948, + [2949] = 2835, + [2950] = 2890, + [2951] = 2951, [2952] = 2952, [2953] = 2953, - [2954] = 2114, - [2955] = 2785, - [2956] = 2106, + [2954] = 2864, + [2955] = 2865, + [2956] = 2956, [2957] = 2957, - [2958] = 2125, - [2959] = 2827, - [2960] = 2788, - [2961] = 2961, - [2962] = 2962, - [2963] = 2119, - [2964] = 2120, - [2965] = 2965, - [2966] = 2966, - [2967] = 2828, - [2968] = 2147, - [2969] = 2969, - [2970] = 2966, - [2971] = 2122, + [2958] = 2958, + [2959] = 2866, + [2960] = 2758, + [2961] = 2807, + [2962] = 2951, + [2963] = 2808, + [2964] = 2128, + [2965] = 2129, + [2966] = 2939, + [2967] = 2774, + [2968] = 2133, + [2969] = 2952, + [2970] = 2880, + [2971] = 2971, [2972] = 2972, - [2973] = 2115, + [2973] = 2973, [2974] = 2974, [2975] = 2975, - [2976] = 2976, - [2977] = 2977, - [2978] = 2780, - [2979] = 2979, - [2980] = 2858, - [2981] = 2116, + [2976] = 2134, + [2977] = 2136, + [2978] = 2978, + [2979] = 2813, + [2980] = 2814, + [2981] = 2760, [2982] = 2982, - [2983] = 2983, - [2984] = 2984, + [2983] = 2119, + [2984] = 2762, [2985] = 2985, - [2986] = 2986, + [2986] = 2817, [2987] = 2987, [2988] = 2988, - [2989] = 2826, - [2990] = 2990, + [2989] = 179, + [2990] = 2847, [2991] = 2991, [2992] = 2992, [2993] = 2993, - [2994] = 2994, + [2994] = 2869, [2995] = 2995, [2996] = 2996, - [2997] = 2975, - [2998] = 2976, - [2999] = 2837, - [3000] = 3000, - [3001] = 3001, - [3002] = 2891, - [3003] = 2105, - [3004] = 2876, + [2997] = 2885, + [2998] = 2818, + [2999] = 2999, + [3000] = 2948, + [3001] = 2091, + [3002] = 3002, + [3003] = 3003, + [3004] = 2764, [3005] = 3005, - [3006] = 2862, - [3007] = 3007, - [3008] = 3008, - [3009] = 3009, + [3006] = 2820, + [3007] = 2131, + [3008] = 2096, + [3009] = 2821, [3010] = 3010, [3011] = 3011, - [3012] = 3012, - [3013] = 2930, - [3014] = 2815, - [3015] = 2921, - [3016] = 2782, - [3017] = 2776, - [3018] = 2778, + [3012] = 2781, + [3013] = 3013, + [3014] = 2775, + [3015] = 2848, + [3016] = 2996, + [3017] = 3017, + [3018] = 3013, [3019] = 3019, - [3020] = 3020, - [3021] = 2871, - [3022] = 2873, - [3023] = 2816, - [3024] = 2117, - [3025] = 2865, - [3026] = 2886, - [3027] = 2910, - [3028] = 2786, - [3029] = 2131, - [3030] = 3030, - [3031] = 2934, - [3032] = 2944, - [3033] = 2132, - [3034] = 2782, - [3035] = 2953, - [3036] = 2883, - [3037] = 2889, - [3038] = 2982, - [3039] = 2138, - [3040] = 2139, - [3041] = 2983, - [3042] = 2141, - [3043] = 2142, - [3044] = 3005, + [3020] = 2992, + [3021] = 3021, + [3022] = 3022, + [3023] = 2766, + [3024] = 2993, + [3025] = 2873, + [3026] = 2738, + [3027] = 2823, + [3028] = 3022, + [3029] = 2097, + [3030] = 2795, + [3031] = 3031, + [3032] = 3032, + [3033] = 3033, + [3034] = 3034, + [3035] = 3035, + [3036] = 3036, + [3037] = 3037, + [3038] = 3038, + [3039] = 3039, + [3040] = 3040, + [3041] = 3041, + [3042] = 3042, + [3043] = 3043, + [3044] = 3044, [3045] = 3045, - [3046] = 2940, - [3047] = 2945, - [3048] = 2791, - [3049] = 2820, + [3046] = 3046, + [3047] = 3047, + [3048] = 3048, + [3049] = 3049, [3050] = 3050, - [3051] = 2807, + [3051] = 3051, [3052] = 3052, - [3053] = 2987, - [3054] = 2923, - [3055] = 2829, + [3053] = 3053, + [3054] = 3054, + [3055] = 3055, [3056] = 3056, - [3057] = 2972, - [3058] = 2888, + [3057] = 3057, + [3058] = 3058, [3059] = 3059, - [3060] = 2979, - [3061] = 2793, - [3062] = 2916, - [3063] = 2895, - [3064] = 2118, - [3065] = 2823, - [3066] = 2917, - [3067] = 2795, - [3068] = 3068, - [3069] = 2985, - [3070] = 2977, - [3071] = 3071, + [3060] = 3060, + [3061] = 3061, + [3062] = 3062, + [3063] = 3045, + [3064] = 3035, + [3065] = 3065, + [3066] = 3066, + [3067] = 3067, + [3068] = 3056, + [3069] = 3069, + [3070] = 3049, + [3071] = 3035, [3072] = 3072, - [3073] = 2952, - [3074] = 2860, + [3073] = 3073, + [3074] = 3038, [3075] = 3075, - [3076] = 3076, + [3076] = 3040, [3077] = 3077, - [3078] = 3078, + [3078] = 3041, [3079] = 3079, [3080] = 3080, [3081] = 3081, - [3082] = 3080, + [3082] = 3082, [3083] = 3083, [3084] = 3084, [3085] = 3085, - [3086] = 3086, - [3087] = 3087, + [3086] = 3084, + [3087] = 3033, [3088] = 3088, [3089] = 3089, - [3090] = 1496, + [3090] = 3090, [3091] = 3091, - [3092] = 3092, + [3092] = 3082, [3093] = 3093, [3094] = 3094, - [3095] = 3095, - [3096] = 3096, - [3097] = 3097, - [3098] = 3098, - [3099] = 3099, + [3095] = 3066, + [3096] = 3035, + [3097] = 3053, + [3098] = 3041, + [3099] = 3045, [3100] = 3100, - [3101] = 3101, - [3102] = 3102, - [3103] = 3102, + [3101] = 3046, + [3102] = 3047, + [3103] = 3046, [3104] = 3104, [3105] = 3105, - [3106] = 3106, - [3107] = 3080, + [3106] = 3047, + [3107] = 3056, [3108] = 3108, - [3109] = 3109, - [3110] = 3110, - [3111] = 3111, - [3112] = 3075, - [3113] = 3113, + [3109] = 3048, + [3110] = 3061, + [3111] = 3035, + [3112] = 3066, + [3113] = 3067, [3114] = 3114, - [3115] = 3076, - [3116] = 3116, - [3117] = 3117, - [3118] = 3118, - [3119] = 3102, + [3115] = 3115, + [3116] = 3072, + [3117] = 3050, + [3118] = 3048, + [3119] = 3119, [3120] = 3120, [3121] = 3121, [3122] = 3122, - [3123] = 3123, - [3124] = 3117, - [3125] = 3101, + [3123] = 3060, + [3124] = 3124, + [3125] = 3046, [3126] = 3126, [3127] = 3127, - [3128] = 3114, - [3129] = 3129, - [3130] = 3130, + [3128] = 3073, + [3129] = 3041, + [3130] = 3041, [3131] = 3131, - [3132] = 3080, - [3133] = 3117, - [3134] = 3086, - [3135] = 3123, + [3132] = 3047, + [3133] = 3056, + [3134] = 3002, + [3135] = 3019, [3136] = 3136, - [3137] = 3092, - [3138] = 3093, - [3139] = 3139, - [3140] = 3101, + [3137] = 3035, + [3138] = 3066, + [3139] = 3067, + [3140] = 3140, [3141] = 3141, [3142] = 3142, - [3143] = 3105, - [3144] = 3144, - [3145] = 3080, - [3146] = 3109, - [3147] = 3110, + [3143] = 3143, + [3144] = 3056, + [3145] = 3031, + [3146] = 3085, + [3147] = 3147, [3148] = 3148, [3149] = 3149, - [3150] = 1455, - [3151] = 1457, - [3152] = 3152, - [3153] = 3153, - [3154] = 3154, + [3150] = 3047, + [3151] = 3047, + [3152] = 3035, + [3153] = 3066, + [3154] = 3067, [3155] = 3155, [3156] = 3156, [3157] = 3157, [3158] = 3158, - [3159] = 3159, - [3160] = 3160, - [3161] = 3104, - [3162] = 3085, - [3163] = 3094, - [3164] = 3086, - [3165] = 3076, - [3166] = 3166, - [3167] = 3167, - [3168] = 3168, + [3159] = 3036, + [3160] = 3089, + [3161] = 3148, + [3162] = 3162, + [3163] = 3060, + [3164] = 3047, + [3165] = 3035, + [3166] = 3066, + [3167] = 3067, + [3168] = 3038, [3169] = 3169, - [3170] = 3093, - [3171] = 3101, - [3172] = 3080, - [3173] = 3098, - [3174] = 3109, - [3175] = 3110, - [3176] = 3176, - [3177] = 3123, - [3178] = 3178, - [3179] = 3179, - [3180] = 3180, - [3181] = 3156, - [3182] = 3157, - [3183] = 3158, - [3184] = 3159, - [3185] = 3185, - [3186] = 3186, - [3187] = 3079, - [3188] = 3188, - [3189] = 3093, + [3170] = 3065, + [3171] = 3061, + [3172] = 3172, + [3173] = 3047, + [3174] = 3035, + [3175] = 3066, + [3176] = 3067, + [3177] = 3047, + [3178] = 3066, + [3179] = 3067, + [3180] = 3047, + [3181] = 3066, + [3182] = 3067, + [3183] = 3047, + [3184] = 3066, + [3185] = 3067, + [3186] = 3047, + [3187] = 3136, + [3188] = 3067, + [3189] = 3062, [3190] = 3190, - [3191] = 3080, - [3192] = 3109, - [3193] = 3110, - [3194] = 3194, - [3195] = 3195, - [3196] = 1385, - [3197] = 1382, + [3191] = 3191, + [3192] = 3192, + [3193] = 3193, + [3194] = 3067, + [3195] = 3031, + [3196] = 3196, + [3197] = 3048, [3198] = 3198, - [3199] = 3084, - [3200] = 3200, + [3199] = 3199, + [3200] = 3040, [3201] = 3201, - [3202] = 3202, - [3203] = 3080, - [3204] = 3091, - [3205] = 3093, - [3206] = 3080, - [3207] = 3109, - [3208] = 3110, - [3209] = 3093, - [3210] = 3093, - [3211] = 3080, - [3212] = 3109, - [3213] = 3110, - [3214] = 3093, - [3215] = 3109, - [3216] = 3110, - [3217] = 3093, - [3218] = 3109, - [3219] = 3110, - [3220] = 3093, - [3221] = 3109, - [3222] = 3110, - [3223] = 3093, - [3224] = 3109, - [3225] = 3110, - [3226] = 3202, + [3202] = 3043, + [3203] = 3115, + [3204] = 3035, + [3205] = 3149, + [3206] = 3050, + [3207] = 3079, + [3208] = 3061, + [3209] = 3155, + [3210] = 3210, + [3211] = 3062, + [3212] = 3158, + [3213] = 3105, + [3214] = 3214, + [3215] = 3215, + [3216] = 3083, + [3217] = 3217, + [3218] = 3218, + [3219] = 3034, + [3220] = 3035, + [3221] = 3044, + [3222] = 3075, + [3223] = 3081, + [3224] = 3147, + [3225] = 3225, + [3226] = 3210, [3227] = 3227, - [3228] = 3228, - [3229] = 3166, - [3230] = 3230, + [3228] = 3066, + [3229] = 3229, + [3230] = 3067, [3231] = 3231, [3232] = 3232, - [3233] = 3233, - [3234] = 3084, - [3235] = 3144, + [3233] = 3057, + [3234] = 3120, + [3235] = 3235, [3236] = 3236, [3237] = 3237, - [3238] = 3094, - [3239] = 3239, - [3240] = 3086, - [3241] = 3167, - [3242] = 3168, + [3238] = 3238, + [3239] = 3035, + [3240] = 3240, + [3241] = 3241, + [3242] = 3242, [3243] = 3243, - [3244] = 3120, - [3245] = 3245, - [3246] = 3139, - [3247] = 3247, + [3244] = 3244, + [3245] = 1408, + [3246] = 3108, + [3247] = 3172, [3248] = 3248, - [3249] = 3180, - [3250] = 3091, - [3251] = 3092, - [3252] = 3092, - [3253] = 3087, - [3254] = 3122, - [3255] = 3093, + [3249] = 3249, + [3250] = 3157, + [3251] = 3198, + [3252] = 3032, + [3253] = 3072, + [3254] = 3039, + [3255] = 3073, [3256] = 3256, [3257] = 3257, - [3258] = 3094, - [3259] = 3259, - [3260] = 3080, - [3261] = 3176, - [3262] = 3230, - [3263] = 3233, - [3264] = 3247, - [3265] = 3259, - [3266] = 3096, - [3267] = 3121, - [3268] = 3129, + [3258] = 3031, + [3259] = 3190, + [3260] = 3065, + [3261] = 3198, + [3262] = 3079, + [3263] = 3191, + [3264] = 3235, + [3265] = 3265, + [3266] = 3236, + [3267] = 3267, + [3268] = 3051, [3269] = 3269, - [3270] = 3179, + [3270] = 1441, [3271] = 3271, - [3272] = 3185, - [3273] = 3239, - [3274] = 3096, - [3275] = 3275, - [3276] = 3276, - [3277] = 3277, - [3278] = 3126, - [3279] = 3153, - [3280] = 3280, - [3281] = 3281, - [3282] = 2878, - [3283] = 3178, - [3284] = 3097, - [3285] = 3077, - [3286] = 2880, - [3287] = 3287, - [3288] = 3280, - [3289] = 3100, - [3290] = 3101, - [3291] = 3088, - [3292] = 3079, - [3293] = 3293, - [3294] = 3294, - [3295] = 3109, + [3272] = 3218, + [3273] = 3069, + [3274] = 3126, + [3275] = 3031, + [3276] = 3232, + [3277] = 3077, + [3278] = 3042, + [3279] = 3279, + [3280] = 1402, + [3281] = 3080, + [3282] = 1403, + [3283] = 3127, + [3284] = 3084, + [3285] = 3237, + [3286] = 3243, + [3287] = 3088, + [3288] = 3288, + [3289] = 3238, + [3290] = 3196, + [3291] = 3054, + [3292] = 3124, + [3293] = 3227, + [3294] = 3241, + [3295] = 3122, [3296] = 3296, - [3297] = 3297, - [3298] = 3298, - [3299] = 3299, - [3300] = 3300, - [3301] = 3276, - [3302] = 3281, - [3303] = 3110, - [3304] = 3104, - [3305] = 3144, - [3306] = 3188, - [3307] = 3239, - [3308] = 3105, - [3309] = 3106, - [3310] = 3310, - [3311] = 3139, - [3312] = 3105, - [3313] = 3106, - [3314] = 3231, + [3297] = 3033, + [3298] = 3265, + [3299] = 3201, + [3300] = 3055, + [3301] = 3288, + [3302] = 3077, + [3303] = 3080, + [3304] = 3201, + [3305] = 3080, + [3306] = 3201, + [3307] = 3131, + [3308] = 3091, + [3309] = 3140, + [3310] = 3104, + [3311] = 3141, + [3312] = 1407, + [3313] = 3296, + [3314] = 3066, [3315] = 3315, - [3316] = 3194, - [3317] = 3275, - [3318] = 3086, - [3319] = 3144, - [3320] = 3237, - [3321] = 3195, - [3322] = 3144, - [3323] = 3243, - [3324] = 3200, - [3325] = 3154, + [3316] = 3316, + [3317] = 3317, + [3318] = 3318, + [3319] = 3319, + [3320] = 3320, + [3321] = 3321, + [3322] = 3322, + [3323] = 3323, + [3324] = 3324, + [3325] = 3325, [3326] = 3326, - [3327] = 3294, - [3328] = 3296, - [3329] = 3186, - [3330] = 3080, - [3331] = 3081, + [3327] = 3327, + [3328] = 3328, + [3329] = 3329, + [3330] = 3330, + [3331] = 3331, [3332] = 3332, [3333] = 3333, - [3334] = 3109, - [3335] = 3083, - [3336] = 3131, - [3337] = 3110, - [3338] = 3277, - [3339] = 3271, - [3340] = 3142, - [3341] = 3227, - [3342] = 3136, - [3343] = 3326, - [3344] = 3149, - [3345] = 3200, - [3346] = 3326, - [3347] = 3136, - [3348] = 3326, - [3349] = 3136, - [3350] = 3113, + [3334] = 3334, + [3335] = 3335, + [3336] = 3336, + [3337] = 3337, + [3338] = 3338, + [3339] = 3339, + [3340] = 3340, + [3341] = 3324, + [3342] = 3342, + [3343] = 3343, + [3344] = 3344, + [3345] = 3345, + [3346] = 3346, + [3347] = 3347, + [3348] = 3348, + [3349] = 3349, + [3350] = 3350, [3351] = 3351, - [3352] = 3333, - [3353] = 3198, - [3354] = 3114, - [3355] = 3310, - [3356] = 3155, + [3352] = 3352, + [3353] = 3353, + [3354] = 3354, + [3355] = 3355, + [3356] = 3356, [3357] = 3357, - [3358] = 3358, - [3359] = 3359, - [3360] = 3360, + [3358] = 3316, + [3359] = 3330, + [3360] = 3336, [3361] = 3361, [3362] = 3362, [3363] = 3363, - [3364] = 3362, - [3365] = 3365, - [3366] = 3366, + [3364] = 3364, + [3365] = 168, + [3366] = 197, [3367] = 3367, [3368] = 3368, [3369] = 3369, [3370] = 3370, [3371] = 3371, [3372] = 3372, - [3373] = 3368, + [3373] = 3340, [3374] = 3374, [3375] = 3375, [3376] = 3376, - [3377] = 3377, + [3377] = 3333, [3378] = 3378, [3379] = 3379, [3380] = 3380, - [3381] = 3381, - [3382] = 3382, + [3381] = 3322, + [3382] = 3362, [3383] = 3383, - [3384] = 3366, - [3385] = 3382, + [3384] = 3384, + [3385] = 3338, [3386] = 3386, - [3387] = 3357, + [3387] = 3387, [3388] = 3388, - [3389] = 3389, + [3389] = 3326, [3390] = 3390, [3391] = 3391, [3392] = 3392, [3393] = 3393, [3394] = 3394, [3395] = 3395, - [3396] = 3396, + [3396] = 3345, [3397] = 3397, - [3398] = 3398, + [3398] = 3352, [3399] = 3399, - [3400] = 3400, + [3400] = 3391, [3401] = 3401, - [3402] = 3402, + [3402] = 3378, [3403] = 3403, [3404] = 3404, - [3405] = 3397, + [3405] = 3405, [3406] = 3406, [3407] = 3407, - [3408] = 3395, + [3408] = 3408, [3409] = 3409, [3410] = 3410, - [3411] = 3394, + [3411] = 3411, [3412] = 3412, - [3413] = 3413, + [3413] = 3340, [3414] = 3414, [3415] = 3369, - [3416] = 3416, - [3417] = 3417, - [3418] = 3418, - [3419] = 3361, - [3420] = 157, - [3421] = 3365, + [3416] = 3325, + [3417] = 3342, + [3418] = 3380, + [3419] = 3334, + [3420] = 3319, + [3421] = 3421, [3422] = 3422, - [3423] = 3357, - [3424] = 3424, + [3423] = 3423, + [3424] = 3386, [3425] = 3425, [3426] = 3370, [3427] = 3427, [3428] = 3428, - [3429] = 3424, - [3430] = 3428, + [3429] = 3429, + [3430] = 3430, [3431] = 3431, [3432] = 3432, - [3433] = 3433, - [3434] = 3434, - [3435] = 3435, + [3433] = 3340, + [3434] = 3353, + [3435] = 3392, [3436] = 3436, - [3437] = 3386, - [3438] = 3403, - [3439] = 3390, - [3440] = 3390, - [3441] = 3441, - [3442] = 3366, - [3443] = 3443, - [3444] = 3398, + [3437] = 3322, + [3438] = 3438, + [3439] = 3350, + [3440] = 3362, + [3441] = 3384, + [3442] = 3442, + [3443] = 3339, + [3444] = 3318, [3445] = 3445, - [3446] = 3446, - [3447] = 3416, - [3448] = 3417, - [3449] = 3449, + [3446] = 3324, + [3447] = 3447, + [3448] = 3354, + [3449] = 3410, [3450] = 3450, - [3451] = 3451, - [3452] = 3407, - [3453] = 3375, - [3454] = 3433, - [3455] = 3455, - [3456] = 3403, + [3451] = 3450, + [3452] = 3344, + [3453] = 3453, + [3454] = 3352, + [3455] = 3372, + [3456] = 3428, [3457] = 3457, - [3458] = 3363, - [3459] = 3393, + [3458] = 3399, + [3459] = 3459, [3460] = 3460, - [3461] = 3399, - [3462] = 3462, - [3463] = 3463, - [3464] = 3449, + [3461] = 3461, + [3462] = 3460, + [3463] = 3386, + [3464] = 3464, [3465] = 3465, [3466] = 3466, - [3467] = 3467, - [3468] = 3409, - [3469] = 3469, - [3470] = 3400, - [3471] = 3471, - [3472] = 3376, - [3473] = 3412, - [3474] = 3425, - [3475] = 3428, + [3467] = 3320, + [3468] = 3468, + [3469] = 3343, + [3470] = 3362, + [3471] = 3421, + [3472] = 3326, + [3473] = 3328, + [3474] = 3315, + [3475] = 3321, [3476] = 3476, - [3477] = 3477, + [3477] = 3336, [3478] = 3478, - [3479] = 3479, - [3480] = 3480, - [3481] = 3396, + [3479] = 3340, + [3480] = 3459, + [3481] = 3324, [3482] = 3482, - [3483] = 3483, + [3483] = 3344, [3484] = 3484, [3485] = 3485, - [3486] = 3486, - [3487] = 3357, - [3488] = 3465, - [3489] = 3489, + [3486] = 3354, + [3487] = 3324, + [3488] = 3393, + [3489] = 3372, [3490] = 3490, - [3491] = 3478, - [3492] = 3492, - [3493] = 3493, - [3494] = 3418, - [3495] = 3467, + [3491] = 3374, + [3492] = 3375, + [3493] = 3436, + [3494] = 3333, + [3495] = 3495, [3496] = 3496, - [3497] = 3428, - [3498] = 3498, + [3497] = 3497, + [3498] = 3352, [3499] = 3499, [3500] = 3500, - [3501] = 3371, - [3502] = 3367, - [3503] = 3489, - [3504] = 3422, - [3505] = 3401, + [3501] = 3387, + [3502] = 3502, + [3503] = 3468, + [3504] = 3484, + [3505] = 3394, [3506] = 3506, - [3507] = 3507, - [3508] = 3508, - [3509] = 3509, - [3510] = 3486, - [3511] = 3403, + [3507] = 3328, + [3508] = 3403, + [3509] = 3411, + [3510] = 3336, + [3511] = 3379, [3512] = 3512, - [3513] = 3360, - [3514] = 3368, - [3515] = 3370, - [3516] = 3516, - [3517] = 3517, - [3518] = 3518, - [3519] = 3378, + [3513] = 3344, + [3514] = 3497, + [3515] = 3502, + [3516] = 3368, + [3517] = 3374, + [3518] = 3333, + [3519] = 3375, [3520] = 3520, - [3521] = 3521, - [3522] = 3450, - [3523] = 3388, - [3524] = 3391, - [3525] = 3382, - [3526] = 3526, - [3527] = 3395, - [3528] = 3528, - [3529] = 3433, - [3530] = 3413, - [3531] = 3357, - [3532] = 3369, - [3533] = 3416, - [3534] = 3534, - [3535] = 3418, - [3536] = 3536, - [3537] = 3537, - [3538] = 3538, - [3539] = 3539, - [3540] = 3390, - [3541] = 3476, - [3542] = 3477, + [3521] = 3397, + [3522] = 3522, + [3523] = 3468, + [3524] = 3336, + [3525] = 3525, + [3526] = 3344, + [3527] = 3333, + [3528] = 3468, + [3529] = 3336, + [3530] = 3344, + [3531] = 3333, + [3532] = 3336, + [3533] = 3344, + [3534] = 3333, + [3535] = 3336, + [3536] = 3336, + [3537] = 3336, + [3538] = 3336, + [3539] = 3336, + [3540] = 3540, + [3541] = 3541, + [3542] = 3372, [3543] = 3543, - [3544] = 3486, + [3544] = 3408, [3545] = 3545, - [3546] = 3409, - [3547] = 3547, - [3548] = 3370, - [3549] = 3383, - [3550] = 3534, - [3551] = 3378, - [3552] = 3552, - [3553] = 3382, - [3554] = 3554, - [3555] = 3469, - [3556] = 3556, - [3557] = 3369, - [3558] = 3418, - [3559] = 3559, - [3560] = 3509, - [3561] = 3479, - [3562] = 3516, - [3563] = 3486, - [3564] = 3378, - [3565] = 3401, - [3566] = 3382, - [3567] = 3567, - [3568] = 3418, - [3569] = 3486, - [3570] = 3378, - [3571] = 3382, - [3572] = 3418, - [3573] = 3378, - [3574] = 3382, - [3575] = 3418, - [3576] = 3378, - [3577] = 3378, - [3578] = 3378, - [3579] = 3378, - [3580] = 3378, - [3581] = 3463, - [3582] = 3582, - [3583] = 3451, - [3584] = 3482, - [3585] = 3359, - [3586] = 3498, - [3587] = 3410, - [3588] = 3588, - [3589] = 3589, - [3590] = 3521, - [3591] = 3378, - [3592] = 3445, - [3593] = 3593, - [3594] = 3539, - [3595] = 3567, - [3596] = 3596, - [3597] = 3507, + [3546] = 3506, + [3547] = 3522, + [3548] = 3323, + [3549] = 3549, + [3550] = 3337, + [3551] = 3551, + [3552] = 3404, + [3553] = 3500, + [3554] = 3325, + [3555] = 3356, + [3556] = 3361, + [3557] = 3338, + [3558] = 3558, + [3559] = 3485, + [3560] = 3412, + [3561] = 3561, + [3562] = 3409, + [3563] = 3563, + [3564] = 3351, + [3565] = 3395, + [3566] = 3340, + [3567] = 3327, + [3568] = 3337, + [3569] = 3357, + [3570] = 3368, + [3571] = 3374, + [3572] = 3572, + [3573] = 3478, + [3574] = 3425, + [3575] = 3468, + [3576] = 3338, + [3577] = 3337, + [3578] = 3430, + [3579] = 3563, + [3580] = 3580, + [3581] = 3399, + [3582] = 3355, + [3583] = 3545, + [3584] = 3543, + [3585] = 3543, + [3586] = 3408, + [3587] = 3506, + [3588] = 3522, + [3589] = 3540, + [3590] = 3332, + [3591] = 3543, + [3592] = 3522, + [3593] = 3349, + [3594] = 3551, + [3595] = 3522, + [3596] = 3522, + [3597] = 3522, [3598] = 3598, - [3599] = 3377, - [3600] = 3589, - [3601] = 3432, - [3602] = 3602, - [3603] = 3603, - [3604] = 3604, - [3605] = 3520, - [3606] = 3604, - [3607] = 3543, - [3608] = 3512, - [3609] = 3609, - [3610] = 3610, - [3611] = 3536, - [3612] = 3377, - [3613] = 3508, - [3614] = 3413, - [3615] = 3403, - [3616] = 3403, - [3617] = 3617, + [3599] = 3499, + [3600] = 3328, + [3601] = 3601, + [3602] = 3520, + [3603] = 3549, + [3604] = 3406, + [3605] = 3317, + [3606] = 3371, + [3607] = 3607, + [3608] = 3447, + [3609] = 3329, + [3610] = 3429, + [3611] = 3468, + [3612] = 3383, + [3613] = 3407, + [3614] = 3614, + [3615] = 3346, + [3616] = 3616, + [3617] = 3342, [3618] = 3618, - [3619] = 160, - [3620] = 3559, - [3621] = 3479, - [3622] = 3617, + [3619] = 3619, + [3620] = 3620, + [3621] = 3621, + [3622] = 3622, [3623] = 3623, - [3624] = 3435, - [3625] = 3547, - [3626] = 3359, - [3627] = 3498, - [3628] = 3588, - [3629] = 3589, - [3630] = 3630, - [3631] = 3366, - [3632] = 3359, - [3633] = 3589, - [3634] = 3618, - [3635] = 3518, - [3636] = 3589, - [3637] = 3589, - [3638] = 3589, - [3639] = 3377, - [3640] = 3623, - [3641] = 3641, - [3642] = 3392, - [3643] = 3446, - [3644] = 3644, - [3645] = 3374, - [3646] = 3462, - [3647] = 3499, - [3648] = 3528, - [3649] = 3460, - [3650] = 3413, - [3651] = 3554, - [3652] = 3436, - [3653] = 3588, - [3654] = 3538, - [3655] = 3486, - [3656] = 3512, - [3657] = 3484, - [3658] = 3537, - [3659] = 3383, - [3660] = 3660, - [3661] = 3661, - [3662] = 3662, - [3663] = 3663, - [3664] = 3664, - [3665] = 3665, - [3666] = 3666, + [3624] = 3624, }; const TSCharacterRange sym_identifier_character_set_1[] = { @@ -8286,7 +8257,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 144, '(', 75, ')', 76, - '*', 91, '+', 89, ',', 139, '.', 30, @@ -8339,7 +8309,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 96, '.', 133, '/', 98, - ':', 82, ';', 73, '<', 129, '=', 122, @@ -8479,6 +8448,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 144, '(', 75, ')', 76, + '*', 91, '+', 89, ',', 139, '-', 42, @@ -10229,23 +10199,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [81] = {.lex_state = 2, .external_lex_state = 2}, [82] = {.lex_state = 2, .external_lex_state = 2}, [83] = {.lex_state = 2, .external_lex_state = 2}, - [84] = {.lex_state = 4, .external_lex_state = 2}, - [85] = {.lex_state = 2, .external_lex_state = 2}, - [86] = {.lex_state = 2, .external_lex_state = 2}, - [87] = {.lex_state = 2, .external_lex_state = 2}, + [84] = {.lex_state = 2, .external_lex_state = 2}, + [85] = {.lex_state = 4, .external_lex_state = 2}, + [86] = {.lex_state = 4, .external_lex_state = 2}, + [87] = {.lex_state = 4, .external_lex_state = 2}, [88] = {.lex_state = 4, .external_lex_state = 2}, - [89] = {.lex_state = 4, .external_lex_state = 2}, - [90] = {.lex_state = 4, .external_lex_state = 2}, - [91] = {.lex_state = 4, .external_lex_state = 2}, + [89] = {.lex_state = 2, .external_lex_state = 2}, + [90] = {.lex_state = 2, .external_lex_state = 2}, + [91] = {.lex_state = 2, .external_lex_state = 2}, [92] = {.lex_state = 4, .external_lex_state = 2}, [93] = {.lex_state = 4, .external_lex_state = 2}, - [94] = {.lex_state = 2, .external_lex_state = 2}, - [95] = {.lex_state = 4, .external_lex_state = 2}, - [96] = {.lex_state = 4, .external_lex_state = 2}, - [97] = {.lex_state = 4, .external_lex_state = 2}, + [94] = {.lex_state = 4, .external_lex_state = 2}, + [95] = {.lex_state = 2, .external_lex_state = 2}, + [96] = {.lex_state = 2, .external_lex_state = 2}, + [97] = {.lex_state = 2, .external_lex_state = 2}, [98] = {.lex_state = 2, .external_lex_state = 2}, [99] = {.lex_state = 2, .external_lex_state = 2}, - [100] = {.lex_state = 2, .external_lex_state = 2}, + [100] = {.lex_state = 4, .external_lex_state = 2}, [101] = {.lex_state = 2, .external_lex_state = 2}, [102] = {.lex_state = 2, .external_lex_state = 2}, [103] = {.lex_state = 2, .external_lex_state = 2}, @@ -10253,11 +10223,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [105] = {.lex_state = 4, .external_lex_state = 2}, [106] = {.lex_state = 4, .external_lex_state = 2}, [107] = {.lex_state = 4, .external_lex_state = 2}, - [108] = {.lex_state = 2, .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}, [111] = {.lex_state = 4, .external_lex_state = 2}, - [112] = {.lex_state = 2, .external_lex_state = 2}, + [112] = {.lex_state = 4, .external_lex_state = 2}, [113] = {.lex_state = 4, .external_lex_state = 2}, [114] = {.lex_state = 4, .external_lex_state = 2}, [115] = {.lex_state = 4, .external_lex_state = 2}, @@ -10281,117 +10251,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [133] = {.lex_state = 2, .external_lex_state = 2}, [134] = {.lex_state = 11, .external_lex_state = 2}, [135] = {.lex_state = 11, .external_lex_state = 2}, - [136] = {.lex_state = 2, .external_lex_state = 2}, - [137] = {.lex_state = 2, .external_lex_state = 2}, + [136] = {.lex_state = 11, .external_lex_state = 2}, + [137] = {.lex_state = 11, .external_lex_state = 2}, [138] = {.lex_state = 11, .external_lex_state = 2}, [139] = {.lex_state = 11, .external_lex_state = 2}, [140] = {.lex_state = 2, .external_lex_state = 2}, - [141] = {.lex_state = 11, .external_lex_state = 2}, + [141] = {.lex_state = 2, .external_lex_state = 2}, [142] = {.lex_state = 11, .external_lex_state = 2}, - [143] = {.lex_state = 11, .external_lex_state = 2}, + [143] = {.lex_state = 2, .external_lex_state = 2}, [144] = {.lex_state = 11, .external_lex_state = 2}, - [145] = {.lex_state = 11, .external_lex_state = 2}, + [145] = {.lex_state = 2, .external_lex_state = 2}, [146] = {.lex_state = 11, .external_lex_state = 2}, [147] = {.lex_state = 2, .external_lex_state = 2}, - [148] = {.lex_state = 2, .external_lex_state = 2}, + [148] = {.lex_state = 11, .external_lex_state = 2}, [149] = {.lex_state = 11, .external_lex_state = 2}, - [150] = {.lex_state = 11, .external_lex_state = 2}, + [150] = {.lex_state = 2, .external_lex_state = 2}, [151] = {.lex_state = 11, .external_lex_state = 2}, [152] = {.lex_state = 2, .external_lex_state = 2}, - [153] = {.lex_state = 11, .external_lex_state = 2}, - [154] = {.lex_state = 11, .external_lex_state = 2}, - [155] = {.lex_state = 11, .external_lex_state = 2}, - [156] = {.lex_state = 2, .external_lex_state = 2}, - [157] = {.lex_state = 2, .external_lex_state = 2}, + [153] = {.lex_state = 2, .external_lex_state = 2}, + [154] = {.lex_state = 2, .external_lex_state = 2}, + [155] = {.lex_state = 2, .external_lex_state = 2}, + [156] = {.lex_state = 11, .external_lex_state = 2}, + [157] = {.lex_state = 4, .external_lex_state = 2}, [158] = {.lex_state = 11, .external_lex_state = 2}, - [159] = {.lex_state = 2, .external_lex_state = 2}, - [160] = {.lex_state = 2, .external_lex_state = 2}, - [161] = {.lex_state = 2, .external_lex_state = 2}, + [159] = {.lex_state = 11, .external_lex_state = 2}, + [160] = {.lex_state = 11, .external_lex_state = 2}, + [161] = {.lex_state = 11, .external_lex_state = 2}, [162] = {.lex_state = 11, .external_lex_state = 2}, [163] = {.lex_state = 11, .external_lex_state = 2}, - [164] = {.lex_state = 2, .external_lex_state = 2}, - [165] = {.lex_state = 2, .external_lex_state = 2}, + [164] = {.lex_state = 11, .external_lex_state = 2}, + [165] = {.lex_state = 11, .external_lex_state = 2}, [166] = {.lex_state = 11, .external_lex_state = 2}, - [167] = {.lex_state = 11, .external_lex_state = 2}, + [167] = {.lex_state = 2, .external_lex_state = 2}, [168] = {.lex_state = 2, .external_lex_state = 2}, - [169] = {.lex_state = 2, .external_lex_state = 2}, + [169] = {.lex_state = 11, .external_lex_state = 2}, [170] = {.lex_state = 11, .external_lex_state = 2}, - [171] = {.lex_state = 11, .external_lex_state = 2}, - [172] = {.lex_state = 11, .external_lex_state = 2}, + [171] = {.lex_state = 2, .external_lex_state = 2}, + [172] = {.lex_state = 2, .external_lex_state = 2}, [173] = {.lex_state = 2, .external_lex_state = 2}, [174] = {.lex_state = 2, .external_lex_state = 2}, [175] = {.lex_state = 2, .external_lex_state = 2}, - [176] = {.lex_state = 11, .external_lex_state = 2}, - [177] = {.lex_state = 2, .external_lex_state = 2}, + [176] = {.lex_state = 2, .external_lex_state = 2}, + [177] = {.lex_state = 11, .external_lex_state = 2}, [178] = {.lex_state = 11, .external_lex_state = 2}, [179] = {.lex_state = 2, .external_lex_state = 2}, - [180] = {.lex_state = 2, .external_lex_state = 2}, + [180] = {.lex_state = 4, .external_lex_state = 2}, [181] = {.lex_state = 2, .external_lex_state = 2}, - [182] = {.lex_state = 4, .external_lex_state = 2}, + [182] = {.lex_state = 11, .external_lex_state = 2}, [183] = {.lex_state = 2, .external_lex_state = 2}, - [184] = {.lex_state = 4, .external_lex_state = 2}, + [184] = {.lex_state = 11, .external_lex_state = 2}, [185] = {.lex_state = 11, .external_lex_state = 2}, [186] = {.lex_state = 2, .external_lex_state = 2}, - [187] = {.lex_state = 11, .external_lex_state = 2}, + [187] = {.lex_state = 2, .external_lex_state = 2}, [188] = {.lex_state = 11, .external_lex_state = 2}, - [189] = {.lex_state = 2, .external_lex_state = 2}, - [190] = {.lex_state = 11, .external_lex_state = 2}, + [189] = {.lex_state = 11, .external_lex_state = 2}, + [190] = {.lex_state = 2, .external_lex_state = 2}, [191] = {.lex_state = 11, .external_lex_state = 2}, [192] = {.lex_state = 11, .external_lex_state = 2}, [193] = {.lex_state = 11, .external_lex_state = 2}, [194] = {.lex_state = 11, .external_lex_state = 2}, [195] = {.lex_state = 11, .external_lex_state = 2}, [196] = {.lex_state = 11, .external_lex_state = 2}, - [197] = {.lex_state = 11, .external_lex_state = 2}, + [197] = {.lex_state = 2, .external_lex_state = 2}, [198] = {.lex_state = 4, .external_lex_state = 2}, - [199] = {.lex_state = 4, .external_lex_state = 2}, + [199] = {.lex_state = 11, .external_lex_state = 2}, [200] = {.lex_state = 4, .external_lex_state = 2}, [201] = {.lex_state = 11, .external_lex_state = 2}, - [202] = {.lex_state = 11, .external_lex_state = 2}, - [203] = {.lex_state = 11, .external_lex_state = 2}, - [204] = {.lex_state = 11, .external_lex_state = 2}, + [202] = {.lex_state = 4, .external_lex_state = 2}, + [203] = {.lex_state = 4, .external_lex_state = 2}, + [204] = {.lex_state = 4, .external_lex_state = 2}, [205] = {.lex_state = 4, .external_lex_state = 2}, [206] = {.lex_state = 4, .external_lex_state = 2}, [207] = {.lex_state = 4, .external_lex_state = 2}, - [208] = {.lex_state = 4, .external_lex_state = 2}, + [208] = {.lex_state = 11, .external_lex_state = 2}, [209] = {.lex_state = 4, .external_lex_state = 2}, - [210] = {.lex_state = 4, .external_lex_state = 2}, - [211] = {.lex_state = 4, .external_lex_state = 2}, - [212] = {.lex_state = 11, .external_lex_state = 2}, + [210] = {.lex_state = 11, .external_lex_state = 2}, + [211] = {.lex_state = 11, .external_lex_state = 2}, + [212] = {.lex_state = 4, .external_lex_state = 2}, [213] = {.lex_state = 11, .external_lex_state = 2}, [214] = {.lex_state = 4, .external_lex_state = 2}, [215] = {.lex_state = 11, .external_lex_state = 2}, [216] = {.lex_state = 13, .external_lex_state = 2}, - [217] = {.lex_state = 11, .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}, + [217] = {.lex_state = 13, .external_lex_state = 2}, + [218] = {.lex_state = 11, .external_lex_state = 2}, + [219] = {.lex_state = 11, .external_lex_state = 2}, + [220] = {.lex_state = 11, .external_lex_state = 2}, [221] = {.lex_state = 13, .external_lex_state = 2}, - [222] = {.lex_state = 13, .external_lex_state = 2}, + [222] = {.lex_state = 11, .external_lex_state = 2}, [223] = {.lex_state = 13, .external_lex_state = 2}, - [224] = {.lex_state = 13, .external_lex_state = 2}, + [224] = {.lex_state = 11, .external_lex_state = 2}, [225] = {.lex_state = 11, .external_lex_state = 2}, - [226] = {.lex_state = 11, .external_lex_state = 2}, - [227] = {.lex_state = 11, .external_lex_state = 2}, - [228] = {.lex_state = 11, .external_lex_state = 2}, + [226] = {.lex_state = 13, .external_lex_state = 2}, + [227] = {.lex_state = 13, .external_lex_state = 2}, + [228] = {.lex_state = 13, .external_lex_state = 2}, [229] = {.lex_state = 13, .external_lex_state = 2}, - [230] = {.lex_state = 13, .external_lex_state = 2}, + [230] = {.lex_state = 11, .external_lex_state = 2}, [231] = {.lex_state = 11, .external_lex_state = 2}, [232] = {.lex_state = 13, .external_lex_state = 2}, [233] = {.lex_state = 11, .external_lex_state = 2}, [234] = {.lex_state = 11, .external_lex_state = 2}, - [235] = {.lex_state = 11, .external_lex_state = 2}, - [236] = {.lex_state = 11, .external_lex_state = 2}, - [237] = {.lex_state = 13, .external_lex_state = 2}, + [235] = {.lex_state = 13, .external_lex_state = 2}, + [236] = {.lex_state = 13, .external_lex_state = 2}, + [237] = {.lex_state = 11, .external_lex_state = 2}, [238] = {.lex_state = 11, .external_lex_state = 2}, [239] = {.lex_state = 13, .external_lex_state = 2}, [240] = {.lex_state = 11, .external_lex_state = 2}, [241] = {.lex_state = 11, .external_lex_state = 2}, - [242] = {.lex_state = 11, .external_lex_state = 2}, + [242] = {.lex_state = 13, .external_lex_state = 2}, [243] = {.lex_state = 13, .external_lex_state = 2}, [244] = {.lex_state = 11, .external_lex_state = 2}, - [245] = {.lex_state = 13, .external_lex_state = 2}, - [246] = {.lex_state = 11, .external_lex_state = 2}, + [245] = {.lex_state = 11, .external_lex_state = 2}, + [246] = {.lex_state = 13, .external_lex_state = 2}, [247] = {.lex_state = 11, .external_lex_state = 2}, [248] = {.lex_state = 11, .external_lex_state = 2}, [249] = {.lex_state = 11, .external_lex_state = 2}, @@ -10430,7 +10400,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [282] = {.lex_state = 11, .external_lex_state = 2}, [283] = {.lex_state = 11, .external_lex_state = 2}, [284] = {.lex_state = 11, .external_lex_state = 2}, - [285] = {.lex_state = 11, .external_lex_state = 2}, + [285] = {.lex_state = 69, .external_lex_state = 2}, [286] = {.lex_state = 11, .external_lex_state = 2}, [287] = {.lex_state = 11, .external_lex_state = 2}, [288] = {.lex_state = 11, .external_lex_state = 2}, @@ -10486,7 +10456,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [338] = {.lex_state = 11, .external_lex_state = 2}, [339] = {.lex_state = 11, .external_lex_state = 2}, [340] = {.lex_state = 11, .external_lex_state = 2}, - [341] = {.lex_state = 69, .external_lex_state = 2}, + [341] = {.lex_state = 11, .external_lex_state = 2}, [342] = {.lex_state = 11, .external_lex_state = 2}, [343] = {.lex_state = 11, .external_lex_state = 2}, [344] = {.lex_state = 11, .external_lex_state = 2}, @@ -10515,24 +10485,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [367] = {.lex_state = 11, .external_lex_state = 2}, [368] = {.lex_state = 11, .external_lex_state = 2}, [369] = {.lex_state = 11, .external_lex_state = 2}, - [370] = {.lex_state = 12, .external_lex_state = 2}, + [370] = {.lex_state = 69, .external_lex_state = 2}, [371] = {.lex_state = 12, .external_lex_state = 2}, [372] = {.lex_state = 69, .external_lex_state = 2}, [373] = {.lex_state = 12, .external_lex_state = 2}, - [374] = {.lex_state = 69, .external_lex_state = 2}, + [374] = {.lex_state = 12, .external_lex_state = 2}, [375] = {.lex_state = 69, .external_lex_state = 2}, [376] = {.lex_state = 12, .external_lex_state = 2}, [377] = {.lex_state = 12, .external_lex_state = 2}, [378] = {.lex_state = 69, .external_lex_state = 2}, [379] = {.lex_state = 69, .external_lex_state = 2}, [380] = {.lex_state = 12, .external_lex_state = 2}, - [381] = {.lex_state = 69, .external_lex_state = 2}, + [381] = {.lex_state = 12, .external_lex_state = 2}, [382] = {.lex_state = 69, .external_lex_state = 2}, [383] = {.lex_state = 69, .external_lex_state = 2}, - [384] = {.lex_state = 69, .external_lex_state = 2}, + [384] = {.lex_state = 12, .external_lex_state = 2}, [385] = {.lex_state = 12, .external_lex_state = 2}, [386] = {.lex_state = 12, .external_lex_state = 2}, - [387] = {.lex_state = 69, .external_lex_state = 2}, + [387] = {.lex_state = 12, .external_lex_state = 2}, [388] = {.lex_state = 69, .external_lex_state = 2}, [389] = {.lex_state = 69, .external_lex_state = 2}, [390] = {.lex_state = 69, .external_lex_state = 2}, @@ -10540,19 +10510,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [392] = {.lex_state = 69, .external_lex_state = 2}, [393] = {.lex_state = 69, .external_lex_state = 2}, [394] = {.lex_state = 69, .external_lex_state = 2}, - [395] = {.lex_state = 12, .external_lex_state = 2}, - [396] = {.lex_state = 12, .external_lex_state = 2}, - [397] = {.lex_state = 69, .external_lex_state = 2}, - [398] = {.lex_state = 69, .external_lex_state = 2}, + [395] = {.lex_state = 69, .external_lex_state = 2}, + [396] = {.lex_state = 69, .external_lex_state = 2}, + [397] = {.lex_state = 12, .external_lex_state = 2}, + [398] = {.lex_state = 12, .external_lex_state = 2}, [399] = {.lex_state = 69, .external_lex_state = 2}, [400] = {.lex_state = 12, .external_lex_state = 2}, - [401] = {.lex_state = 12, .external_lex_state = 2}, - [402] = {.lex_state = 12, .external_lex_state = 2}, - [403] = {.lex_state = 12, .external_lex_state = 2}, - [404] = {.lex_state = 12, .external_lex_state = 2}, + [401] = {.lex_state = 69, .external_lex_state = 2}, + [402] = {.lex_state = 69, .external_lex_state = 2}, + [403] = {.lex_state = 69, .external_lex_state = 2}, + [404] = {.lex_state = 69, .external_lex_state = 2}, [405] = {.lex_state = 69, .external_lex_state = 2}, [406] = {.lex_state = 69, .external_lex_state = 2}, - [407] = {.lex_state = 69, .external_lex_state = 2}, + [407] = {.lex_state = 12, .external_lex_state = 2}, [408] = {.lex_state = 69, .external_lex_state = 2}, [409] = {.lex_state = 69, .external_lex_state = 2}, [410] = {.lex_state = 69, .external_lex_state = 2}, @@ -10562,9 +10532,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [414] = {.lex_state = 69, .external_lex_state = 2}, [415] = {.lex_state = 11, .external_lex_state = 2}, [416] = {.lex_state = 11, .external_lex_state = 2}, - [417] = {.lex_state = 12, .external_lex_state = 2}, + [417] = {.lex_state = 69, .external_lex_state = 2}, [418] = {.lex_state = 11, .external_lex_state = 2}, - [419] = {.lex_state = 69, .external_lex_state = 2}, + [419] = {.lex_state = 12, .external_lex_state = 2}, [420] = {.lex_state = 12, .external_lex_state = 2}, [421] = {.lex_state = 12, .external_lex_state = 2}, [422] = {.lex_state = 12, .external_lex_state = 2}, @@ -10602,20 +10572,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [454] = {.lex_state = 11, .external_lex_state = 2}, [455] = {.lex_state = 11, .external_lex_state = 2}, [456] = {.lex_state = 3, .external_lex_state = 2}, - [457] = {.lex_state = 11, .external_lex_state = 2}, - [458] = {.lex_state = 3, .external_lex_state = 2}, + [457] = {.lex_state = 3, .external_lex_state = 2}, + [458] = {.lex_state = 11, .external_lex_state = 2}, [459] = {.lex_state = 11, .external_lex_state = 2}, [460] = {.lex_state = 3, .external_lex_state = 2}, - [461] = {.lex_state = 3, .external_lex_state = 2}, - [462] = {.lex_state = 11, .external_lex_state = 2}, - [463] = {.lex_state = 11, .external_lex_state = 2}, + [461] = {.lex_state = 11, .external_lex_state = 2}, + [462] = {.lex_state = 3, .external_lex_state = 2}, + [463] = {.lex_state = 3, .external_lex_state = 2}, [464] = {.lex_state = 3, .external_lex_state = 2}, - [465] = {.lex_state = 3, .external_lex_state = 2}, - [466] = {.lex_state = 3, .external_lex_state = 2}, + [465] = {.lex_state = 11, .external_lex_state = 2}, + [466] = {.lex_state = 11, .external_lex_state = 2}, [467] = {.lex_state = 3, .external_lex_state = 2}, - [468] = {.lex_state = 11, .external_lex_state = 2}, + [468] = {.lex_state = 3, .external_lex_state = 2}, [469] = {.lex_state = 3, .external_lex_state = 2}, - [470] = {.lex_state = 11, .external_lex_state = 2}, + [470] = {.lex_state = 3, .external_lex_state = 2}, [471] = {.lex_state = 3, .external_lex_state = 2}, [472] = {.lex_state = 3, .external_lex_state = 2}, [473] = {.lex_state = 3, .external_lex_state = 2}, @@ -10629,13 +10599,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [481] = {.lex_state = 3, .external_lex_state = 2}, [482] = {.lex_state = 3, .external_lex_state = 2}, [483] = {.lex_state = 3, .external_lex_state = 2}, - [484] = {.lex_state = 11, .external_lex_state = 2}, + [484] = {.lex_state = 3, .external_lex_state = 2}, [485] = {.lex_state = 3, .external_lex_state = 2}, - [486] = {.lex_state = 3, .external_lex_state = 2}, + [486] = {.lex_state = 11, .external_lex_state = 2}, [487] = {.lex_state = 3, .external_lex_state = 2}, - [488] = {.lex_state = 3, .external_lex_state = 2}, - [489] = {.lex_state = 11, .external_lex_state = 2}, - [490] = {.lex_state = 3, .external_lex_state = 2}, + [488] = {.lex_state = 11, .external_lex_state = 2}, + [489] = {.lex_state = 3, .external_lex_state = 2}, + [490] = {.lex_state = 11, .external_lex_state = 2}, [491] = {.lex_state = 11, .external_lex_state = 2}, [492] = {.lex_state = 71, .external_lex_state = 2}, [493] = {.lex_state = 71, .external_lex_state = 2}, @@ -10692,7 +10662,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [544] = {.lex_state = 71, .external_lex_state = 2}, [545] = {.lex_state = 71, .external_lex_state = 2}, [546] = {.lex_state = 71, .external_lex_state = 2}, - [547] = {.lex_state = 11, .external_lex_state = 2}, + [547] = {.lex_state = 71, .external_lex_state = 2}, [548] = {.lex_state = 71, .external_lex_state = 2}, [549] = {.lex_state = 71, .external_lex_state = 2}, [550] = {.lex_state = 71, .external_lex_state = 2}, @@ -10748,7 +10718,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [600] = {.lex_state = 71, .external_lex_state = 2}, [601] = {.lex_state = 71, .external_lex_state = 2}, [602] = {.lex_state = 71, .external_lex_state = 2}, - [603] = {.lex_state = 10}, + [603] = {.lex_state = 71, .external_lex_state = 2}, [604] = {.lex_state = 71, .external_lex_state = 2}, [605] = {.lex_state = 71, .external_lex_state = 2}, [606] = {.lex_state = 71, .external_lex_state = 2}, @@ -10767,7 +10737,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [619] = {.lex_state = 71, .external_lex_state = 2}, [620] = {.lex_state = 71, .external_lex_state = 2}, [621] = {.lex_state = 71, .external_lex_state = 2}, - [622] = {.lex_state = 71, .external_lex_state = 2}, + [622] = {.lex_state = 10}, [623] = {.lex_state = 71, .external_lex_state = 2}, [624] = {.lex_state = 71, .external_lex_state = 2}, [625] = {.lex_state = 71, .external_lex_state = 2}, @@ -10775,9 +10745,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [627] = {.lex_state = 71, .external_lex_state = 2}, [628] = {.lex_state = 71, .external_lex_state = 2}, [629] = {.lex_state = 71, .external_lex_state = 2}, - [630] = {.lex_state = 71, .external_lex_state = 2}, + [630] = {.lex_state = 11, .external_lex_state = 2}, [631] = {.lex_state = 71, .external_lex_state = 2}, - [632] = {.lex_state = 71, .external_lex_state = 2}, + [632] = {.lex_state = 10}, [633] = {.lex_state = 71, .external_lex_state = 2}, [634] = {.lex_state = 71, .external_lex_state = 2}, [635] = {.lex_state = 71, .external_lex_state = 2}, @@ -10817,8 +10787,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [669] = {.lex_state = 71, .external_lex_state = 2}, [670] = {.lex_state = 71, .external_lex_state = 2}, [671] = {.lex_state = 71, .external_lex_state = 2}, - [672] = {.lex_state = 71, .external_lex_state = 2}, - [673] = {.lex_state = 71, .external_lex_state = 2}, + [672] = {.lex_state = 11, .external_lex_state = 2}, + [673] = {.lex_state = 10}, [674] = {.lex_state = 71, .external_lex_state = 2}, [675] = {.lex_state = 71, .external_lex_state = 2}, [676] = {.lex_state = 71, .external_lex_state = 2}, @@ -10827,14 +10797,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [679] = {.lex_state = 71, .external_lex_state = 2}, [680] = {.lex_state = 71, .external_lex_state = 2}, [681] = {.lex_state = 71, .external_lex_state = 2}, - [682] = {.lex_state = 71, .external_lex_state = 2}, - [683] = {.lex_state = 11, .external_lex_state = 2}, - [684] = {.lex_state = 10}, + [682] = {.lex_state = 10}, + [683] = {.lex_state = 71, .external_lex_state = 2}, + [684] = {.lex_state = 71, .external_lex_state = 2}, [685] = {.lex_state = 71, .external_lex_state = 2}, [686] = {.lex_state = 71, .external_lex_state = 2}, [687] = {.lex_state = 71, .external_lex_state = 2}, [688] = {.lex_state = 71, .external_lex_state = 2}, - [689] = {.lex_state = 10}, + [689] = {.lex_state = 71, .external_lex_state = 2}, [690] = {.lex_state = 71, .external_lex_state = 2}, [691] = {.lex_state = 71, .external_lex_state = 2}, [692] = {.lex_state = 71, .external_lex_state = 2}, @@ -10854,7 +10824,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [706] = {.lex_state = 71, .external_lex_state = 2}, [707] = {.lex_state = 71, .external_lex_state = 2}, [708] = {.lex_state = 71, .external_lex_state = 2}, - [709] = {.lex_state = 71, .external_lex_state = 2}, + [709] = {.lex_state = 10}, [710] = {.lex_state = 71, .external_lex_state = 2}, [711] = {.lex_state = 71, .external_lex_state = 2}, [712] = {.lex_state = 71, .external_lex_state = 2}, @@ -10881,7 +10851,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [733] = {.lex_state = 71, .external_lex_state = 2}, [734] = {.lex_state = 71, .external_lex_state = 2}, [735] = {.lex_state = 71, .external_lex_state = 2}, - [736] = {.lex_state = 10}, + [736] = {.lex_state = 71, .external_lex_state = 2}, [737] = {.lex_state = 71, .external_lex_state = 2}, [738] = {.lex_state = 71, .external_lex_state = 2}, [739] = {.lex_state = 71, .external_lex_state = 2}, @@ -10905,7 +10875,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [757] = {.lex_state = 71, .external_lex_state = 2}, [758] = {.lex_state = 71, .external_lex_state = 2}, [759] = {.lex_state = 71, .external_lex_state = 2}, - [760] = {.lex_state = 10}, + [760] = {.lex_state = 71, .external_lex_state = 2}, [761] = {.lex_state = 71, .external_lex_state = 2}, [762] = {.lex_state = 71, .external_lex_state = 2}, [763] = {.lex_state = 71, .external_lex_state = 2}, @@ -10923,35 +10893,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [775] = {.lex_state = 14}, [776] = {.lex_state = 14}, [777] = {.lex_state = 14}, - [778] = {.lex_state = 14}, - [779] = {.lex_state = 11, .external_lex_state = 2}, + [778] = {.lex_state = 11, .external_lex_state = 2}, + [779] = {.lex_state = 14}, [780] = {.lex_state = 14}, - [781] = {.lex_state = 14}, + [781] = {.lex_state = 11, .external_lex_state = 2}, [782] = {.lex_state = 11, .external_lex_state = 2}, [783] = {.lex_state = 11, .external_lex_state = 2}, [784] = {.lex_state = 11, .external_lex_state = 2}, - [785] = {.lex_state = 11, .external_lex_state = 2}, + [785] = {.lex_state = 14}, [786] = {.lex_state = 14}, [787] = {.lex_state = 14}, [788] = {.lex_state = 11, .external_lex_state = 2}, [789] = {.lex_state = 11, .external_lex_state = 2}, [790] = {.lex_state = 11, .external_lex_state = 2}, - [791] = {.lex_state = 11, .external_lex_state = 2}, + [791] = {.lex_state = 14}, [792] = {.lex_state = 11, .external_lex_state = 2}, [793] = {.lex_state = 11, .external_lex_state = 2}, [794] = {.lex_state = 11, .external_lex_state = 2}, - [795] = {.lex_state = 14}, + [795] = {.lex_state = 11, .external_lex_state = 2}, [796] = {.lex_state = 11, .external_lex_state = 2}, [797] = {.lex_state = 11, .external_lex_state = 2}, - [798] = {.lex_state = 11, .external_lex_state = 2}, + [798] = {.lex_state = 14}, [799] = {.lex_state = 11, .external_lex_state = 2}, - [800] = {.lex_state = 11, .external_lex_state = 2}, - [801] = {.lex_state = 14}, + [800] = {.lex_state = 14}, + [801] = {.lex_state = 11, .external_lex_state = 2}, [802] = {.lex_state = 11, .external_lex_state = 2}, [803] = {.lex_state = 11, .external_lex_state = 2}, - [804] = {.lex_state = 12, .external_lex_state = 2}, - [805] = {.lex_state = 11, .external_lex_state = 2}, - [806] = {.lex_state = 14}, + [804] = {.lex_state = 11, .external_lex_state = 2}, + [805] = {.lex_state = 12, .external_lex_state = 2}, + [806] = {.lex_state = 11, .external_lex_state = 2}, [807] = {.lex_state = 11, .external_lex_state = 2}, [808] = {.lex_state = 11, .external_lex_state = 2}, [809] = {.lex_state = 11, .external_lex_state = 2}, @@ -11024,7 +10994,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [876] = {.lex_state = 14}, [877] = {.lex_state = 14}, [878] = {.lex_state = 14}, - [879] = {.lex_state = 11, .external_lex_state = 2}, + [879] = {.lex_state = 14}, [880] = {.lex_state = 14}, [881] = {.lex_state = 14}, [882] = {.lex_state = 14}, @@ -11048,7 +11018,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [900] = {.lex_state = 14}, [901] = {.lex_state = 14}, [902] = {.lex_state = 14}, - [903] = {.lex_state = 14}, + [903] = {.lex_state = 11, .external_lex_state = 2}, [904] = {.lex_state = 14}, [905] = {.lex_state = 14}, [906] = {.lex_state = 14}, @@ -11171,67 +11141,67 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1023] = {.lex_state = 6}, [1024] = {.lex_state = 7}, [1025] = {.lex_state = 6}, - [1026] = {.lex_state = 6}, - [1027] = {.lex_state = 10}, + [1026] = {.lex_state = 10}, + [1027] = {.lex_state = 6}, [1028] = {.lex_state = 10}, - [1029] = {.lex_state = 6}, + [1029] = {.lex_state = 10}, [1030] = {.lex_state = 10}, [1031] = {.lex_state = 10}, - [1032] = {.lex_state = 10}, + [1032] = {.lex_state = 6}, [1033] = {.lex_state = 10}, [1034] = {.lex_state = 10}, [1035] = {.lex_state = 10}, [1036] = {.lex_state = 10}, [1037] = {.lex_state = 6}, [1038] = {.lex_state = 6}, - [1039] = {.lex_state = 22}, - [1040] = {.lex_state = 22}, + [1039] = {.lex_state = 6}, + [1040] = {.lex_state = 6}, [1041] = {.lex_state = 6}, [1042] = {.lex_state = 22}, - [1043] = {.lex_state = 22}, - [1044] = {.lex_state = 6}, - [1045] = {.lex_state = 11, .external_lex_state = 2}, - [1046] = {.lex_state = 22}, - [1047] = {.lex_state = 6}, - [1048] = {.lex_state = 6}, - [1049] = {.lex_state = 6}, - [1050] = {.lex_state = 6}, + [1043] = {.lex_state = 6}, + [1044] = {.lex_state = 22}, + [1045] = {.lex_state = 6}, + [1046] = {.lex_state = 6}, + [1047] = {.lex_state = 22}, + [1048] = {.lex_state = 22}, + [1049] = {.lex_state = 11, .external_lex_state = 2}, + [1050] = {.lex_state = 22}, [1051] = {.lex_state = 7}, - [1052] = {.lex_state = 7}, - [1053] = {.lex_state = 7}, + [1052] = {.lex_state = 14}, + [1053] = {.lex_state = 14}, [1054] = {.lex_state = 14}, [1055] = {.lex_state = 7}, [1056] = {.lex_state = 14}, [1057] = {.lex_state = 7}, [1058] = {.lex_state = 14}, - [1059] = {.lex_state = 14}, + [1059] = {.lex_state = 7}, [1060] = {.lex_state = 14}, - [1061] = {.lex_state = 14}, + [1061] = {.lex_state = 7}, [1062] = {.lex_state = 14}, [1063] = {.lex_state = 14}, [1064] = {.lex_state = 14}, [1065] = {.lex_state = 7}, - [1066] = {.lex_state = 10}, + [1066] = {.lex_state = 7}, [1067] = {.lex_state = 10}, - [1068] = {.lex_state = 10}, + [1068] = {.lex_state = 7}, [1069] = {.lex_state = 7}, - [1070] = {.lex_state = 18}, + [1070] = {.lex_state = 7}, [1071] = {.lex_state = 10}, [1072] = {.lex_state = 10}, - [1073] = {.lex_state = 10}, - [1074] = {.lex_state = 10}, - [1075] = {.lex_state = 10}, - [1076] = {.lex_state = 10}, - [1077] = {.lex_state = 10}, - [1078] = {.lex_state = 10}, - [1079] = {.lex_state = 10}, - [1080] = {.lex_state = 10}, - [1081] = {.lex_state = 10}, - [1082] = {.lex_state = 10}, - [1083] = {.lex_state = 10}, + [1073] = {.lex_state = 12, .external_lex_state = 2}, + [1074] = {.lex_state = 7}, + [1075] = {.lex_state = 12, .external_lex_state = 2}, + [1076] = {.lex_state = 7}, + [1077] = {.lex_state = 7}, + [1078] = {.lex_state = 19}, + [1079] = {.lex_state = 18}, + [1080] = {.lex_state = 7}, + [1081] = {.lex_state = 7}, + [1082] = {.lex_state = 18}, + [1083] = {.lex_state = 18}, [1084] = {.lex_state = 10}, - [1085] = {.lex_state = 10}, - [1086] = {.lex_state = 10}, + [1085] = {.lex_state = 14}, + [1086] = {.lex_state = 7}, [1087] = {.lex_state = 10}, [1088] = {.lex_state = 10}, [1089] = {.lex_state = 10}, @@ -11248,11 +11218,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1100] = {.lex_state = 10}, [1101] = {.lex_state = 10}, [1102] = {.lex_state = 10}, - [1103] = {.lex_state = 10}, - [1104] = {.lex_state = 10}, - [1105] = {.lex_state = 10}, - [1106] = {.lex_state = 10}, - [1107] = {.lex_state = 10}, + [1103] = {.lex_state = 6}, + [1104] = {.lex_state = 18}, + [1105] = {.lex_state = 18}, + [1106] = {.lex_state = 18}, + [1107] = {.lex_state = 18}, [1108] = {.lex_state = 10}, [1109] = {.lex_state = 10}, [1110] = {.lex_state = 10}, @@ -11265,8 +11235,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1117] = {.lex_state = 10}, [1118] = {.lex_state = 10}, [1119] = {.lex_state = 10}, - [1120] = {.lex_state = 7}, - [1121] = {.lex_state = 18}, + [1120] = {.lex_state = 10}, + [1121] = {.lex_state = 10}, [1122] = {.lex_state = 10}, [1123] = {.lex_state = 10}, [1124] = {.lex_state = 10}, @@ -11289,13 +11259,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1141] = {.lex_state = 10}, [1142] = {.lex_state = 10}, [1143] = {.lex_state = 10}, - [1144] = {.lex_state = 10}, - [1145] = {.lex_state = 10}, - [1146] = {.lex_state = 10}, - [1147] = {.lex_state = 10}, - [1148] = {.lex_state = 10}, + [1144] = {.lex_state = 7}, + [1145] = {.lex_state = 7}, + [1146] = {.lex_state = 18}, + [1147] = {.lex_state = 7}, + [1148] = {.lex_state = 18}, [1149] = {.lex_state = 10}, - [1150] = {.lex_state = 18}, + [1150] = {.lex_state = 10}, [1151] = {.lex_state = 10}, [1152] = {.lex_state = 10}, [1153] = {.lex_state = 10}, @@ -11319,52 +11289,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1171] = {.lex_state = 10}, [1172] = {.lex_state = 10}, [1173] = {.lex_state = 10}, - [1174] = {.lex_state = 11, .external_lex_state = 2}, + [1174] = {.lex_state = 10}, [1175] = {.lex_state = 10}, [1176] = {.lex_state = 10}, - [1177] = {.lex_state = 6}, - [1178] = {.lex_state = 18}, - [1179] = {.lex_state = 18}, - [1180] = {.lex_state = 7}, - [1181] = {.lex_state = 18}, + [1177] = {.lex_state = 10}, + [1178] = {.lex_state = 10}, + [1179] = {.lex_state = 10}, + [1180] = {.lex_state = 10}, + [1181] = {.lex_state = 10}, [1182] = {.lex_state = 10}, - [1183] = {.lex_state = 18}, - [1184] = {.lex_state = 18}, - [1185] = {.lex_state = 18}, - [1186] = {.lex_state = 7}, - [1187] = {.lex_state = 7}, + [1183] = {.lex_state = 10}, + [1184] = {.lex_state = 10}, + [1185] = {.lex_state = 10}, + [1186] = {.lex_state = 10}, + [1187] = {.lex_state = 10}, [1188] = {.lex_state = 10}, [1189] = {.lex_state = 10}, [1190] = {.lex_state = 10}, [1191] = {.lex_state = 10}, [1192] = {.lex_state = 10}, [1193] = {.lex_state = 10}, - [1194] = {.lex_state = 14}, + [1194] = {.lex_state = 10}, [1195] = {.lex_state = 10}, [1196] = {.lex_state = 10}, [1197] = {.lex_state = 10}, [1198] = {.lex_state = 10}, - [1199] = {.lex_state = 10}, - [1200] = {.lex_state = 10}, + [1199] = {.lex_state = 7}, + [1200] = {.lex_state = 18}, [1201] = {.lex_state = 10}, [1202] = {.lex_state = 10}, - [1203] = {.lex_state = 14}, - [1204] = {.lex_state = 14}, + [1203] = {.lex_state = 10}, + [1204] = {.lex_state = 10}, [1205] = {.lex_state = 10}, [1206] = {.lex_state = 10}, [1207] = {.lex_state = 10}, [1208] = {.lex_state = 10}, [1209] = {.lex_state = 10}, - [1210] = {.lex_state = 14}, - [1211] = {.lex_state = 14}, + [1210] = {.lex_state = 10}, + [1211] = {.lex_state = 10}, [1212] = {.lex_state = 10}, [1213] = {.lex_state = 10}, - [1214] = {.lex_state = 14}, + [1214] = {.lex_state = 10}, [1215] = {.lex_state = 10}, [1216] = {.lex_state = 10}, [1217] = {.lex_state = 10}, - [1218] = {.lex_state = 14}, - [1219] = {.lex_state = 14}, + [1218] = {.lex_state = 10}, + [1219] = {.lex_state = 10}, [1220] = {.lex_state = 10}, [1221] = {.lex_state = 10}, [1222] = {.lex_state = 10}, @@ -11372,33 +11342,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1224] = {.lex_state = 10}, [1225] = {.lex_state = 10}, [1226] = {.lex_state = 10}, - [1227] = {.lex_state = 7}, + [1227] = {.lex_state = 10}, [1228] = {.lex_state = 10}, - [1229] = {.lex_state = 11, .external_lex_state = 2}, + [1229] = {.lex_state = 10}, [1230] = {.lex_state = 10}, [1231] = {.lex_state = 10}, [1232] = {.lex_state = 10}, [1233] = {.lex_state = 10}, - [1234] = {.lex_state = 10}, - [1235] = {.lex_state = 14}, + [1234] = {.lex_state = 11, .external_lex_state = 2}, + [1235] = {.lex_state = 10}, [1236] = {.lex_state = 10}, [1237] = {.lex_state = 10}, - [1238] = {.lex_state = 7}, - [1239] = {.lex_state = 14}, + [1238] = {.lex_state = 10}, + [1239] = {.lex_state = 10}, [1240] = {.lex_state = 10}, - [1241] = {.lex_state = 18}, + [1241] = {.lex_state = 10}, [1242] = {.lex_state = 10}, - [1243] = {.lex_state = 7}, + [1243] = {.lex_state = 10}, [1244] = {.lex_state = 10}, - [1245] = {.lex_state = 7}, + [1245] = {.lex_state = 10}, [1246] = {.lex_state = 10}, - [1247] = {.lex_state = 18}, + [1247] = {.lex_state = 10}, [1248] = {.lex_state = 10}, [1249] = {.lex_state = 10}, [1250] = {.lex_state = 10}, [1251] = {.lex_state = 10}, - [1252] = {.lex_state = 10}, - [1253] = {.lex_state = 10}, + [1252] = {.lex_state = 7}, + [1253] = {.lex_state = 18}, [1254] = {.lex_state = 10}, [1255] = {.lex_state = 10}, [1256] = {.lex_state = 10}, @@ -11433,7 +11403,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1285] = {.lex_state = 10}, [1286] = {.lex_state = 10}, [1287] = {.lex_state = 10}, - [1288] = {.lex_state = 7}, + [1288] = {.lex_state = 10}, [1289] = {.lex_state = 10}, [1290] = {.lex_state = 10}, [1291] = {.lex_state = 10}, @@ -11441,29 +11411,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1293] = {.lex_state = 10}, [1294] = {.lex_state = 10}, [1295] = {.lex_state = 10}, - [1296] = {.lex_state = 7}, + [1296] = {.lex_state = 10}, [1297] = {.lex_state = 10}, [1298] = {.lex_state = 10}, [1299] = {.lex_state = 10}, [1300] = {.lex_state = 10}, - [1301] = {.lex_state = 19}, + [1301] = {.lex_state = 10}, [1302] = {.lex_state = 7}, - [1303] = {.lex_state = 10}, + [1303] = {.lex_state = 18}, [1304] = {.lex_state = 10}, - [1305] = {.lex_state = 7}, - [1306] = {.lex_state = 7}, - [1307] = {.lex_state = 7}, + [1305] = {.lex_state = 10}, + [1306] = {.lex_state = 10}, + [1307] = {.lex_state = 10}, [1308] = {.lex_state = 10}, - [1309] = {.lex_state = 18}, + [1309] = {.lex_state = 10}, [1310] = {.lex_state = 10}, - [1311] = {.lex_state = 7}, + [1311] = {.lex_state = 10}, [1312] = {.lex_state = 10}, [1313] = {.lex_state = 10}, [1314] = {.lex_state = 10}, - [1315] = {.lex_state = 7}, + [1315] = {.lex_state = 10}, [1316] = {.lex_state = 10}, - [1317] = {.lex_state = 7}, - [1318] = {.lex_state = 7}, + [1317] = {.lex_state = 10}, + [1318] = {.lex_state = 10}, [1319] = {.lex_state = 10}, [1320] = {.lex_state = 10}, [1321] = {.lex_state = 10}, @@ -11479,7 +11449,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1331] = {.lex_state = 10}, [1332] = {.lex_state = 10}, [1333] = {.lex_state = 10}, - [1334] = {.lex_state = 7}, + [1334] = {.lex_state = 10}, [1335] = {.lex_state = 10}, [1336] = {.lex_state = 10}, [1337] = {.lex_state = 10}, @@ -11500,41 +11470,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1352] = {.lex_state = 10}, [1353] = {.lex_state = 10}, [1354] = {.lex_state = 10}, - [1355] = {.lex_state = 10}, - [1356] = {.lex_state = 10}, - [1357] = {.lex_state = 10}, - [1358] = {.lex_state = 10}, + [1355] = {.lex_state = 7}, + [1356] = {.lex_state = 7}, + [1357] = {.lex_state = 7}, + [1358] = {.lex_state = 7}, [1359] = {.lex_state = 10}, - [1360] = {.lex_state = 10}, - [1361] = {.lex_state = 10}, - [1362] = {.lex_state = 10}, - [1363] = {.lex_state = 10}, - [1364] = {.lex_state = 7}, - [1365] = {.lex_state = 10}, + [1360] = {.lex_state = 14}, + [1361] = {.lex_state = 7}, + [1362] = {.lex_state = 7}, + [1363] = {.lex_state = 7}, + [1364] = {.lex_state = 14}, + [1365] = {.lex_state = 7}, [1366] = {.lex_state = 19}, - [1367] = {.lex_state = 12, .external_lex_state = 2}, + [1367] = {.lex_state = 14}, [1368] = {.lex_state = 7}, - [1369] = {.lex_state = 7}, + [1369] = {.lex_state = 11, .external_lex_state = 2}, [1370] = {.lex_state = 10}, - [1371] = {.lex_state = 12, .external_lex_state = 2}, + [1371] = {.lex_state = 7}, [1372] = {.lex_state = 7}, [1373] = {.lex_state = 7}, - [1374] = {.lex_state = 10}, - [1375] = {.lex_state = 10}, - [1376] = {.lex_state = 10}, + [1374] = {.lex_state = 7}, + [1375] = {.lex_state = 7}, + [1376] = {.lex_state = 7}, [1377] = {.lex_state = 7}, [1378] = {.lex_state = 7}, [1379] = {.lex_state = 7}, [1380] = {.lex_state = 7}, - [1381] = {.lex_state = 14}, - [1382] = {.lex_state = 7}, + [1381] = {.lex_state = 7}, + [1382] = {.lex_state = 14}, [1383] = {.lex_state = 7}, [1384] = {.lex_state = 7}, [1385] = {.lex_state = 7}, [1386] = {.lex_state = 7}, [1387] = {.lex_state = 7}, [1388] = {.lex_state = 7}, - [1389] = {.lex_state = 11, .external_lex_state = 2}, + [1389] = {.lex_state = 7}, [1390] = {.lex_state = 7}, [1391] = {.lex_state = 7}, [1392] = {.lex_state = 7}, @@ -11542,7 +11512,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1394] = {.lex_state = 7}, [1395] = {.lex_state = 7}, [1396] = {.lex_state = 7}, - [1397] = {.lex_state = 8}, + [1397] = {.lex_state = 7}, [1398] = {.lex_state = 7}, [1399] = {.lex_state = 7}, [1400] = {.lex_state = 7}, @@ -11568,32 +11538,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1420] = {.lex_state = 7}, [1421] = {.lex_state = 7}, [1422] = {.lex_state = 7}, - [1423] = {.lex_state = 11, .external_lex_state = 2}, - [1424] = {.lex_state = 11, .external_lex_state = 2}, + [1423] = {.lex_state = 7}, + [1424] = {.lex_state = 7}, [1425] = {.lex_state = 7}, [1426] = {.lex_state = 7}, [1427] = {.lex_state = 7}, - [1428] = {.lex_state = 11, .external_lex_state = 2}, + [1428] = {.lex_state = 7}, [1429] = {.lex_state = 7}, [1430] = {.lex_state = 7}, [1431] = {.lex_state = 7}, [1432] = {.lex_state = 7}, [1433] = {.lex_state = 7}, - [1434] = {.lex_state = 7}, + [1434] = {.lex_state = 11, .external_lex_state = 2}, [1435] = {.lex_state = 7}, - [1436] = {.lex_state = 14}, + [1436] = {.lex_state = 7}, [1437] = {.lex_state = 7}, - [1438] = {.lex_state = 7}, + [1438] = {.lex_state = 14}, [1439] = {.lex_state = 7}, - [1440] = {.lex_state = 11, .external_lex_state = 2}, + [1440] = {.lex_state = 7}, [1441] = {.lex_state = 7}, [1442] = {.lex_state = 7}, - [1443] = {.lex_state = 7}, + [1443] = {.lex_state = 11, .external_lex_state = 2}, [1444] = {.lex_state = 7}, [1445] = {.lex_state = 7}, [1446] = {.lex_state = 7}, - [1447] = {.lex_state = 7}, - [1448] = {.lex_state = 14}, + [1447] = {.lex_state = 8}, + [1448] = {.lex_state = 7}, [1449] = {.lex_state = 7}, [1450] = {.lex_state = 7}, [1451] = {.lex_state = 7}, @@ -11613,9 +11583,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1465] = {.lex_state = 7}, [1466] = {.lex_state = 7}, [1467] = {.lex_state = 7}, - [1468] = {.lex_state = 7}, - [1469] = {.lex_state = 7}, - [1470] = {.lex_state = 7}, + [1468] = {.lex_state = 14}, + [1469] = {.lex_state = 11, .external_lex_state = 2}, + [1470] = {.lex_state = 11, .external_lex_state = 2}, [1471] = {.lex_state = 7}, [1472] = {.lex_state = 7}, [1473] = {.lex_state = 7}, @@ -11627,7 +11597,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1479] = {.lex_state = 7}, [1480] = {.lex_state = 7}, [1481] = {.lex_state = 7}, - [1482] = {.lex_state = 7}, + [1482] = {.lex_state = 14}, [1483] = {.lex_state = 7}, [1484] = {.lex_state = 7}, [1485] = {.lex_state = 7}, @@ -11636,285 +11606,285 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1488] = {.lex_state = 7}, [1489] = {.lex_state = 7}, [1490] = {.lex_state = 7}, - [1491] = {.lex_state = 14}, + [1491] = {.lex_state = 11, .external_lex_state = 2}, [1492] = {.lex_state = 7}, - [1493] = {.lex_state = 7}, + [1493] = {.lex_state = 14}, [1494] = {.lex_state = 7}, [1495] = {.lex_state = 7}, [1496] = {.lex_state = 7}, - [1497] = {.lex_state = 7}, + [1497] = {.lex_state = 14}, [1498] = {.lex_state = 7}, [1499] = {.lex_state = 14}, [1500] = {.lex_state = 7}, [1501] = {.lex_state = 7}, [1502] = {.lex_state = 7}, - [1503] = {.lex_state = 14}, - [1504] = {.lex_state = 14}, + [1503] = {.lex_state = 7}, + [1504] = {.lex_state = 7}, [1505] = {.lex_state = 7}, [1506] = {.lex_state = 7}, - [1507] = {.lex_state = 11, .external_lex_state = 2}, + [1507] = {.lex_state = 7}, [1508] = {.lex_state = 7}, [1509] = {.lex_state = 7}, - [1510] = {.lex_state = 7}, + [1510] = {.lex_state = 11, .external_lex_state = 2}, [1511] = {.lex_state = 7}, - [1512] = {.lex_state = 7}, + [1512] = {.lex_state = 9}, [1513] = {.lex_state = 7}, [1514] = {.lex_state = 7}, - [1515] = {.lex_state = 7}, - [1516] = {.lex_state = 7}, + [1515] = {.lex_state = 11, .external_lex_state = 2}, + [1516] = {.lex_state = 11, .external_lex_state = 2}, [1517] = {.lex_state = 7}, [1518] = {.lex_state = 7}, [1519] = {.lex_state = 7}, [1520] = {.lex_state = 7}, - [1521] = {.lex_state = 9}, + [1521] = {.lex_state = 11, .external_lex_state = 2}, [1522] = {.lex_state = 7}, [1523] = {.lex_state = 7}, - [1524] = {.lex_state = 11, .external_lex_state = 2}, - [1525] = {.lex_state = 7}, - [1526] = {.lex_state = 11, .external_lex_state = 2}, - [1527] = {.lex_state = 7}, - [1528] = {.lex_state = 11, .external_lex_state = 2}, - [1529] = {.lex_state = 7}, - [1530] = {.lex_state = 7}, + [1524] = {.lex_state = 7}, + [1525] = {.lex_state = 8}, + [1526] = {.lex_state = 7}, + [1527] = {.lex_state = 9}, + [1528] = {.lex_state = 14}, + [1529] = {.lex_state = 14}, + [1530] = {.lex_state = 9}, [1531] = {.lex_state = 14}, [1532] = {.lex_state = 9}, - [1533] = {.lex_state = 14}, + [1533] = {.lex_state = 7}, [1534] = {.lex_state = 14}, [1535] = {.lex_state = 14}, - [1536] = {.lex_state = 14}, - [1537] = {.lex_state = 7}, - [1538] = {.lex_state = 14}, + [1536] = {.lex_state = 9}, + [1537] = {.lex_state = 8}, + [1538] = {.lex_state = 8}, [1539] = {.lex_state = 9}, [1540] = {.lex_state = 7}, - [1541] = {.lex_state = 14}, - [1542] = {.lex_state = 9}, + [1541] = {.lex_state = 9}, + [1542] = {.lex_state = 8}, [1543] = {.lex_state = 8}, - [1544] = {.lex_state = 8}, - [1545] = {.lex_state = 7}, - [1546] = {.lex_state = 8}, - [1547] = {.lex_state = 8}, + [1544] = {.lex_state = 9}, + [1545] = {.lex_state = 9}, + [1546] = {.lex_state = 9}, + [1547] = {.lex_state = 7}, [1548] = {.lex_state = 7}, - [1549] = {.lex_state = 9}, - [1550] = {.lex_state = 8}, + [1549] = {.lex_state = 7}, + [1550] = {.lex_state = 7}, [1551] = {.lex_state = 9}, - [1552] = {.lex_state = 7}, + [1552] = {.lex_state = 9}, [1553] = {.lex_state = 7}, - [1554] = {.lex_state = 9}, + [1554] = {.lex_state = 7}, [1555] = {.lex_state = 7}, - [1556] = {.lex_state = 9}, - [1557] = {.lex_state = 9}, - [1558] = {.lex_state = 9}, - [1559] = {.lex_state = 7}, - [1560] = {.lex_state = 7}, - [1561] = {.lex_state = 9}, - [1562] = {.lex_state = 9}, - [1563] = {.lex_state = 7}, - [1564] = {.lex_state = 7}, - [1565] = {.lex_state = 7}, - [1566] = {.lex_state = 7}, - [1567] = {.lex_state = 8}, + [1556] = {.lex_state = 8}, + [1557] = {.lex_state = 8}, + [1558] = {.lex_state = 8}, + [1559] = {.lex_state = 8}, + [1560] = {.lex_state = 8}, + [1561] = {.lex_state = 8}, + [1562] = {.lex_state = 8}, + [1563] = {.lex_state = 8}, + [1564] = {.lex_state = 8}, + [1565] = {.lex_state = 8}, + [1566] = {.lex_state = 8}, + [1567] = {.lex_state = 7}, [1568] = {.lex_state = 7}, - [1569] = {.lex_state = 8}, - [1570] = {.lex_state = 8}, - [1571] = {.lex_state = 7}, - [1572] = {.lex_state = 8}, + [1569] = {.lex_state = 7}, + [1570] = {.lex_state = 7}, + [1571] = {.lex_state = 8}, + [1572] = {.lex_state = 14}, [1573] = {.lex_state = 7}, - [1574] = {.lex_state = 8}, + [1574] = {.lex_state = 7}, [1575] = {.lex_state = 7}, - [1576] = {.lex_state = 8}, - [1577] = {.lex_state = 8}, - [1578] = {.lex_state = 14}, + [1576] = {.lex_state = 7}, + [1577] = {.lex_state = 7}, + [1578] = {.lex_state = 7}, [1579] = {.lex_state = 8}, - [1580] = {.lex_state = 8}, + [1580] = {.lex_state = 7}, [1581] = {.lex_state = 7}, [1582] = {.lex_state = 7}, [1583] = {.lex_state = 7}, - [1584] = {.lex_state = 7}, - [1585] = {.lex_state = 8}, + [1584] = {.lex_state = 8}, + [1585] = {.lex_state = 14}, [1586] = {.lex_state = 7}, - [1587] = {.lex_state = 7}, - [1588] = {.lex_state = 14}, - [1589] = {.lex_state = 8}, + [1587] = {.lex_state = 14}, + [1588] = {.lex_state = 7}, + [1589] = {.lex_state = 7}, [1590] = {.lex_state = 7}, [1591] = {.lex_state = 8}, - [1592] = {.lex_state = 8}, - [1593] = {.lex_state = 8}, - [1594] = {.lex_state = 7}, - [1595] = {.lex_state = 14}, - [1596] = {.lex_state = 7}, + [1592] = {.lex_state = 20}, + [1593] = {.lex_state = 20}, + [1594] = {.lex_state = 8}, + [1595] = {.lex_state = 8}, + [1596] = {.lex_state = 8}, [1597] = {.lex_state = 8}, - [1598] = {.lex_state = 7}, - [1599] = {.lex_state = 20}, - [1600] = {.lex_state = 7}, + [1598] = {.lex_state = 8}, + [1599] = {.lex_state = 8}, + [1600] = {.lex_state = 8}, [1601] = {.lex_state = 20}, - [1602] = {.lex_state = 8}, - [1603] = {.lex_state = 14}, + [1602] = {.lex_state = 7}, + [1603] = {.lex_state = 7}, [1604] = {.lex_state = 7}, [1605] = {.lex_state = 7}, - [1606] = {.lex_state = 8}, + [1606] = {.lex_state = 7}, [1607] = {.lex_state = 8}, - [1608] = {.lex_state = 8}, + [1608] = {.lex_state = 7}, [1609] = {.lex_state = 8}, - [1610] = {.lex_state = 8}, + [1610] = {.lex_state = 7}, [1611] = {.lex_state = 8}, [1612] = {.lex_state = 7}, - [1613] = {.lex_state = 7}, - [1614] = {.lex_state = 20}, + [1613] = {.lex_state = 8}, + [1614] = {.lex_state = 9}, [1615] = {.lex_state = 7}, - [1616] = {.lex_state = 7}, - [1617] = {.lex_state = 7}, - [1618] = {.lex_state = 7}, - [1619] = {.lex_state = 20}, - [1620] = {.lex_state = 7}, + [1616] = {.lex_state = 20}, + [1617] = {.lex_state = 20}, + [1618] = {.lex_state = 20}, + [1619] = {.lex_state = 8}, + [1620] = {.lex_state = 8}, [1621] = {.lex_state = 7}, - [1622] = {.lex_state = 8}, + [1622] = {.lex_state = 20}, [1623] = {.lex_state = 20}, [1624] = {.lex_state = 7}, [1625] = {.lex_state = 20}, - [1626] = {.lex_state = 7}, + [1626] = {.lex_state = 8}, [1627] = {.lex_state = 7}, - [1628] = {.lex_state = 20}, + [1628] = {.lex_state = 7}, [1629] = {.lex_state = 7}, - [1630] = {.lex_state = 20}, + [1630] = {.lex_state = 7}, [1631] = {.lex_state = 7}, - [1632] = {.lex_state = 8}, + [1632] = {.lex_state = 7}, [1633] = {.lex_state = 7}, - [1634] = {.lex_state = 8}, - [1635] = {.lex_state = 8}, - [1636] = {.lex_state = 8}, + [1634] = {.lex_state = 20}, + [1635] = {.lex_state = 7}, + [1636] = {.lex_state = 7}, [1637] = {.lex_state = 7}, - [1638] = {.lex_state = 20}, - [1639] = {.lex_state = 8}, + [1638] = {.lex_state = 8}, + [1639] = {.lex_state = 20}, [1640] = {.lex_state = 8}, [1641] = {.lex_state = 8}, - [1642] = {.lex_state = 8}, - [1643] = {.lex_state = 8}, - [1644] = {.lex_state = 8}, - [1645] = {.lex_state = 20}, - [1646] = {.lex_state = 20}, - [1647] = {.lex_state = 20}, - [1648] = {.lex_state = 7}, - [1649] = {.lex_state = 7}, + [1642] = {.lex_state = 7}, + [1643] = {.lex_state = 7}, + [1644] = {.lex_state = 7}, + [1645] = {.lex_state = 8}, + [1646] = {.lex_state = 8}, + [1647] = {.lex_state = 7}, + [1648] = {.lex_state = 14}, + [1649] = {.lex_state = 20}, [1650] = {.lex_state = 7}, - [1651] = {.lex_state = 7}, + [1651] = {.lex_state = 8}, [1652] = {.lex_state = 7}, - [1653] = {.lex_state = 7}, - [1654] = {.lex_state = 9}, - [1655] = {.lex_state = 7}, + [1653] = {.lex_state = 8}, + [1654] = {.lex_state = 8}, + [1655] = {.lex_state = 8}, [1656] = {.lex_state = 7}, [1657] = {.lex_state = 8}, [1658] = {.lex_state = 8}, - [1659] = {.lex_state = 7}, + [1659] = {.lex_state = 8}, [1660] = {.lex_state = 8}, [1661] = {.lex_state = 8}, [1662] = {.lex_state = 8}, [1663] = {.lex_state = 8}, [1664] = {.lex_state = 8}, - [1665] = {.lex_state = 7}, - [1666] = {.lex_state = 8}, - [1667] = {.lex_state = 7}, - [1668] = {.lex_state = 7}, - [1669] = {.lex_state = 7}, - [1670] = {.lex_state = 7}, - [1671] = {.lex_state = 8}, + [1665] = {.lex_state = 8}, + [1666] = {.lex_state = 7}, + [1667] = {.lex_state = 8}, + [1668] = {.lex_state = 8}, + [1669] = {.lex_state = 8}, + [1670] = {.lex_state = 8}, + [1671] = {.lex_state = 7}, [1672] = {.lex_state = 8}, - [1673] = {.lex_state = 8}, + [1673] = {.lex_state = 7}, [1674] = {.lex_state = 8}, [1675] = {.lex_state = 8}, - [1676] = {.lex_state = 7}, - [1677] = {.lex_state = 7}, - [1678] = {.lex_state = 7}, - [1679] = {.lex_state = 7}, - [1680] = {.lex_state = 7}, - [1681] = {.lex_state = 7}, + [1676] = {.lex_state = 8}, + [1677] = {.lex_state = 8}, + [1678] = {.lex_state = 8}, + [1679] = {.lex_state = 8}, + [1680] = {.lex_state = 8}, + [1681] = {.lex_state = 8}, [1682] = {.lex_state = 8}, [1683] = {.lex_state = 8}, [1684] = {.lex_state = 8}, [1685] = {.lex_state = 8}, [1686] = {.lex_state = 8}, [1687] = {.lex_state = 8}, - [1688] = {.lex_state = 7}, + [1688] = {.lex_state = 8}, [1689] = {.lex_state = 8}, - [1690] = {.lex_state = 7}, - [1691] = {.lex_state = 8}, - [1692] = {.lex_state = 7}, + [1690] = {.lex_state = 8}, + [1691] = {.lex_state = 7}, + [1692] = {.lex_state = 8}, [1693] = {.lex_state = 8}, [1694] = {.lex_state = 8}, [1695] = {.lex_state = 8}, - [1696] = {.lex_state = 7}, - [1697] = {.lex_state = 7}, + [1696] = {.lex_state = 8}, + [1697] = {.lex_state = 8}, [1698] = {.lex_state = 8}, [1699] = {.lex_state = 8}, - [1700] = {.lex_state = 7}, + [1700] = {.lex_state = 8}, [1701] = {.lex_state = 8}, - [1702] = {.lex_state = 7}, + [1702] = {.lex_state = 8}, [1703] = {.lex_state = 7}, [1704] = {.lex_state = 8}, - [1705] = {.lex_state = 7}, + [1705] = {.lex_state = 8}, [1706] = {.lex_state = 8}, [1707] = {.lex_state = 8}, - [1708] = {.lex_state = 7}, - [1709] = {.lex_state = 7}, + [1708] = {.lex_state = 8}, + [1709] = {.lex_state = 8}, [1710] = {.lex_state = 8}, - [1711] = {.lex_state = 7}, - [1712] = {.lex_state = 7}, - [1713] = {.lex_state = 8}, - [1714] = {.lex_state = 8}, - [1715] = {.lex_state = 8}, - [1716] = {.lex_state = 7}, + [1711] = {.lex_state = 8}, + [1712] = {.lex_state = 8}, + [1713] = {.lex_state = 7}, + [1714] = {.lex_state = 7}, + [1715] = {.lex_state = 7}, + [1716] = {.lex_state = 8}, [1717] = {.lex_state = 8}, - [1718] = {.lex_state = 8}, - [1719] = {.lex_state = 8}, + [1718] = {.lex_state = 7}, + [1719] = {.lex_state = 7}, [1720] = {.lex_state = 8}, - [1721] = {.lex_state = 8}, - [1722] = {.lex_state = 7}, - [1723] = {.lex_state = 8}, - [1724] = {.lex_state = 8}, + [1721] = {.lex_state = 7}, + [1722] = {.lex_state = 8}, + [1723] = {.lex_state = 7}, + [1724] = {.lex_state = 7}, [1725] = {.lex_state = 7}, - [1726] = {.lex_state = 8}, - [1727] = {.lex_state = 8}, - [1728] = {.lex_state = 8}, - [1729] = {.lex_state = 8}, - [1730] = {.lex_state = 7}, - [1731] = {.lex_state = 8}, + [1726] = {.lex_state = 7}, + [1727] = {.lex_state = 7}, + [1728] = {.lex_state = 7}, + [1729] = {.lex_state = 7}, + [1730] = {.lex_state = 8}, + [1731] = {.lex_state = 7}, [1732] = {.lex_state = 7}, - [1733] = {.lex_state = 8}, + [1733] = {.lex_state = 7}, [1734] = {.lex_state = 8}, [1735] = {.lex_state = 8}, [1736] = {.lex_state = 8}, - [1737] = {.lex_state = 7}, + [1737] = {.lex_state = 8}, [1738] = {.lex_state = 7}, [1739] = {.lex_state = 8}, - [1740] = {.lex_state = 7}, + [1740] = {.lex_state = 8}, [1741] = {.lex_state = 8}, [1742] = {.lex_state = 7}, - [1743] = {.lex_state = 8}, + [1743] = {.lex_state = 7}, [1744] = {.lex_state = 7}, [1745] = {.lex_state = 8}, [1746] = {.lex_state = 7}, - [1747] = {.lex_state = 8}, + [1747] = {.lex_state = 7}, [1748] = {.lex_state = 7}, [1749] = {.lex_state = 8}, - [1750] = {.lex_state = 8}, - [1751] = {.lex_state = 8}, + [1750] = {.lex_state = 7}, + [1751] = {.lex_state = 7}, [1752] = {.lex_state = 8}, [1753] = {.lex_state = 8}, - [1754] = {.lex_state = 7}, + [1754] = {.lex_state = 8}, [1755] = {.lex_state = 7}, - [1756] = {.lex_state = 7}, + [1756] = {.lex_state = 8}, [1757] = {.lex_state = 8}, [1758] = {.lex_state = 7}, - [1759] = {.lex_state = 8}, + [1759] = {.lex_state = 7}, [1760] = {.lex_state = 7}, [1761] = {.lex_state = 8}, - [1762] = {.lex_state = 7}, - [1763] = {.lex_state = 14}, + [1762] = {.lex_state = 8}, + [1763] = {.lex_state = 7}, [1764] = {.lex_state = 7}, [1765] = {.lex_state = 8}, - [1766] = {.lex_state = 7}, + [1766] = {.lex_state = 14}, [1767] = {.lex_state = 8}, - [1768] = {.lex_state = 8}, - [1769] = {.lex_state = 8}, + [1768] = {.lex_state = 7}, + [1769] = {.lex_state = 7}, [1770] = {.lex_state = 8}, [1771] = {.lex_state = 8}, [1772] = {.lex_state = 8}, @@ -11923,133 +11893,133 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1775] = {.lex_state = 8}, [1776] = {.lex_state = 7}, [1777] = {.lex_state = 7}, - [1778] = {.lex_state = 8}, - [1779] = {.lex_state = 8}, - [1780] = {.lex_state = 8}, - [1781] = {.lex_state = 8}, + [1778] = {.lex_state = 7}, + [1779] = {.lex_state = 7}, + [1780] = {.lex_state = 7}, + [1781] = {.lex_state = 7}, [1782] = {.lex_state = 8}, [1783] = {.lex_state = 8}, - [1784] = {.lex_state = 8}, - [1785] = {.lex_state = 7}, - [1786] = {.lex_state = 14}, - [1787] = {.lex_state = 8}, + [1784] = {.lex_state = 7}, + [1785] = {.lex_state = 8}, + [1786] = {.lex_state = 7}, + [1787] = {.lex_state = 7}, [1788] = {.lex_state = 7}, - [1789] = {.lex_state = 8}, + [1789] = {.lex_state = 7}, [1790] = {.lex_state = 8}, - [1791] = {.lex_state = 8}, + [1791] = {.lex_state = 7}, [1792] = {.lex_state = 8}, [1793] = {.lex_state = 7}, - [1794] = {.lex_state = 7}, - [1795] = {.lex_state = 8}, + [1794] = {.lex_state = 8}, + [1795] = {.lex_state = 7}, [1796] = {.lex_state = 7}, - [1797] = {.lex_state = 8}, + [1797] = {.lex_state = 7}, [1798] = {.lex_state = 8}, - [1799] = {.lex_state = 7}, + [1799] = {.lex_state = 8}, [1800] = {.lex_state = 8}, [1801] = {.lex_state = 8}, [1802] = {.lex_state = 7}, - [1803] = {.lex_state = 8}, - [1804] = {.lex_state = 8}, + [1803] = {.lex_state = 7}, + [1804] = {.lex_state = 7}, [1805] = {.lex_state = 8}, [1806] = {.lex_state = 8}, - [1807] = {.lex_state = 7}, + [1807] = {.lex_state = 8}, [1808] = {.lex_state = 7}, - [1809] = {.lex_state = 7}, - [1810] = {.lex_state = 8}, + [1809] = {.lex_state = 8}, + [1810] = {.lex_state = 7}, [1811] = {.lex_state = 8}, [1812] = {.lex_state = 8}, - [1813] = {.lex_state = 7}, + [1813] = {.lex_state = 8}, [1814] = {.lex_state = 7}, [1815] = {.lex_state = 7}, - [1816] = {.lex_state = 8}, + [1816] = {.lex_state = 7}, [1817] = {.lex_state = 8}, - [1818] = {.lex_state = 8}, + [1818] = {.lex_state = 7}, [1819] = {.lex_state = 7}, [1820] = {.lex_state = 7}, [1821] = {.lex_state = 7}, - [1822] = {.lex_state = 8}, - [1823] = {.lex_state = 8}, - [1824] = {.lex_state = 8}, - [1825] = {.lex_state = 8}, - [1826] = {.lex_state = 8}, - [1827] = {.lex_state = 7}, + [1822] = {.lex_state = 7}, + [1823] = {.lex_state = 7}, + [1824] = {.lex_state = 7}, + [1825] = {.lex_state = 7}, + [1826] = {.lex_state = 7}, + [1827] = {.lex_state = 8}, [1828] = {.lex_state = 8}, [1829] = {.lex_state = 8}, - [1830] = {.lex_state = 7}, - [1831] = {.lex_state = 7}, - [1832] = {.lex_state = 7}, - [1833] = {.lex_state = 8}, - [1834] = {.lex_state = 7}, + [1830] = {.lex_state = 8}, + [1831] = {.lex_state = 8}, + [1832] = {.lex_state = 8}, + [1833] = {.lex_state = 7}, + [1834] = {.lex_state = 14}, [1835] = {.lex_state = 7}, [1836] = {.lex_state = 8}, - [1837] = {.lex_state = 7}, - [1838] = {.lex_state = 7}, + [1837] = {.lex_state = 8}, + [1838] = {.lex_state = 8}, [1839] = {.lex_state = 8}, - [1840] = {.lex_state = 8}, - [1841] = {.lex_state = 7}, - [1842] = {.lex_state = 8}, - [1843] = {.lex_state = 7}, + [1840] = {.lex_state = 7}, + [1841] = {.lex_state = 8}, + [1842] = {.lex_state = 7}, + [1843] = {.lex_state = 8}, [1844] = {.lex_state = 8}, [1845] = {.lex_state = 8}, - [1846] = {.lex_state = 8}, + [1846] = {.lex_state = 7}, [1847] = {.lex_state = 7}, - [1848] = {.lex_state = 7}, - [1849] = {.lex_state = 7}, + [1848] = {.lex_state = 8}, + [1849] = {.lex_state = 8}, [1850] = {.lex_state = 8}, [1851] = {.lex_state = 8}, [1852] = {.lex_state = 7}, - [1853] = {.lex_state = 7}, + [1853] = {.lex_state = 8}, [1854] = {.lex_state = 8}, [1855] = {.lex_state = 7}, [1856] = {.lex_state = 8}, [1857] = {.lex_state = 8}, - [1858] = {.lex_state = 7}, - [1859] = {.lex_state = 8}, + [1858] = {.lex_state = 8}, + [1859] = {.lex_state = 7}, [1860] = {.lex_state = 7}, - [1861] = {.lex_state = 8}, + [1861] = {.lex_state = 7}, [1862] = {.lex_state = 7}, - [1863] = {.lex_state = 8}, - [1864] = {.lex_state = 8}, - [1865] = {.lex_state = 8}, - [1866] = {.lex_state = 7}, - [1867] = {.lex_state = 8}, - [1868] = {.lex_state = 14}, + [1863] = {.lex_state = 7}, + [1864] = {.lex_state = 7}, + [1865] = {.lex_state = 7}, + [1866] = {.lex_state = 14}, + [1867] = {.lex_state = 7}, + [1868] = {.lex_state = 8}, [1869] = {.lex_state = 7}, - [1870] = {.lex_state = 8}, + [1870] = {.lex_state = 7}, [1871] = {.lex_state = 7}, - [1872] = {.lex_state = 7}, + [1872] = {.lex_state = 14}, [1873] = {.lex_state = 7}, - [1874] = {.lex_state = 8}, + [1874] = {.lex_state = 7}, [1875] = {.lex_state = 7}, [1876] = {.lex_state = 7}, [1877] = {.lex_state = 7}, [1878] = {.lex_state = 7}, [1879] = {.lex_state = 14}, - [1880] = {.lex_state = 14}, + [1880] = {.lex_state = 7}, [1881] = {.lex_state = 7}, - [1882] = {.lex_state = 7}, + [1882] = {.lex_state = 14}, [1883] = {.lex_state = 7}, [1884] = {.lex_state = 7}, [1885] = {.lex_state = 7}, [1886] = {.lex_state = 7}, [1887] = {.lex_state = 7}, - [1888] = {.lex_state = 7}, + [1888] = {.lex_state = 14}, [1889] = {.lex_state = 7}, - [1890] = {.lex_state = 7}, + [1890] = {.lex_state = 8}, [1891] = {.lex_state = 7}, [1892] = {.lex_state = 7}, [1893] = {.lex_state = 7}, [1894] = {.lex_state = 7}, - [1895] = {.lex_state = 7}, + [1895] = {.lex_state = 8}, [1896] = {.lex_state = 7}, - [1897] = {.lex_state = 7}, - [1898] = {.lex_state = 7}, - [1899] = {.lex_state = 8}, + [1897] = {.lex_state = 14}, + [1898] = {.lex_state = 14}, + [1899] = {.lex_state = 14}, [1900] = {.lex_state = 14}, [1901] = {.lex_state = 14}, - [1902] = {.lex_state = 7}, - [1903] = {.lex_state = 7}, - [1904] = {.lex_state = 7}, + [1902] = {.lex_state = 14}, + [1903] = {.lex_state = 14}, + [1904] = {.lex_state = 14}, [1905] = {.lex_state = 14}, [1906] = {.lex_state = 14}, [1907] = {.lex_state = 14}, @@ -12063,926 +12033,926 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1915] = {.lex_state = 14}, [1916] = {.lex_state = 14}, [1917] = {.lex_state = 14}, - [1918] = {.lex_state = 14}, - [1919] = {.lex_state = 14}, - [1920] = {.lex_state = 14}, - [1921] = {.lex_state = 14}, - [1922] = {.lex_state = 14}, - [1923] = {.lex_state = 14}, - [1924] = {.lex_state = 14}, - [1925] = {.lex_state = 14}, + [1918] = {.lex_state = 27}, + [1919] = {.lex_state = 27}, + [1920] = {.lex_state = 16}, + [1921] = {.lex_state = 16}, + [1922] = {.lex_state = 16}, + [1923] = {.lex_state = 16}, + [1924] = {.lex_state = 16}, + [1925] = {.lex_state = 16}, [1926] = {.lex_state = 16}, - [1927] = {.lex_state = 27}, - [1928] = {.lex_state = 27}, - [1929] = {.lex_state = 16}, + [1927] = {.lex_state = 16}, + [1928] = {.lex_state = 16}, + [1929] = {.lex_state = 27}, [1930] = {.lex_state = 16}, [1931] = {.lex_state = 16}, - [1932] = {.lex_state = 16}, - [1933] = {.lex_state = 16}, - [1934] = {.lex_state = 16}, + [1932] = {.lex_state = 27}, + [1933] = {.lex_state = 27}, + [1934] = {.lex_state = 14}, [1935] = {.lex_state = 16}, - [1936] = {.lex_state = 16}, + [1936] = {.lex_state = 14}, [1937] = {.lex_state = 27}, - [1938] = {.lex_state = 16}, - [1939] = {.lex_state = 27}, + [1938] = {.lex_state = 14}, + [1939] = {.lex_state = 16}, [1940] = {.lex_state = 14}, - [1941] = {.lex_state = 16}, + [1941] = {.lex_state = 11, .external_lex_state = 2}, [1942] = {.lex_state = 14}, - [1943] = {.lex_state = 16}, + [1943] = {.lex_state = 14}, [1944] = {.lex_state = 14}, - [1945] = {.lex_state = 16}, + [1945] = {.lex_state = 14}, [1946] = {.lex_state = 27}, - [1947] = {.lex_state = 14}, - [1948] = {.lex_state = 27}, + [1947] = {.lex_state = 16}, + [1948] = {.lex_state = 14}, [1949] = {.lex_state = 14}, [1950] = {.lex_state = 14}, - [1951] = {.lex_state = 27}, + [1951] = {.lex_state = 14}, [1952] = {.lex_state = 14}, - [1953] = {.lex_state = 14}, + [1953] = {.lex_state = 16}, [1954] = {.lex_state = 16}, [1955] = {.lex_state = 14}, - [1956] = {.lex_state = 14}, - [1957] = {.lex_state = 14}, + [1956] = {.lex_state = 27}, + [1957] = {.lex_state = 27}, [1958] = {.lex_state = 14}, - [1959] = {.lex_state = 14}, - [1960] = {.lex_state = 16}, + [1959] = {.lex_state = 27}, + [1960] = {.lex_state = 27}, [1961] = {.lex_state = 27}, [1962] = {.lex_state = 14}, [1963] = {.lex_state = 27}, - [1964] = {.lex_state = 27}, - [1965] = {.lex_state = 27}, - [1966] = {.lex_state = 16}, + [1964] = {.lex_state = 14}, + [1965] = {.lex_state = 14}, + [1966] = {.lex_state = 27}, [1967] = {.lex_state = 27}, - [1968] = {.lex_state = 27}, + [1968] = {.lex_state = 16}, [1969] = {.lex_state = 27}, [1970] = {.lex_state = 27}, - [1971] = {.lex_state = 14}, - [1972] = {.lex_state = 14}, - [1973] = {.lex_state = 16}, + [1971] = {.lex_state = 16}, + [1972] = {.lex_state = 27}, + [1973] = {.lex_state = 14}, [1974] = {.lex_state = 27}, [1975] = {.lex_state = 27}, - [1976] = {.lex_state = 27}, + [1976] = {.lex_state = 14}, [1977] = {.lex_state = 27}, [1978] = {.lex_state = 27}, [1979] = {.lex_state = 14}, - [1980] = {.lex_state = 14}, - [1981] = {.lex_state = 14}, - [1982] = {.lex_state = 14}, - [1983] = {.lex_state = 14}, - [1984] = {.lex_state = 16}, - [1985] = {.lex_state = 16}, + [1980] = {.lex_state = 16}, + [1981] = {.lex_state = 27}, + [1982] = {.lex_state = 27}, + [1983] = {.lex_state = 27}, + [1984] = {.lex_state = 27}, + [1985] = {.lex_state = 27}, [1986] = {.lex_state = 27}, - [1987] = {.lex_state = 27}, + [1987] = {.lex_state = 14}, [1988] = {.lex_state = 27}, - [1989] = {.lex_state = 14}, + [1989] = {.lex_state = 27}, [1990] = {.lex_state = 27}, - [1991] = {.lex_state = 27}, + [1991] = {.lex_state = 14}, [1992] = {.lex_state = 27}, [1993] = {.lex_state = 27}, [1994] = {.lex_state = 27}, [1995] = {.lex_state = 27}, - [1996] = {.lex_state = 16}, + [1996] = {.lex_state = 27}, [1997] = {.lex_state = 27}, [1998] = {.lex_state = 14}, [1999] = {.lex_state = 27}, - [2000] = {.lex_state = 27}, - [2001] = {.lex_state = 27}, + [2000] = {.lex_state = 16}, + [2001] = {.lex_state = 14}, [2002] = {.lex_state = 27}, [2003] = {.lex_state = 27}, [2004] = {.lex_state = 27}, [2005] = {.lex_state = 27}, [2006] = {.lex_state = 27}, - [2007] = {.lex_state = 27}, - [2008] = {.lex_state = 14}, - [2009] = {.lex_state = 14}, + [2007] = {.lex_state = 14}, + [2008] = {.lex_state = 27}, + [2009] = {.lex_state = 27}, [2010] = {.lex_state = 27}, - [2011] = {.lex_state = 14}, + [2011] = {.lex_state = 27}, [2012] = {.lex_state = 27}, [2013] = {.lex_state = 27}, [2014] = {.lex_state = 27}, - [2015] = {.lex_state = 27}, + [2015] = {.lex_state = 14}, [2016] = {.lex_state = 27}, - [2017] = {.lex_state = 27}, + [2017] = {.lex_state = 14}, [2018] = {.lex_state = 27}, - [2019] = {.lex_state = 27}, - [2020] = {.lex_state = 27}, - [2021] = {.lex_state = 27}, - [2022] = {.lex_state = 14}, - [2023] = {.lex_state = 27}, - [2024] = {.lex_state = 14}, + [2019] = {.lex_state = 16}, + [2020] = {.lex_state = 16}, + [2021] = {.lex_state = 16}, + [2022] = {.lex_state = 16}, + [2023] = {.lex_state = 16}, + [2024] = {.lex_state = 16}, [2025] = {.lex_state = 16}, - [2026] = {.lex_state = 16}, - [2027] = {.lex_state = 27}, + [2026] = {.lex_state = 17}, + [2027] = {.lex_state = 16}, [2028] = {.lex_state = 16}, [2029] = {.lex_state = 16}, [2030] = {.lex_state = 27}, - [2031] = {.lex_state = 17}, + [2031] = {.lex_state = 27}, [2032] = {.lex_state = 16}, [2033] = {.lex_state = 16}, [2034] = {.lex_state = 16}, - [2035] = {.lex_state = 16}, - [2036] = {.lex_state = 27}, - [2037] = {.lex_state = 16}, - [2038] = {.lex_state = 16}, - [2039] = {.lex_state = 16}, - [2040] = {.lex_state = 16}, - [2041] = {.lex_state = 16}, + [2035] = {.lex_state = 14}, + [2036] = {.lex_state = 14}, + [2037] = {.lex_state = 14}, + [2038] = {.lex_state = 14}, + [2039] = {.lex_state = 14}, + [2040] = {.lex_state = 14}, + [2041] = {.lex_state = 14}, [2042] = {.lex_state = 14}, [2043] = {.lex_state = 14}, - [2044] = {.lex_state = 14}, + [2044] = {.lex_state = 16}, [2045] = {.lex_state = 14}, - [2046] = {.lex_state = 14}, - [2047] = {.lex_state = 14}, - [2048] = {.lex_state = 14}, + [2046] = {.lex_state = 16}, + [2047] = {.lex_state = 23}, + [2048] = {.lex_state = 27}, [2049] = {.lex_state = 14}, [2050] = {.lex_state = 14}, - [2051] = {.lex_state = 14}, - [2052] = {.lex_state = 14}, - [2053] = {.lex_state = 14}, - [2054] = {.lex_state = 14}, - [2055] = {.lex_state = 14}, + [2051] = {.lex_state = 27}, + [2052] = {.lex_state = 23}, + [2053] = {.lex_state = 21}, + [2054] = {.lex_state = 17}, + [2055] = {.lex_state = 16}, [2056] = {.lex_state = 14}, [2057] = {.lex_state = 14}, [2058] = {.lex_state = 14}, - [2059] = {.lex_state = 14}, - [2060] = {.lex_state = 16}, - [2061] = {.lex_state = 23}, - [2062] = {.lex_state = 16}, + [2059] = {.lex_state = 16}, + [2060] = {.lex_state = 27}, + [2061] = {.lex_state = 14}, + [2062] = {.lex_state = 21}, [2063] = {.lex_state = 14}, - [2064] = {.lex_state = 27}, + [2064] = {.lex_state = 17}, [2065] = {.lex_state = 14}, [2066] = {.lex_state = 14}, [2067] = {.lex_state = 14}, [2068] = {.lex_state = 14}, [2069] = {.lex_state = 14}, - [2070] = {.lex_state = 14}, - [2071] = {.lex_state = 14}, + [2070] = {.lex_state = 16}, + [2071] = {.lex_state = 27}, [2072] = {.lex_state = 14}, - [2073] = {.lex_state = 14}, - [2074] = {.lex_state = 23}, - [2075] = {.lex_state = 27}, - [2076] = {.lex_state = 14}, - [2077] = {.lex_state = 27}, + [2073] = {.lex_state = 16}, + [2074] = {.lex_state = 14}, + [2075] = {.lex_state = 21}, + [2076] = {.lex_state = 17}, + [2077] = {.lex_state = 21}, [2078] = {.lex_state = 16}, - [2079] = {.lex_state = 21}, - [2080] = {.lex_state = 17}, - [2081] = {.lex_state = 14}, + [2079] = {.lex_state = 16}, + [2080] = {.lex_state = 16}, + [2081] = {.lex_state = 27}, [2082] = {.lex_state = 14}, [2083] = {.lex_state = 14}, - [2084] = {.lex_state = 16}, - [2085] = {.lex_state = 14}, - [2086] = {.lex_state = 14}, - [2087] = {.lex_state = 14}, - [2088] = {.lex_state = 16}, - [2089] = {.lex_state = 16}, - [2090] = {.lex_state = 16}, + [2084] = {.lex_state = 17}, + [2085] = {.lex_state = 16}, + [2086] = {.lex_state = 27}, + [2087] = {.lex_state = 27}, + [2088] = {.lex_state = 14}, + [2089] = {.lex_state = 27}, + [2090] = {.lex_state = 14}, [2091] = {.lex_state = 27}, - [2092] = {.lex_state = 21}, - [2093] = {.lex_state = 16}, - [2094] = {.lex_state = 21}, - [2095] = {.lex_state = 16}, - [2096] = {.lex_state = 16}, - [2097] = {.lex_state = 17}, - [2098] = {.lex_state = 17}, + [2092] = {.lex_state = 16}, + [2093] = {.lex_state = 27}, + [2094] = {.lex_state = 27}, + [2095] = {.lex_state = 27}, + [2096] = {.lex_state = 27}, + [2097] = {.lex_state = 27}, + [2098] = {.lex_state = 27}, [2099] = {.lex_state = 27}, - [2100] = {.lex_state = 17}, - [2101] = {.lex_state = 21}, - [2102] = {.lex_state = 16}, + [2100] = {.lex_state = 27}, + [2101] = {.lex_state = 16}, + [2102] = {.lex_state = 27}, [2103] = {.lex_state = 27}, - [2104] = {.lex_state = 27}, - [2105] = {.lex_state = 27}, + [2104] = {.lex_state = 23}, + [2105] = {.lex_state = 17}, [2106] = {.lex_state = 27}, [2107] = {.lex_state = 27}, - [2108] = {.lex_state = 14}, - [2109] = {.lex_state = 16}, - [2110] = {.lex_state = 14}, + [2108] = {.lex_state = 27}, + [2109] = {.lex_state = 27}, + [2110] = {.lex_state = 27}, [2111] = {.lex_state = 27}, - [2112] = {.lex_state = 17}, - [2113] = {.lex_state = 27}, + [2112] = {.lex_state = 14}, + [2113] = {.lex_state = 23}, [2114] = {.lex_state = 27}, [2115] = {.lex_state = 27}, [2116] = {.lex_state = 27}, - [2117] = {.lex_state = 27}, - [2118] = {.lex_state = 27}, + [2117] = {.lex_state = 23}, + [2118] = {.lex_state = 14}, [2119] = {.lex_state = 27}, [2120] = {.lex_state = 27}, - [2121] = {.lex_state = 14}, - [2122] = {.lex_state = 27}, - [2123] = {.lex_state = 23}, + [2121] = {.lex_state = 27}, + [2122] = {.lex_state = 10}, + [2123] = {.lex_state = 14}, [2124] = {.lex_state = 27}, [2125] = {.lex_state = 27}, [2126] = {.lex_state = 27}, - [2127] = {.lex_state = 16}, + [2127] = {.lex_state = 23}, [2128] = {.lex_state = 27}, [2129] = {.lex_state = 27}, - [2130] = {.lex_state = 23}, + [2130] = {.lex_state = 16}, [2131] = {.lex_state = 27}, [2132] = {.lex_state = 27}, - [2133] = {.lex_state = 23}, + [2133] = {.lex_state = 27}, [2134] = {.lex_state = 27}, [2135] = {.lex_state = 27}, - [2136] = {.lex_state = 10}, - [2137] = {.lex_state = 27}, - [2138] = {.lex_state = 27}, - [2139] = {.lex_state = 27}, - [2140] = {.lex_state = 16}, - [2141] = {.lex_state = 27}, - [2142] = {.lex_state = 27}, - [2143] = {.lex_state = 27}, - [2144] = {.lex_state = 27}, - [2145] = {.lex_state = 14}, - [2146] = {.lex_state = 27}, - [2147] = {.lex_state = 27}, - [2148] = {.lex_state = 16}, - [2149] = {.lex_state = 27}, - [2150] = {.lex_state = 27}, - [2151] = {.lex_state = 23}, + [2136] = {.lex_state = 27}, + [2137] = {.lex_state = 16}, + [2138] = {.lex_state = 14}, + [2139] = {.lex_state = 10}, + [2140] = {.lex_state = 14}, + [2141] = {.lex_state = 17}, + [2142] = {.lex_state = 70}, + [2143] = {.lex_state = 10}, + [2144] = {.lex_state = 14}, + [2145] = {.lex_state = 10}, + [2146] = {.lex_state = 14}, + [2147] = {.lex_state = 14}, + [2148] = {.lex_state = 14}, + [2149] = {.lex_state = 14}, + [2150] = {.lex_state = 16}, + [2151] = {.lex_state = 14}, [2152] = {.lex_state = 14}, - [2153] = {.lex_state = 27}, + [2153] = {.lex_state = 14}, [2154] = {.lex_state = 14}, - [2155] = {.lex_state = 14}, - [2156] = {.lex_state = 6}, - [2157] = {.lex_state = 14}, + [2155] = {.lex_state = 23}, + [2156] = {.lex_state = 14}, + [2157] = {.lex_state = 6}, [2158] = {.lex_state = 14}, [2159] = {.lex_state = 14}, - [2160] = {.lex_state = 14}, - [2161] = {.lex_state = 16}, - [2162] = {.lex_state = 17}, - [2163] = {.lex_state = 17}, - [2164] = {.lex_state = 14}, - [2165] = {.lex_state = 16}, + [2160] = {.lex_state = 17}, + [2161] = {.lex_state = 27}, + [2162] = {.lex_state = 27}, + [2163] = {.lex_state = 10}, + [2164] = {.lex_state = 6}, + [2165] = {.lex_state = 17}, [2166] = {.lex_state = 14}, - [2167] = {.lex_state = 16}, - [2168] = {.lex_state = 17}, - [2169] = {.lex_state = 23}, - [2170] = {.lex_state = 14}, - [2171] = {.lex_state = 14}, - [2172] = {.lex_state = 14}, - [2173] = {.lex_state = 6}, - [2174] = {.lex_state = 17}, - [2175] = {.lex_state = 17}, - [2176] = {.lex_state = 6}, - [2177] = {.lex_state = 14}, + [2167] = {.lex_state = 14}, + [2168] = {.lex_state = 14}, + [2169] = {.lex_state = 27}, + [2170] = {.lex_state = 6}, + [2171] = {.lex_state = 17}, + [2172] = {.lex_state = 27}, + [2173] = {.lex_state = 14}, + [2174] = {.lex_state = 27}, + [2175] = {.lex_state = 14}, + [2176] = {.lex_state = 27}, + [2177] = {.lex_state = 17}, [2178] = {.lex_state = 14}, - [2179] = {.lex_state = 10}, + [2179] = {.lex_state = 14}, [2180] = {.lex_state = 14}, [2181] = {.lex_state = 14}, - [2182] = {.lex_state = 14}, - [2183] = {.lex_state = 10}, - [2184] = {.lex_state = 10}, + [2182] = {.lex_state = 27}, + [2183] = {.lex_state = 14}, + [2184] = {.lex_state = 27}, [2185] = {.lex_state = 14}, - [2186] = {.lex_state = 16}, + [2186] = {.lex_state = 14}, [2187] = {.lex_state = 14}, - [2188] = {.lex_state = 14}, - [2189] = {.lex_state = 16}, - [2190] = {.lex_state = 16}, - [2191] = {.lex_state = 16}, + [2188] = {.lex_state = 23}, + [2189] = {.lex_state = 23}, + [2190] = {.lex_state = 14}, + [2191] = {.lex_state = 14}, [2192] = {.lex_state = 14}, - [2193] = {.lex_state = 16}, + [2193] = {.lex_state = 14}, [2194] = {.lex_state = 14}, - [2195] = {.lex_state = 70}, - [2196] = {.lex_state = 10}, + [2195] = {.lex_state = 14}, + [2196] = {.lex_state = 23}, [2197] = {.lex_state = 14}, [2198] = {.lex_state = 14}, [2199] = {.lex_state = 14}, - [2200] = {.lex_state = 16}, + [2200] = {.lex_state = 14}, [2201] = {.lex_state = 14}, [2202] = {.lex_state = 14}, [2203] = {.lex_state = 14}, [2204] = {.lex_state = 14}, - [2205] = {.lex_state = 23}, + [2205] = {.lex_state = 10}, [2206] = {.lex_state = 14}, [2207] = {.lex_state = 14}, [2208] = {.lex_state = 14}, - [2209] = {.lex_state = 23}, - [2210] = {.lex_state = 23}, - [2211] = {.lex_state = 14}, - [2212] = {.lex_state = 23}, - [2213] = {.lex_state = 23}, - [2214] = {.lex_state = 23}, - [2215] = {.lex_state = 23}, + [2209] = {.lex_state = 14}, + [2210] = {.lex_state = 14}, + [2211] = {.lex_state = 23}, + [2212] = {.lex_state = 14}, + [2213] = {.lex_state = 14}, + [2214] = {.lex_state = 14}, + [2215] = {.lex_state = 14}, [2216] = {.lex_state = 14}, - [2217] = {.lex_state = 23}, + [2217] = {.lex_state = 14}, [2218] = {.lex_state = 14}, [2219] = {.lex_state = 14}, - [2220] = {.lex_state = 14}, - [2221] = {.lex_state = 14}, - [2222] = {.lex_state = 23}, + [2220] = {.lex_state = 23}, + [2221] = {.lex_state = 21}, + [2222] = {.lex_state = 14}, [2223] = {.lex_state = 14}, [2224] = {.lex_state = 14}, - [2225] = {.lex_state = 14}, + [2225] = {.lex_state = 23}, [2226] = {.lex_state = 23}, [2227] = {.lex_state = 14}, [2228] = {.lex_state = 14}, - [2229] = {.lex_state = 14}, - [2230] = {.lex_state = 14}, + [2229] = {.lex_state = 23}, + [2230] = {.lex_state = 23}, [2231] = {.lex_state = 14}, [2232] = {.lex_state = 14}, - [2233] = {.lex_state = 14}, - [2234] = {.lex_state = 14}, + [2233] = {.lex_state = 23}, + [2234] = {.lex_state = 23}, [2235] = {.lex_state = 14}, [2236] = {.lex_state = 14}, [2237] = {.lex_state = 14}, [2238] = {.lex_state = 14}, [2239] = {.lex_state = 14}, - [2240] = {.lex_state = 14}, + [2240] = {.lex_state = 23}, [2241] = {.lex_state = 14}, - [2242] = {.lex_state = 14}, - [2243] = {.lex_state = 10}, - [2244] = {.lex_state = 14}, - [2245] = {.lex_state = 14}, - [2246] = {.lex_state = 14}, - [2247] = {.lex_state = 14}, - [2248] = {.lex_state = 14}, - [2249] = {.lex_state = 23}, - [2250] = {.lex_state = 14}, + [2242] = {.lex_state = 23}, + [2243] = {.lex_state = 17}, + [2244] = {.lex_state = 70}, + [2245] = {.lex_state = 27}, + [2246] = {.lex_state = 70}, + [2247] = {.lex_state = 70}, + [2248] = {.lex_state = 70}, + [2249] = {.lex_state = 70}, + [2250] = {.lex_state = 70}, [2251] = {.lex_state = 14}, - [2252] = {.lex_state = 14}, - [2253] = {.lex_state = 21}, - [2254] = {.lex_state = 23}, - [2255] = {.lex_state = 14}, - [2256] = {.lex_state = 14}, - [2257] = {.lex_state = 14}, - [2258] = {.lex_state = 23}, - [2259] = {.lex_state = 14}, - [2260] = {.lex_state = 23}, - [2261] = {.lex_state = 23}, - [2262] = {.lex_state = 14}, - [2263] = {.lex_state = 70}, - [2264] = {.lex_state = 70}, - [2265] = {.lex_state = 70}, - [2266] = {.lex_state = 14}, + [2252] = {.lex_state = 70}, + [2253] = {.lex_state = 70}, + [2254] = {.lex_state = 70}, + [2255] = {.lex_state = 70}, + [2256] = {.lex_state = 70}, + [2257] = {.lex_state = 70}, + [2258] = {.lex_state = 70}, + [2259] = {.lex_state = 70}, + [2260] = {.lex_state = 70}, + [2261] = {.lex_state = 70}, + [2262] = {.lex_state = 70}, + [2263] = {.lex_state = 3}, + [2264] = {.lex_state = 10}, + [2265] = {.lex_state = 27}, + [2266] = {.lex_state = 70}, [2267] = {.lex_state = 23}, - [2268] = {.lex_state = 23}, - [2269] = {.lex_state = 70}, + [2268] = {.lex_state = 14}, + [2269] = {.lex_state = 3}, [2270] = {.lex_state = 23}, [2271] = {.lex_state = 70}, - [2272] = {.lex_state = 70}, - [2273] = {.lex_state = 16}, - [2274] = {.lex_state = 16}, + [2272] = {.lex_state = 23}, + [2273] = {.lex_state = 70}, + [2274] = {.lex_state = 10}, [2275] = {.lex_state = 70}, - [2276] = {.lex_state = 70}, - [2277] = {.lex_state = 70}, - [2278] = {.lex_state = 70}, + [2276] = {.lex_state = 14}, + [2277] = {.lex_state = 14}, + [2278] = {.lex_state = 167}, [2279] = {.lex_state = 70}, - [2280] = {.lex_state = 70}, - [2281] = {.lex_state = 17}, - [2282] = {.lex_state = 3}, + [2280] = {.lex_state = 14}, + [2281] = {.lex_state = 23}, + [2282] = {.lex_state = 70}, [2283] = {.lex_state = 23}, [2284] = {.lex_state = 10}, - [2285] = {.lex_state = 167}, + [2285] = {.lex_state = 23}, [2286] = {.lex_state = 14}, [2287] = {.lex_state = 70}, - [2288] = {.lex_state = 70}, - [2289] = {.lex_state = 70}, + [2288] = {.lex_state = 3}, + [2289] = {.lex_state = 14}, [2290] = {.lex_state = 70}, [2291] = {.lex_state = 70}, - [2292] = {.lex_state = 70}, + [2292] = {.lex_state = 14}, [2293] = {.lex_state = 70}, [2294] = {.lex_state = 70}, - [2295] = {.lex_state = 70}, + [2295] = {.lex_state = 14}, [2296] = {.lex_state = 70}, - [2297] = {.lex_state = 3}, - [2298] = {.lex_state = 10}, + [2297] = {.lex_state = 14}, + [2298] = {.lex_state = 23}, [2299] = {.lex_state = 70}, - [2300] = {.lex_state = 3}, - [2301] = {.lex_state = 14}, - [2302] = {.lex_state = 70}, - [2303] = {.lex_state = 23}, - [2304] = {.lex_state = 70}, + [2300] = {.lex_state = 14}, + [2301] = {.lex_state = 27}, + [2302] = {.lex_state = 14}, + [2303] = {.lex_state = 14}, + [2304] = {.lex_state = 14}, [2305] = {.lex_state = 14}, - [2306] = {.lex_state = 70}, - [2307] = {.lex_state = 10}, - [2308] = {.lex_state = 70}, - [2309] = {.lex_state = 14}, - [2310] = {.lex_state = 70}, - [2311] = {.lex_state = 70}, - [2312] = {.lex_state = 14}, + [2306] = {.lex_state = 14}, + [2307] = {.lex_state = 14}, + [2308] = {.lex_state = 14}, + [2309] = {.lex_state = 3}, + [2310] = {.lex_state = 14}, + [2311] = {.lex_state = 27}, + [2312] = {.lex_state = 19}, [2313] = {.lex_state = 14}, - [2314] = {.lex_state = 14}, - [2315] = {.lex_state = 70}, - [2316] = {.lex_state = 27}, - [2317] = {.lex_state = 18}, - [2318] = {.lex_state = 23}, - [2319] = {.lex_state = 14}, + [2314] = {.lex_state = 17}, + [2315] = {.lex_state = 14}, + [2316] = {.lex_state = 17}, + [2317] = {.lex_state = 14}, + [2318] = {.lex_state = 27}, + [2319] = {.lex_state = 17}, [2320] = {.lex_state = 14}, [2321] = {.lex_state = 14}, - [2322] = {.lex_state = 27}, + [2322] = {.lex_state = 14}, [2323] = {.lex_state = 14}, - [2324] = {.lex_state = 14}, - [2325] = {.lex_state = 27}, + [2324] = {.lex_state = 3}, + [2325] = {.lex_state = 17}, [2326] = {.lex_state = 14}, [2327] = {.lex_state = 14}, - [2328] = {.lex_state = 14}, - [2329] = {.lex_state = 27}, + [2328] = {.lex_state = 3}, + [2329] = {.lex_state = 17}, [2330] = {.lex_state = 14}, - [2331] = {.lex_state = 14}, - [2332] = {.lex_state = 14}, + [2331] = {.lex_state = 70}, + [2332] = {.lex_state = 27}, [2333] = {.lex_state = 14}, [2334] = {.lex_state = 14}, - [2335] = {.lex_state = 27}, - [2336] = {.lex_state = 27}, + [2335] = {.lex_state = 13}, + [2336] = {.lex_state = 14}, [2337] = {.lex_state = 14}, - [2338] = {.lex_state = 27}, + [2338] = {.lex_state = 19}, [2339] = {.lex_state = 14}, [2340] = {.lex_state = 14}, - [2341] = {.lex_state = 27}, + [2341] = {.lex_state = 14}, [2342] = {.lex_state = 14}, [2343] = {.lex_state = 14}, - [2344] = {.lex_state = 17}, - [2345] = {.lex_state = 18}, - [2346] = {.lex_state = 27}, - [2347] = {.lex_state = 17}, - [2348] = {.lex_state = 27}, - [2349] = {.lex_state = 27}, - [2350] = {.lex_state = 27}, + [2344] = {.lex_state = 27}, + [2345] = {.lex_state = 27}, + [2346] = {.lex_state = 23}, + [2347] = {.lex_state = 19}, + [2348] = {.lex_state = 14}, + [2349] = {.lex_state = 14}, + [2350] = {.lex_state = 19}, [2351] = {.lex_state = 14}, [2352] = {.lex_state = 14}, - [2353] = {.lex_state = 14}, - [2354] = {.lex_state = 14}, + [2353] = {.lex_state = 27}, + [2354] = {.lex_state = 27}, [2355] = {.lex_state = 14}, [2356] = {.lex_state = 14}, - [2357] = {.lex_state = 27}, + [2357] = {.lex_state = 14}, [2358] = {.lex_state = 14}, - [2359] = {.lex_state = 17}, + [2359] = {.lex_state = 14}, [2360] = {.lex_state = 14}, - [2361] = {.lex_state = 18}, - [2362] = {.lex_state = 27}, - [2363] = {.lex_state = 14}, + [2361] = {.lex_state = 17}, + [2362] = {.lex_state = 70}, + [2363] = {.lex_state = 19}, [2364] = {.lex_state = 27}, [2365] = {.lex_state = 14}, - [2366] = {.lex_state = 17}, + [2366] = {.lex_state = 14}, [2367] = {.lex_state = 14}, - [2368] = {.lex_state = 27}, - [2369] = {.lex_state = 17}, + [2368] = {.lex_state = 14}, + [2369] = {.lex_state = 14}, [2370] = {.lex_state = 14}, - [2371] = {.lex_state = 14}, + [2371] = {.lex_state = 19}, [2372] = {.lex_state = 14}, [2373] = {.lex_state = 14}, - [2374] = {.lex_state = 17}, - [2375] = {.lex_state = 17}, - [2376] = {.lex_state = 14}, - [2377] = {.lex_state = 18}, + [2374] = {.lex_state = 14}, + [2375] = {.lex_state = 14}, + [2376] = {.lex_state = 27}, + [2377] = {.lex_state = 27}, [2378] = {.lex_state = 14}, - [2379] = {.lex_state = 14}, - [2380] = {.lex_state = 14}, + [2379] = {.lex_state = 27}, + [2380] = {.lex_state = 13}, [2381] = {.lex_state = 14}, [2382] = {.lex_state = 14}, - [2383] = {.lex_state = 3}, - [2384] = {.lex_state = 18}, - [2385] = {.lex_state = 14}, - [2386] = {.lex_state = 3}, + [2383] = {.lex_state = 27}, + [2384] = {.lex_state = 14}, + [2385] = {.lex_state = 27}, + [2386] = {.lex_state = 14}, [2387] = {.lex_state = 14}, [2388] = {.lex_state = 14}, - [2389] = {.lex_state = 27}, - [2390] = {.lex_state = 70}, - [2391] = {.lex_state = 27}, - [2392] = {.lex_state = 27}, + [2389] = {.lex_state = 14}, + [2390] = {.lex_state = 14}, + [2391] = {.lex_state = 3}, + [2392] = {.lex_state = 14}, [2393] = {.lex_state = 14}, - [2394] = {.lex_state = 14}, - [2395] = {.lex_state = 3}, - [2396] = {.lex_state = 14}, - [2397] = {.lex_state = 13}, - [2398] = {.lex_state = 14}, - [2399] = {.lex_state = 14}, - [2400] = {.lex_state = 14}, - [2401] = {.lex_state = 3}, - [2402] = {.lex_state = 70}, - [2403] = {.lex_state = 13}, - [2404] = {.lex_state = 14}, - [2405] = {.lex_state = 14}, - [2406] = {.lex_state = 14}, - [2407] = {.lex_state = 14}, + [2394] = {.lex_state = 17}, + [2395] = {.lex_state = 14}, + [2396] = {.lex_state = 70}, + [2397] = {.lex_state = 10}, + [2398] = {.lex_state = 27}, + [2399] = {.lex_state = 6}, + [2400] = {.lex_state = 10}, + [2401] = {.lex_state = 10}, + [2402] = {.lex_state = 27}, + [2403] = {.lex_state = 70}, + [2404] = {.lex_state = 27}, + [2405] = {.lex_state = 17}, + [2406] = {.lex_state = 27}, + [2407] = {.lex_state = 17}, [2408] = {.lex_state = 14}, - [2409] = {.lex_state = 14}, - [2410] = {.lex_state = 14}, - [2411] = {.lex_state = 14}, - [2412] = {.lex_state = 27}, - [2413] = {.lex_state = 14}, - [2414] = {.lex_state = 18}, + [2409] = {.lex_state = 17}, + [2410] = {.lex_state = 17}, + [2411] = {.lex_state = 17}, + [2412] = {.lex_state = 17}, + [2413] = {.lex_state = 27}, + [2414] = {.lex_state = 27}, [2415] = {.lex_state = 14}, - [2416] = {.lex_state = 14}, - [2417] = {.lex_state = 17}, - [2418] = {.lex_state = 14}, - [2419] = {.lex_state = 27}, + [2416] = {.lex_state = 10}, + [2417] = {.lex_state = 10}, + [2418] = {.lex_state = 10}, + [2419] = {.lex_state = 14}, [2420] = {.lex_state = 27}, - [2421] = {.lex_state = 27}, - [2422] = {.lex_state = 6}, - [2423] = {.lex_state = 14}, - [2424] = {.lex_state = 17}, - [2425] = {.lex_state = 27}, - [2426] = {.lex_state = 10}, - [2427] = {.lex_state = 27}, + [2421] = {.lex_state = 14}, + [2422] = {.lex_state = 14}, + [2423] = {.lex_state = 27}, + [2424] = {.lex_state = 27}, + [2425] = {.lex_state = 14}, + [2426] = {.lex_state = 14}, + [2427] = {.lex_state = 14}, [2428] = {.lex_state = 27}, - [2429] = {.lex_state = 10}, + [2429] = {.lex_state = 6}, [2430] = {.lex_state = 27}, - [2431] = {.lex_state = 27}, - [2432] = {.lex_state = 14}, - [2433] = {.lex_state = 10}, + [2431] = {.lex_state = 10}, + [2432] = {.lex_state = 27}, + [2433] = {.lex_state = 27}, [2434] = {.lex_state = 27}, [2435] = {.lex_state = 10}, [2436] = {.lex_state = 10}, - [2437] = {.lex_state = 27}, - [2438] = {.lex_state = 27}, - [2439] = {.lex_state = 10}, - [2440] = {.lex_state = 6}, - [2441] = {.lex_state = 10}, + [2437] = {.lex_state = 3}, + [2438] = {.lex_state = 10}, + [2439] = {.lex_state = 3}, + [2440] = {.lex_state = 10}, + [2441] = {.lex_state = 27}, [2442] = {.lex_state = 10}, [2443] = {.lex_state = 10}, [2444] = {.lex_state = 10}, [2445] = {.lex_state = 14}, - [2446] = {.lex_state = 17}, - [2447] = {.lex_state = 27}, - [2448] = {.lex_state = 10}, - [2449] = {.lex_state = 27}, + [2446] = {.lex_state = 27}, + [2447] = {.lex_state = 10}, + [2448] = {.lex_state = 14}, + [2449] = {.lex_state = 10}, [2450] = {.lex_state = 10}, [2451] = {.lex_state = 10}, - [2452] = {.lex_state = 17}, + [2452] = {.lex_state = 14}, [2453] = {.lex_state = 10}, - [2454] = {.lex_state = 27}, - [2455] = {.lex_state = 17}, - [2456] = {.lex_state = 27}, + [2454] = {.lex_state = 10}, + [2455] = {.lex_state = 10}, + [2456] = {.lex_state = 10}, [2457] = {.lex_state = 10}, [2458] = {.lex_state = 10}, [2459] = {.lex_state = 10}, - [2460] = {.lex_state = 10}, - [2461] = {.lex_state = 10}, - [2462] = {.lex_state = 10}, + [2460] = {.lex_state = 14}, + [2461] = {.lex_state = 6}, + [2462] = {.lex_state = 27}, [2463] = {.lex_state = 14}, - [2464] = {.lex_state = 14}, - [2465] = {.lex_state = 10}, - [2466] = {.lex_state = 10, .external_lex_state = 3}, - [2467] = {.lex_state = 27}, - [2468] = {.lex_state = 10}, + [2464] = {.lex_state = 27}, + [2465] = {.lex_state = 14}, + [2466] = {.lex_state = 27}, + [2467] = {.lex_state = 14}, + [2468] = {.lex_state = 14}, [2469] = {.lex_state = 27}, [2470] = {.lex_state = 27}, - [2471] = {.lex_state = 17}, - [2472] = {.lex_state = 6}, + [2471] = {.lex_state = 10}, + [2472] = {.lex_state = 27}, [2473] = {.lex_state = 27}, - [2474] = {.lex_state = 3}, - [2475] = {.lex_state = 10}, - [2476] = {.lex_state = 27}, + [2474] = {.lex_state = 10}, + [2475] = {.lex_state = 27}, + [2476] = {.lex_state = 6}, [2477] = {.lex_state = 27}, - [2478] = {.lex_state = 14}, + [2478] = {.lex_state = 27}, [2479] = {.lex_state = 14}, - [2480] = {.lex_state = 27}, - [2481] = {.lex_state = 27}, - [2482] = {.lex_state = 27}, + [2480] = {.lex_state = 14}, + [2481] = {.lex_state = 14}, + [2482] = {.lex_state = 10}, [2483] = {.lex_state = 10}, - [2484] = {.lex_state = 27}, - [2485] = {.lex_state = 27}, + [2484] = {.lex_state = 10}, + [2485] = {.lex_state = 10}, [2486] = {.lex_state = 14}, [2487] = {.lex_state = 14}, [2488] = {.lex_state = 10}, - [2489] = {.lex_state = 14}, - [2490] = {.lex_state = 6}, - [2491] = {.lex_state = 14}, + [2489] = {.lex_state = 27}, + [2490] = {.lex_state = 27}, + [2491] = {.lex_state = 10}, [2492] = {.lex_state = 14}, [2493] = {.lex_state = 14}, - [2494] = {.lex_state = 10}, - [2495] = {.lex_state = 27}, - [2496] = {.lex_state = 70}, + [2494] = {.lex_state = 27}, + [2495] = {.lex_state = 10, .external_lex_state = 3}, + [2496] = {.lex_state = 27}, [2497] = {.lex_state = 27}, - [2498] = {.lex_state = 27}, - [2499] = {.lex_state = 3}, + [2498] = {.lex_state = 10, .external_lex_state = 4}, + [2499] = {.lex_state = 6}, [2500] = {.lex_state = 14}, - [2501] = {.lex_state = 27}, - [2502] = {.lex_state = 27}, - [2503] = {.lex_state = 27}, - [2504] = {.lex_state = 27}, - [2505] = {.lex_state = 27}, - [2506] = {.lex_state = 70}, - [2507] = {.lex_state = 10}, - [2508] = {.lex_state = 27}, - [2509] = {.lex_state = 14}, - [2510] = {.lex_state = 14}, - [2511] = {.lex_state = 10}, - [2512] = {.lex_state = 27}, - [2513] = {.lex_state = 14}, - [2514] = {.lex_state = 27}, - [2515] = {.lex_state = 27}, - [2516] = {.lex_state = 10}, - [2517] = {.lex_state = 14}, - [2518] = {.lex_state = 27}, - [2519] = {.lex_state = 10}, + [2501] = {.lex_state = 14}, + [2502] = {.lex_state = 14}, + [2503] = {.lex_state = 10}, + [2504] = {.lex_state = 10}, + [2505] = {.lex_state = 14}, + [2506] = {.lex_state = 17}, + [2507] = {.lex_state = 17}, + [2508] = {.lex_state = 70}, + [2509] = {.lex_state = 70}, + [2510] = {.lex_state = 17}, + [2511] = {.lex_state = 70}, + [2512] = {.lex_state = 17}, + [2513] = {.lex_state = 6}, + [2514] = {.lex_state = 6}, + [2515] = {.lex_state = 17}, + [2516] = {.lex_state = 14}, + [2517] = {.lex_state = 17}, + [2518] = {.lex_state = 17}, + [2519] = {.lex_state = 14}, [2520] = {.lex_state = 14}, [2521] = {.lex_state = 14}, - [2522] = {.lex_state = 14}, - [2523] = {.lex_state = 27}, - [2524] = {.lex_state = 10}, + [2522] = {.lex_state = 27}, + [2523] = {.lex_state = 14}, + [2524] = {.lex_state = 14}, [2525] = {.lex_state = 14}, - [2526] = {.lex_state = 10}, - [2527] = {.lex_state = 10}, - [2528] = {.lex_state = 14}, - [2529] = {.lex_state = 10, .external_lex_state = 4}, - [2530] = {.lex_state = 10}, - [2531] = {.lex_state = 10}, - [2532] = {.lex_state = 27}, - [2533] = {.lex_state = 70}, - [2534] = {.lex_state = 10}, - [2535] = {.lex_state = 10}, - [2536] = {.lex_state = 17}, - [2537] = {.lex_state = 6}, - [2538] = {.lex_state = 10}, - [2539] = {.lex_state = 10, .external_lex_state = 4}, - [2540] = {.lex_state = 70}, - [2541] = {.lex_state = 6}, - [2542] = {.lex_state = 6}, - [2543] = {.lex_state = 14}, - [2544] = {.lex_state = 6}, - [2545] = {.lex_state = 6}, - [2546] = {.lex_state = 70}, - [2547] = {.lex_state = 29}, - [2548] = {.lex_state = 70}, + [2526] = {.lex_state = 14}, + [2527] = {.lex_state = 17}, + [2528] = {.lex_state = 10}, + [2529] = {.lex_state = 14}, + [2530] = {.lex_state = 3}, + [2531] = {.lex_state = 14}, + [2532] = {.lex_state = 6}, + [2533] = {.lex_state = 29}, + [2534] = {.lex_state = 70}, + [2535] = {.lex_state = 14}, + [2536] = {.lex_state = 10}, + [2537] = {.lex_state = 70}, + [2538] = {.lex_state = 14}, + [2539] = {.lex_state = 14}, + [2540] = {.lex_state = 27}, + [2541] = {.lex_state = 14}, + [2542] = {.lex_state = 14}, + [2543] = {.lex_state = 70}, + [2544] = {.lex_state = 10}, + [2545] = {.lex_state = 14}, + [2546] = {.lex_state = 14}, + [2547] = {.lex_state = 27}, + [2548] = {.lex_state = 6}, [2549] = {.lex_state = 70}, - [2550] = {.lex_state = 6}, - [2551] = {.lex_state = 14}, - [2552] = {.lex_state = 6}, - [2553] = {.lex_state = 6}, + [2550] = {.lex_state = 14}, + [2551] = {.lex_state = 10}, + [2552] = {.lex_state = 14}, + [2553] = {.lex_state = 27}, [2554] = {.lex_state = 6}, - [2555] = {.lex_state = 10}, - [2556] = {.lex_state = 14}, - [2557] = {.lex_state = 10}, + [2555] = {.lex_state = 6}, + [2556] = {.lex_state = 70}, + [2557] = {.lex_state = 27}, [2558] = {.lex_state = 6}, - [2559] = {.lex_state = 70}, + [2559] = {.lex_state = 14}, [2560] = {.lex_state = 14}, - [2561] = {.lex_state = 16}, - [2562] = {.lex_state = 70}, - [2563] = {.lex_state = 10}, - [2564] = {.lex_state = 14}, - [2565] = {.lex_state = 3}, - [2566] = {.lex_state = 70}, - [2567] = {.lex_state = 70}, - [2568] = {.lex_state = 10}, + [2561] = {.lex_state = 14}, + [2562] = {.lex_state = 10}, + [2563] = {.lex_state = 70}, + [2564] = {.lex_state = 10}, + [2565] = {.lex_state = 70}, + [2566] = {.lex_state = 10, .external_lex_state = 4}, + [2567] = {.lex_state = 10}, + [2568] = {.lex_state = 70}, [2569] = {.lex_state = 70}, - [2570] = {.lex_state = 27}, - [2571] = {.lex_state = 10}, + [2570] = {.lex_state = 10}, + [2571] = {.lex_state = 27}, [2572] = {.lex_state = 10}, - [2573] = {.lex_state = 70}, - [2574] = {.lex_state = 70}, - [2575] = {.lex_state = 6}, - [2576] = {.lex_state = 10}, + [2573] = {.lex_state = 10, .external_lex_state = 4}, + [2574] = {.lex_state = 10}, + [2575] = {.lex_state = 10}, + [2576] = {.lex_state = 10, .external_lex_state = 4}, [2577] = {.lex_state = 10}, [2578] = {.lex_state = 10}, - [2579] = {.lex_state = 10, .external_lex_state = 4}, - [2580] = {.lex_state = 10}, + [2579] = {.lex_state = 10}, + [2580] = {.lex_state = 16}, [2581] = {.lex_state = 10}, - [2582] = {.lex_state = 70}, - [2583] = {.lex_state = 10}, + [2582] = {.lex_state = 10}, + [2583] = {.lex_state = 70}, [2584] = {.lex_state = 10}, [2585] = {.lex_state = 10}, - [2586] = {.lex_state = 10, .external_lex_state = 4}, - [2587] = {.lex_state = 70}, - [2588] = {.lex_state = 6}, + [2586] = {.lex_state = 10}, + [2587] = {.lex_state = 10, .external_lex_state = 4}, + [2588] = {.lex_state = 70}, [2589] = {.lex_state = 6}, [2590] = {.lex_state = 6}, [2591] = {.lex_state = 6}, - [2592] = {.lex_state = 10, .external_lex_state = 4}, - [2593] = {.lex_state = 10, .external_lex_state = 4}, - [2594] = {.lex_state = 27}, + [2592] = {.lex_state = 6}, + [2593] = {.lex_state = 70}, + [2594] = {.lex_state = 6}, [2595] = {.lex_state = 10}, - [2596] = {.lex_state = 10}, + [2596] = {.lex_state = 6}, [2597] = {.lex_state = 6}, - [2598] = {.lex_state = 6}, - [2599] = {.lex_state = 10}, - [2600] = {.lex_state = 14}, - [2601] = {.lex_state = 10}, - [2602] = {.lex_state = 70}, - [2603] = {.lex_state = 70}, - [2604] = {.lex_state = 10}, - [2605] = {.lex_state = 10}, - [2606] = {.lex_state = 10}, - [2607] = {.lex_state = 14}, - [2608] = {.lex_state = 10}, - [2609] = {.lex_state = 10, .external_lex_state = 4}, + [2598] = {.lex_state = 70}, + [2599] = {.lex_state = 70}, + [2600] = {.lex_state = 10}, + [2601] = {.lex_state = 27}, + [2602] = {.lex_state = 10}, + [2603] = {.lex_state = 10}, + [2604] = {.lex_state = 3}, + [2605] = {.lex_state = 70}, + [2606] = {.lex_state = 10, .external_lex_state = 4}, + [2607] = {.lex_state = 10}, + [2608] = {.lex_state = 16}, + [2609] = {.lex_state = 10}, [2610] = {.lex_state = 10}, - [2611] = {.lex_state = 29}, - [2612] = {.lex_state = 27}, + [2611] = {.lex_state = 70}, + [2612] = {.lex_state = 70}, [2613] = {.lex_state = 70}, [2614] = {.lex_state = 10, .external_lex_state = 4}, - [2615] = {.lex_state = 70}, - [2616] = {.lex_state = 6}, - [2617] = {.lex_state = 6}, - [2618] = {.lex_state = 6}, - [2619] = {.lex_state = 6}, - [2620] = {.lex_state = 6}, - [2621] = {.lex_state = 70}, + [2615] = {.lex_state = 10}, + [2616] = {.lex_state = 10}, + [2617] = {.lex_state = 10, .external_lex_state = 4}, + [2618] = {.lex_state = 10}, + [2619] = {.lex_state = 10}, + [2620] = {.lex_state = 70}, + [2621] = {.lex_state = 10}, [2622] = {.lex_state = 10}, - [2623] = {.lex_state = 10, .external_lex_state = 4}, - [2624] = {.lex_state = 10, .external_lex_state = 4}, - [2625] = {.lex_state = 70}, - [2626] = {.lex_state = 6}, + [2623] = {.lex_state = 70}, + [2624] = {.lex_state = 10}, + [2625] = {.lex_state = 14}, + [2626] = {.lex_state = 70}, [2627] = {.lex_state = 6}, - [2628] = {.lex_state = 17}, - [2629] = {.lex_state = 14}, - [2630] = {.lex_state = 14}, - [2631] = {.lex_state = 14}, - [2632] = {.lex_state = 70}, - [2633] = {.lex_state = 14}, - [2634] = {.lex_state = 70}, - [2635] = {.lex_state = 70}, + [2628] = {.lex_state = 6}, + [2629] = {.lex_state = 6}, + [2630] = {.lex_state = 6}, + [2631] = {.lex_state = 6}, + [2632] = {.lex_state = 10}, + [2633] = {.lex_state = 10}, + [2634] = {.lex_state = 6}, + [2635] = {.lex_state = 10}, [2636] = {.lex_state = 70}, - [2637] = {.lex_state = 6}, - [2638] = {.lex_state = 6}, - [2639] = {.lex_state = 6}, - [2640] = {.lex_state = 14}, - [2641] = {.lex_state = 6}, - [2642] = {.lex_state = 6}, + [2637] = {.lex_state = 10}, + [2638] = {.lex_state = 70}, + [2639] = {.lex_state = 10, .external_lex_state = 4}, + [2640] = {.lex_state = 10}, + [2641] = {.lex_state = 70}, + [2642] = {.lex_state = 10, .external_lex_state = 4}, [2643] = {.lex_state = 70}, - [2644] = {.lex_state = 70}, - [2645] = {.lex_state = 29}, - [2646] = {.lex_state = 27}, - [2647] = {.lex_state = 70}, - [2648] = {.lex_state = 70}, + [2644] = {.lex_state = 6}, + [2645] = {.lex_state = 6}, + [2646] = {.lex_state = 6}, + [2647] = {.lex_state = 6}, + [2648] = {.lex_state = 27}, [2649] = {.lex_state = 10}, - [2650] = {.lex_state = 3}, - [2651] = {.lex_state = 27}, - [2652] = {.lex_state = 27}, - [2653] = {.lex_state = 14}, - [2654] = {.lex_state = 70}, - [2655] = {.lex_state = 17}, - [2656] = {.lex_state = 14}, - [2657] = {.lex_state = 14}, - [2658] = {.lex_state = 10}, - [2659] = {.lex_state = 14}, - [2660] = {.lex_state = 14}, - [2661] = {.lex_state = 14}, - [2662] = {.lex_state = 10}, - [2663] = {.lex_state = 70}, - [2664] = {.lex_state = 70}, - [2665] = {.lex_state = 70}, - [2666] = {.lex_state = 10}, - [2667] = {.lex_state = 14}, - [2668] = {.lex_state = 14}, - [2669] = {.lex_state = 6}, - [2670] = {.lex_state = 27}, - [2671] = {.lex_state = 14}, - [2672] = {.lex_state = 14}, - [2673] = {.lex_state = 10}, + [2650] = {.lex_state = 27}, + [2651] = {.lex_state = 70}, + [2652] = {.lex_state = 10, .external_lex_state = 4}, + [2653] = {.lex_state = 70}, + [2654] = {.lex_state = 29}, + [2655] = {.lex_state = 10, .external_lex_state = 4}, + [2656] = {.lex_state = 6}, + [2657] = {.lex_state = 6}, + [2658] = {.lex_state = 70}, + [2659] = {.lex_state = 10}, + [2660] = {.lex_state = 10, .external_lex_state = 4}, + [2661] = {.lex_state = 6}, + [2662] = {.lex_state = 6}, + [2663] = {.lex_state = 6}, + [2664] = {.lex_state = 6}, + [2665] = {.lex_state = 10}, + [2666] = {.lex_state = 14}, + [2667] = {.lex_state = 70}, + [2668] = {.lex_state = 6}, + [2669] = {.lex_state = 27}, + [2670] = {.lex_state = 3}, + [2671] = {.lex_state = 70}, + [2672] = {.lex_state = 70}, + [2673] = {.lex_state = 14}, [2674] = {.lex_state = 14}, [2675] = {.lex_state = 10}, - [2676] = {.lex_state = 10}, - [2677] = {.lex_state = 14}, - [2678] = {.lex_state = 6}, - [2679] = {.lex_state = 70}, - [2680] = {.lex_state = 10}, - [2681] = {.lex_state = 27}, - [2682] = {.lex_state = 27}, - [2683] = {.lex_state = 70}, - [2684] = {.lex_state = 70}, - [2685] = {.lex_state = 10}, - [2686] = {.lex_state = 17}, + [2676] = {.lex_state = 14}, + [2677] = {.lex_state = 10}, + [2678] = {.lex_state = 14}, + [2679] = {.lex_state = 6}, + [2680] = {.lex_state = 16}, + [2681] = {.lex_state = 70}, + [2682] = {.lex_state = 10}, + [2683] = {.lex_state = 10}, + [2684] = {.lex_state = 29}, + [2685] = {.lex_state = 70}, + [2686] = {.lex_state = 14}, [2687] = {.lex_state = 70}, - [2688] = {.lex_state = 10}, - [2689] = {.lex_state = 10}, + [2688] = {.lex_state = 70}, + [2689] = {.lex_state = 70}, [2690] = {.lex_state = 6}, - [2691] = {.lex_state = 70}, - [2692] = {.lex_state = 14}, - [2693] = {.lex_state = 14}, - [2694] = {.lex_state = 10}, - [2695] = {.lex_state = 10}, - [2696] = {.lex_state = 10, .external_lex_state = 4}, - [2697] = {.lex_state = 27}, + [2691] = {.lex_state = 10}, + [2692] = {.lex_state = 10}, + [2693] = {.lex_state = 29}, + [2694] = {.lex_state = 70}, + [2695] = {.lex_state = 14}, + [2696] = {.lex_state = 10}, + [2697] = {.lex_state = 10}, [2698] = {.lex_state = 6}, - [2699] = {.lex_state = 70}, + [2699] = {.lex_state = 10}, [2700] = {.lex_state = 10}, - [2701] = {.lex_state = 14}, - [2702] = {.lex_state = 27}, - [2703] = {.lex_state = 14}, + [2701] = {.lex_state = 10}, + [2702] = {.lex_state = 6}, + [2703] = {.lex_state = 10}, [2704] = {.lex_state = 10}, - [2705] = {.lex_state = 10}, - [2706] = {.lex_state = 16}, - [2707] = {.lex_state = 14}, + [2705] = {.lex_state = 70}, + [2706] = {.lex_state = 10}, + [2707] = {.lex_state = 70}, [2708] = {.lex_state = 10}, - [2709] = {.lex_state = 10}, - [2710] = {.lex_state = 17}, - [2711] = {.lex_state = 70}, - [2712] = {.lex_state = 70}, - [2713] = {.lex_state = 10}, - [2714] = {.lex_state = 10}, - [2715] = {.lex_state = 6}, + [2709] = {.lex_state = 70}, + [2710] = {.lex_state = 70}, + [2711] = {.lex_state = 6}, + [2712] = {.lex_state = 3}, + [2713] = {.lex_state = 70}, + [2714] = {.lex_state = 14}, + [2715] = {.lex_state = 27}, [2716] = {.lex_state = 6}, - [2717] = {.lex_state = 3}, - [2718] = {.lex_state = 6}, - [2719] = {.lex_state = 6}, - [2720] = {.lex_state = 70}, - [2721] = {.lex_state = 14}, + [2717] = {.lex_state = 6}, + [2718] = {.lex_state = 3}, + [2719] = {.lex_state = 14}, + [2720] = {.lex_state = 6}, + [2721] = {.lex_state = 10}, [2722] = {.lex_state = 14}, - [2723] = {.lex_state = 70}, - [2724] = {.lex_state = 10}, - [2725] = {.lex_state = 6}, - [2726] = {.lex_state = 10}, - [2727] = {.lex_state = 6}, - [2728] = {.lex_state = 10, .external_lex_state = 4}, + [2723] = {.lex_state = 14}, + [2724] = {.lex_state = 14}, + [2725] = {.lex_state = 10}, + [2726] = {.lex_state = 6}, + [2727] = {.lex_state = 14}, + [2728] = {.lex_state = 6}, [2729] = {.lex_state = 6}, - [2730] = {.lex_state = 10, .external_lex_state = 4}, - [2731] = {.lex_state = 70}, - [2732] = {.lex_state = 10}, - [2733] = {.lex_state = 3}, - [2734] = {.lex_state = 10}, - [2735] = {.lex_state = 17}, - [2736] = {.lex_state = 14}, - [2737] = {.lex_state = 10}, - [2738] = {.lex_state = 3}, - [2739] = {.lex_state = 27}, - [2740] = {.lex_state = 14}, - [2741] = {.lex_state = 14}, - [2742] = {.lex_state = 14}, - [2743] = {.lex_state = 10}, - [2744] = {.lex_state = 10}, + [2730] = {.lex_state = 6}, + [2731] = {.lex_state = 6}, + [2732] = {.lex_state = 6}, + [2733] = {.lex_state = 6}, + [2734] = {.lex_state = 14}, + [2735] = {.lex_state = 70}, + [2736] = {.lex_state = 70}, + [2737] = {.lex_state = 14}, + [2738] = {.lex_state = 6}, + [2739] = {.lex_state = 70}, + [2740] = {.lex_state = 70}, + [2741] = {.lex_state = 70}, + [2742] = {.lex_state = 70}, + [2743] = {.lex_state = 70}, + [2744] = {.lex_state = 70}, [2745] = {.lex_state = 70}, [2746] = {.lex_state = 70}, [2747] = {.lex_state = 70}, - [2748] = {.lex_state = 6}, - [2749] = {.lex_state = 14}, - [2750] = {.lex_state = 6}, - [2751] = {.lex_state = 14}, - [2752] = {.lex_state = 10}, - [2753] = {.lex_state = 14}, + [2748] = {.lex_state = 70}, + [2749] = {.lex_state = 70}, + [2750] = {.lex_state = 70}, + [2751] = {.lex_state = 70}, + [2752] = {.lex_state = 70}, + [2753] = {.lex_state = 70}, [2754] = {.lex_state = 70}, - [2755] = {.lex_state = 6}, - [2756] = {.lex_state = 6}, - [2757] = {.lex_state = 6}, - [2758] = {.lex_state = 16}, - [2759] = {.lex_state = 6}, - [2760] = {.lex_state = 6}, - [2761] = {.lex_state = 14}, - [2762] = {.lex_state = 10}, + [2755] = {.lex_state = 70}, + [2756] = {.lex_state = 70}, + [2757] = {.lex_state = 70}, + [2758] = {.lex_state = 70}, + [2759] = {.lex_state = 70}, + [2760] = {.lex_state = 70}, + [2761] = {.lex_state = 70}, + [2762] = {.lex_state = 70}, [2763] = {.lex_state = 14}, - [2764] = {.lex_state = 29}, + [2764] = {.lex_state = 70}, [2765] = {.lex_state = 17}, [2766] = {.lex_state = 70}, - [2767] = {.lex_state = 10}, + [2767] = {.lex_state = 70}, [2768] = {.lex_state = 70}, - [2769] = {.lex_state = 17}, - [2770] = {.lex_state = 10}, - [2771] = {.lex_state = 14}, - [2772] = {.lex_state = 70}, + [2769] = {.lex_state = 70}, + [2770] = {.lex_state = 70}, + [2771] = {.lex_state = 70}, + [2772] = {.lex_state = 19}, [2773] = {.lex_state = 70}, [2774] = {.lex_state = 70}, - [2775] = {.lex_state = 17}, - [2776] = {.lex_state = 70}, + [2775] = {.lex_state = 70}, + [2776] = {.lex_state = 17}, [2777] = {.lex_state = 70}, [2778] = {.lex_state = 70}, - [2779] = {.lex_state = 27}, + [2779] = {.lex_state = 70}, [2780] = {.lex_state = 14}, - [2781] = {.lex_state = 70}, + [2781] = {.lex_state = 14}, [2782] = {.lex_state = 70}, - [2783] = {.lex_state = 70}, + [2783] = {.lex_state = 17}, [2784] = {.lex_state = 70}, - [2785] = {.lex_state = 70}, - [2786] = {.lex_state = 6}, - [2787] = {.lex_state = 17}, - [2788] = {.lex_state = 70}, + [2785] = {.lex_state = 17}, + [2786] = {.lex_state = 14}, + [2787] = {.lex_state = 70}, + [2788] = {.lex_state = 17}, [2789] = {.lex_state = 70}, [2790] = {.lex_state = 17}, [2791] = {.lex_state = 70}, - [2792] = {.lex_state = 18}, - [2793] = {.lex_state = 70}, + [2792] = {.lex_state = 70}, + [2793] = {.lex_state = 14}, [2794] = {.lex_state = 70}, [2795] = {.lex_state = 70}, - [2796] = {.lex_state = 70}, + [2796] = {.lex_state = 17}, [2797] = {.lex_state = 70}, [2798] = {.lex_state = 70}, - [2799] = {.lex_state = 70}, + [2799] = {.lex_state = 17}, [2800] = {.lex_state = 70}, [2801] = {.lex_state = 70}, - [2802] = {.lex_state = 70}, + [2802] = {.lex_state = 17}, [2803] = {.lex_state = 70}, - [2804] = {.lex_state = 70}, - [2805] = {.lex_state = 27}, - [2806] = {.lex_state = 70}, - [2807] = {.lex_state = 14}, + [2804] = {.lex_state = 17}, + [2805] = {.lex_state = 70}, + [2806] = {.lex_state = 17}, + [2807] = {.lex_state = 70}, [2808] = {.lex_state = 70}, - [2809] = {.lex_state = 17}, - [2810] = {.lex_state = 70}, - [2811] = {.lex_state = 70}, + [2809] = {.lex_state = 70}, + [2810] = {.lex_state = 17}, + [2811] = {.lex_state = 17}, [2812] = {.lex_state = 17}, [2813] = {.lex_state = 70}, [2814] = {.lex_state = 70}, - [2815] = {.lex_state = 70}, - [2816] = {.lex_state = 70}, - [2817] = {.lex_state = 17}, + [2815] = {.lex_state = 17}, + [2816] = {.lex_state = 17}, + [2817] = {.lex_state = 70}, [2818] = {.lex_state = 70}, - [2819] = {.lex_state = 70}, + [2819] = {.lex_state = 17}, [2820] = {.lex_state = 70}, [2821] = {.lex_state = 70}, - [2822] = {.lex_state = 70}, + [2822] = {.lex_state = 10}, [2823] = {.lex_state = 70}, - [2824] = {.lex_state = 17}, - [2825] = {.lex_state = 70}, + [2824] = {.lex_state = 70}, + [2825] = {.lex_state = 17}, [2826] = {.lex_state = 70}, - [2827] = {.lex_state = 70}, + [2827] = {.lex_state = 14}, [2828] = {.lex_state = 70}, - [2829] = {.lex_state = 6}, + [2829] = {.lex_state = 70}, [2830] = {.lex_state = 70}, - [2831] = {.lex_state = 70}, - [2832] = {.lex_state = 17}, - [2833] = {.lex_state = 70}, - [2834] = {.lex_state = 10}, - [2835] = {.lex_state = 14}, + [2831] = {.lex_state = 17}, + [2832] = {.lex_state = 70}, + [2833] = {.lex_state = 17}, + [2834] = {.lex_state = 70}, + [2835] = {.lex_state = 70}, [2836] = {.lex_state = 70}, - [2837] = {.lex_state = 70}, + [2837] = {.lex_state = 17}, [2838] = {.lex_state = 70}, [2839] = {.lex_state = 70}, [2840] = {.lex_state = 70}, @@ -12992,16 +12962,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2844] = {.lex_state = 70}, [2845] = {.lex_state = 70}, [2846] = {.lex_state = 70}, - [2847] = {.lex_state = 6}, + [2847] = {.lex_state = 70}, [2848] = {.lex_state = 70}, - [2849] = {.lex_state = 70}, - [2850] = {.lex_state = 18}, + [2849] = {.lex_state = 17}, + [2850] = {.lex_state = 70}, [2851] = {.lex_state = 70}, - [2852] = {.lex_state = 6}, - [2853] = {.lex_state = 14}, - [2854] = {.lex_state = 17}, + [2852] = {.lex_state = 70}, + [2853] = {.lex_state = 70}, + [2854] = {.lex_state = 70}, [2855] = {.lex_state = 70}, - [2856] = {.lex_state = 14}, + [2856] = {.lex_state = 70}, [2857] = {.lex_state = 70}, [2858] = {.lex_state = 70}, [2859] = {.lex_state = 70}, @@ -13009,254 +12979,254 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2861] = {.lex_state = 70}, [2862] = {.lex_state = 70}, [2863] = {.lex_state = 70}, - [2864] = {.lex_state = 70}, - [2865] = {.lex_state = 14}, + [2864] = {.lex_state = 6}, + [2865] = {.lex_state = 70}, [2866] = {.lex_state = 70}, [2867] = {.lex_state = 70}, - [2868] = {.lex_state = 17}, - [2869] = {.lex_state = 17}, + [2868] = {.lex_state = 70}, + [2869] = {.lex_state = 14}, [2870] = {.lex_state = 70}, [2871] = {.lex_state = 70}, [2872] = {.lex_state = 70}, - [2873] = {.lex_state = 70}, - [2874] = {.lex_state = 6}, - [2875] = {.lex_state = 14}, - [2876] = {.lex_state = 70}, + [2873] = {.lex_state = 14}, + [2874] = {.lex_state = 70}, + [2875] = {.lex_state = 70}, + [2876] = {.lex_state = 10, .external_lex_state = 4}, [2877] = {.lex_state = 70}, - [2878] = {.lex_state = 10}, - [2879] = {.lex_state = 70}, - [2880] = {.lex_state = 10}, - [2881] = {.lex_state = 17}, - [2882] = {.lex_state = 70}, - [2883] = {.lex_state = 70}, - [2884] = {.lex_state = 70}, - [2885] = {.lex_state = 17}, + [2878] = {.lex_state = 70}, + [2879] = {.lex_state = 17}, + [2880] = {.lex_state = 70}, + [2881] = {.lex_state = 70}, + [2882] = {.lex_state = 17}, + [2883] = {.lex_state = 17}, + [2884] = {.lex_state = 17}, + [2885] = {.lex_state = 6}, [2886] = {.lex_state = 70}, [2887] = {.lex_state = 70}, [2888] = {.lex_state = 70}, [2889] = {.lex_state = 70}, [2890] = {.lex_state = 70}, - [2891] = {.lex_state = 70}, + [2891] = {.lex_state = 6}, [2892] = {.lex_state = 70}, - [2893] = {.lex_state = 70}, + [2893] = {.lex_state = 17}, [2894] = {.lex_state = 70}, - [2895] = {.lex_state = 70}, - [2896] = {.lex_state = 17}, + [2895] = {.lex_state = 14}, + [2896] = {.lex_state = 14}, [2897] = {.lex_state = 70}, [2898] = {.lex_state = 70}, [2899] = {.lex_state = 70}, - [2900] = {.lex_state = 14}, + [2900] = {.lex_state = 70}, [2901] = {.lex_state = 70}, [2902] = {.lex_state = 70}, [2903] = {.lex_state = 70}, - [2904] = {.lex_state = 14}, + [2904] = {.lex_state = 70}, [2905] = {.lex_state = 70}, - [2906] = {.lex_state = 14}, + [2906] = {.lex_state = 70}, [2907] = {.lex_state = 70}, - [2908] = {.lex_state = 70}, - [2909] = {.lex_state = 70}, - [2910] = {.lex_state = 70}, + [2908] = {.lex_state = 19}, + [2909] = {.lex_state = 19}, + [2910] = {.lex_state = 14}, [2911] = {.lex_state = 70}, [2912] = {.lex_state = 70}, [2913] = {.lex_state = 70}, [2914] = {.lex_state = 70}, [2915] = {.lex_state = 14}, [2916] = {.lex_state = 6}, - [2917] = {.lex_state = 14}, + [2917] = {.lex_state = 70}, [2918] = {.lex_state = 70}, [2919] = {.lex_state = 70}, [2920] = {.lex_state = 70}, [2921] = {.lex_state = 70}, [2922] = {.lex_state = 70}, - [2923] = {.lex_state = 14}, + [2923] = {.lex_state = 70}, [2924] = {.lex_state = 70}, [2925] = {.lex_state = 70}, - [2926] = {.lex_state = 6}, + [2926] = {.lex_state = 70}, [2927] = {.lex_state = 70}, - [2928] = {.lex_state = 10}, - [2929] = {.lex_state = 70}, - [2930] = {.lex_state = 70}, + [2928] = {.lex_state = 70}, + [2929] = {.lex_state = 14}, + [2930] = {.lex_state = 14}, [2931] = {.lex_state = 70}, [2932] = {.lex_state = 70}, [2933] = {.lex_state = 70}, [2934] = {.lex_state = 70}, - [2935] = {.lex_state = 17}, - [2936] = {.lex_state = 18}, + [2935] = {.lex_state = 70}, + [2936] = {.lex_state = 70}, [2937] = {.lex_state = 70}, [2938] = {.lex_state = 70}, [2939] = {.lex_state = 70}, - [2940] = {.lex_state = 6}, + [2940] = {.lex_state = 70}, [2941] = {.lex_state = 70}, [2942] = {.lex_state = 70}, - [2943] = {.lex_state = 17}, + [2943] = {.lex_state = 10}, [2944] = {.lex_state = 70}, [2945] = {.lex_state = 14}, [2946] = {.lex_state = 70}, - [2947] = {.lex_state = 17}, - [2948] = {.lex_state = 70}, - [2949] = {.lex_state = 17}, - [2950] = {.lex_state = 14}, - [2951] = {.lex_state = 17}, + [2947] = {.lex_state = 70}, + [2948] = {.lex_state = 14}, + [2949] = {.lex_state = 70}, + [2950] = {.lex_state = 70}, + [2951] = {.lex_state = 70}, [2952] = {.lex_state = 70}, [2953] = {.lex_state = 70}, - [2954] = {.lex_state = 17}, + [2954] = {.lex_state = 6}, [2955] = {.lex_state = 70}, - [2956] = {.lex_state = 17}, + [2956] = {.lex_state = 19}, [2957] = {.lex_state = 70}, - [2958] = {.lex_state = 17}, + [2958] = {.lex_state = 70}, [2959] = {.lex_state = 70}, [2960] = {.lex_state = 70}, [2961] = {.lex_state = 70}, [2962] = {.lex_state = 70}, - [2963] = {.lex_state = 17}, + [2963] = {.lex_state = 70}, [2964] = {.lex_state = 17}, - [2965] = {.lex_state = 14}, + [2965] = {.lex_state = 17}, [2966] = {.lex_state = 70}, [2967] = {.lex_state = 70}, [2968] = {.lex_state = 17}, [2969] = {.lex_state = 70}, [2970] = {.lex_state = 70}, - [2971] = {.lex_state = 17}, - [2972] = {.lex_state = 6}, - [2973] = {.lex_state = 17}, - [2974] = {.lex_state = 70}, + [2971] = {.lex_state = 27}, + [2972] = {.lex_state = 70}, + [2973] = {.lex_state = 70}, + [2974] = {.lex_state = 19}, [2975] = {.lex_state = 70}, - [2976] = {.lex_state = 70}, - [2977] = {.lex_state = 70}, - [2978] = {.lex_state = 14}, - [2979] = {.lex_state = 14}, + [2976] = {.lex_state = 17}, + [2977] = {.lex_state = 17}, + [2978] = {.lex_state = 70}, + [2979] = {.lex_state = 70}, [2980] = {.lex_state = 70}, - [2981] = {.lex_state = 17}, + [2981] = {.lex_state = 70}, [2982] = {.lex_state = 70}, - [2983] = {.lex_state = 70}, + [2983] = {.lex_state = 17}, [2984] = {.lex_state = 70}, - [2985] = {.lex_state = 70}, + [2985] = {.lex_state = 14}, [2986] = {.lex_state = 70}, [2987] = {.lex_state = 70}, [2988] = {.lex_state = 70}, - [2989] = {.lex_state = 70}, + [2989] = {.lex_state = 27}, [2990] = {.lex_state = 70}, [2991] = {.lex_state = 70}, - [2992] = {.lex_state = 70}, - [2993] = {.lex_state = 70}, - [2994] = {.lex_state = 70}, + [2992] = {.lex_state = 6}, + [2993] = {.lex_state = 6}, + [2994] = {.lex_state = 14}, [2995] = {.lex_state = 70}, [2996] = {.lex_state = 70}, - [2997] = {.lex_state = 70}, + [2997] = {.lex_state = 6}, [2998] = {.lex_state = 70}, [2999] = {.lex_state = 70}, - [3000] = {.lex_state = 70}, - [3001] = {.lex_state = 70}, - [3002] = {.lex_state = 70}, - [3003] = {.lex_state = 17}, + [3000] = {.lex_state = 14}, + [3001] = {.lex_state = 17}, + [3002] = {.lex_state = 10}, + [3003] = {.lex_state = 70}, [3004] = {.lex_state = 70}, - [3005] = {.lex_state = 70}, + [3005] = {.lex_state = 14}, [3006] = {.lex_state = 70}, - [3007] = {.lex_state = 70}, - [3008] = {.lex_state = 18}, - [3009] = {.lex_state = 14}, + [3007] = {.lex_state = 17}, + [3008] = {.lex_state = 17}, + [3009] = {.lex_state = 70}, [3010] = {.lex_state = 70}, [3011] = {.lex_state = 70}, - [3012] = {.lex_state = 70}, + [3012] = {.lex_state = 14}, [3013] = {.lex_state = 70}, [3014] = {.lex_state = 70}, [3015] = {.lex_state = 70}, [3016] = {.lex_state = 70}, - [3017] = {.lex_state = 70}, + [3017] = {.lex_state = 14}, [3018] = {.lex_state = 70}, - [3019] = {.lex_state = 70}, - [3020] = {.lex_state = 70}, - [3021] = {.lex_state = 70}, - [3022] = {.lex_state = 70}, + [3019] = {.lex_state = 10}, + [3020] = {.lex_state = 6}, + [3021] = {.lex_state = 14}, + [3022] = {.lex_state = 6}, [3023] = {.lex_state = 70}, - [3024] = {.lex_state = 17}, + [3024] = {.lex_state = 6}, [3025] = {.lex_state = 14}, - [3026] = {.lex_state = 70}, + [3026] = {.lex_state = 6}, [3027] = {.lex_state = 70}, [3028] = {.lex_state = 6}, [3029] = {.lex_state = 17}, [3030] = {.lex_state = 70}, [3031] = {.lex_state = 70}, [3032] = {.lex_state = 70}, - [3033] = {.lex_state = 17}, + [3033] = {.lex_state = 14}, [3034] = {.lex_state = 70}, - [3035] = {.lex_state = 70}, + [3035] = {.lex_state = 14}, [3036] = {.lex_state = 70}, - [3037] = {.lex_state = 70}, - [3038] = {.lex_state = 70}, - [3039] = {.lex_state = 17}, - [3040] = {.lex_state = 17}, + [3037] = {.lex_state = 10}, + [3038] = {.lex_state = 14}, + [3039] = {.lex_state = 70}, + [3040] = {.lex_state = 14}, [3041] = {.lex_state = 70}, - [3042] = {.lex_state = 17}, - [3043] = {.lex_state = 17}, + [3042] = {.lex_state = 14}, + [3043] = {.lex_state = 14}, [3044] = {.lex_state = 70}, - [3045] = {.lex_state = 70}, - [3046] = {.lex_state = 6}, + [3045] = {.lex_state = 14}, + [3046] = {.lex_state = 14}, [3047] = {.lex_state = 14}, - [3048] = {.lex_state = 70}, + [3048] = {.lex_state = 14}, [3049] = {.lex_state = 70}, [3050] = {.lex_state = 70}, - [3051] = {.lex_state = 14}, + [3051] = {.lex_state = 70}, [3052] = {.lex_state = 70}, [3053] = {.lex_state = 70}, - [3054] = {.lex_state = 14}, - [3055] = {.lex_state = 6}, + [3054] = {.lex_state = 70}, + [3055] = {.lex_state = 70}, [3056] = {.lex_state = 70}, - [3057] = {.lex_state = 6}, + [3057] = {.lex_state = 70}, [3058] = {.lex_state = 70}, - [3059] = {.lex_state = 18}, + [3059] = {.lex_state = 70}, [3060] = {.lex_state = 14}, - [3061] = {.lex_state = 70}, - [3062] = {.lex_state = 6}, - [3063] = {.lex_state = 70}, - [3064] = {.lex_state = 17}, - [3065] = {.lex_state = 70}, + [3061] = {.lex_state = 14}, + [3062] = {.lex_state = 14}, + [3063] = {.lex_state = 14}, + [3064] = {.lex_state = 14}, + [3065] = {.lex_state = 14}, [3066] = {.lex_state = 14}, - [3067] = {.lex_state = 70}, - [3068] = {.lex_state = 10, .external_lex_state = 4}, + [3067] = {.lex_state = 14}, + [3068] = {.lex_state = 70}, [3069] = {.lex_state = 70}, [3070] = {.lex_state = 70}, - [3071] = {.lex_state = 70}, + [3071] = {.lex_state = 14}, [3072] = {.lex_state = 70}, [3073] = {.lex_state = 70}, - [3074] = {.lex_state = 70}, - [3075] = {.lex_state = 14}, - [3076] = {.lex_state = 70}, + [3074] = {.lex_state = 14}, + [3075] = {.lex_state = 70}, + [3076] = {.lex_state = 14}, [3077] = {.lex_state = 70}, [3078] = {.lex_state = 70}, - [3079] = {.lex_state = 14}, + [3079] = {.lex_state = 70}, [3080] = {.lex_state = 14}, - [3081] = {.lex_state = 14}, - [3082] = {.lex_state = 14}, - [3083] = {.lex_state = 14}, - [3084] = {.lex_state = 14}, + [3081] = {.lex_state = 70}, + [3082] = {.lex_state = 70}, + [3083] = {.lex_state = 70}, + [3084] = {.lex_state = 70}, [3085] = {.lex_state = 70}, [3086] = {.lex_state = 70}, - [3087] = {.lex_state = 70}, + [3087] = {.lex_state = 14}, [3088] = {.lex_state = 70}, [3089] = {.lex_state = 70}, - [3090] = {.lex_state = 27}, + [3090] = {.lex_state = 70}, [3091] = {.lex_state = 14}, - [3092] = {.lex_state = 14}, - [3093] = {.lex_state = 14}, - [3094] = {.lex_state = 14}, - [3095] = {.lex_state = 70}, - [3096] = {.lex_state = 70}, + [3092] = {.lex_state = 70}, + [3093] = {.lex_state = 70}, + [3094] = {.lex_state = 10, .external_lex_state = 5}, + [3095] = {.lex_state = 14}, + [3096] = {.lex_state = 14}, [3097] = {.lex_state = 70}, [3098] = {.lex_state = 70}, - [3099] = {.lex_state = 10}, + [3099] = {.lex_state = 14}, [3100] = {.lex_state = 70}, - [3101] = {.lex_state = 70}, + [3101] = {.lex_state = 14}, [3102] = {.lex_state = 14}, [3103] = {.lex_state = 14}, - [3104] = {.lex_state = 14}, - [3105] = {.lex_state = 14}, + [3104] = {.lex_state = 70}, + [3105] = {.lex_state = 70, .external_lex_state = 6}, [3106] = {.lex_state = 14}, - [3107] = {.lex_state = 14}, - [3108] = {.lex_state = 10, .external_lex_state = 5}, + [3107] = {.lex_state = 70}, + [3108] = {.lex_state = 70}, [3109] = {.lex_state = 14}, [3110] = {.lex_state = 14}, - [3111] = {.lex_state = 70}, + [3111] = {.lex_state = 14}, [3112] = {.lex_state = 14}, [3113] = {.lex_state = 14}, [3114] = {.lex_state = 70}, @@ -13264,41 +13234,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3116] = {.lex_state = 70}, [3117] = {.lex_state = 70}, [3118] = {.lex_state = 14}, - [3119] = {.lex_state = 14}, + [3119] = {.lex_state = 70}, [3120] = {.lex_state = 70}, - [3121] = {.lex_state = 70}, - [3122] = {.lex_state = 70, .external_lex_state = 6}, + [3121] = {.lex_state = 10, .external_lex_state = 5}, + [3122] = {.lex_state = 14}, [3123] = {.lex_state = 14}, - [3124] = {.lex_state = 70}, - [3125] = {.lex_state = 70}, + [3124] = {.lex_state = 14}, + [3125] = {.lex_state = 14}, [3126] = {.lex_state = 70}, - [3127] = {.lex_state = 70}, + [3127] = {.lex_state = 14}, [3128] = {.lex_state = 70}, [3129] = {.lex_state = 70}, [3130] = {.lex_state = 70}, [3131] = {.lex_state = 14}, [3132] = {.lex_state = 14}, [3133] = {.lex_state = 70}, - [3134] = {.lex_state = 70}, - [3135] = {.lex_state = 14}, - [3136] = {.lex_state = 14}, + [3134] = {.lex_state = 5}, + [3135] = {.lex_state = 5}, + [3136] = {.lex_state = 70}, [3137] = {.lex_state = 14}, [3138] = {.lex_state = 14}, - [3139] = {.lex_state = 70}, + [3139] = {.lex_state = 14}, [3140] = {.lex_state = 70}, - [3141] = {.lex_state = 10}, + [3141] = {.lex_state = 70}, [3142] = {.lex_state = 70}, - [3143] = {.lex_state = 14}, + [3143] = {.lex_state = 10, .external_lex_state = 5}, [3144] = {.lex_state = 70}, - [3145] = {.lex_state = 14}, - [3146] = {.lex_state = 14}, - [3147] = {.lex_state = 14}, - [3148] = {.lex_state = 10, .external_lex_state = 5}, - [3149] = {.lex_state = 14}, - [3150] = {.lex_state = 27}, - [3151] = {.lex_state = 27}, - [3152] = {.lex_state = 70}, - [3153] = {.lex_state = 70}, + [3145] = {.lex_state = 70}, + [3146] = {.lex_state = 70}, + [3147] = {.lex_state = 70}, + [3148] = {.lex_state = 70}, + [3149] = {.lex_state = 70}, + [3150] = {.lex_state = 14}, + [3151] = {.lex_state = 14}, + [3152] = {.lex_state = 14}, + [3153] = {.lex_state = 14}, [3154] = {.lex_state = 14}, [3155] = {.lex_state = 70}, [3156] = {.lex_state = 70}, @@ -13306,104 +13276,104 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3158] = {.lex_state = 70}, [3159] = {.lex_state = 70}, [3160] = {.lex_state = 70}, - [3161] = {.lex_state = 14}, + [3161] = {.lex_state = 70}, [3162] = {.lex_state = 70}, [3163] = {.lex_state = 14}, - [3164] = {.lex_state = 70}, - [3165] = {.lex_state = 70}, - [3166] = {.lex_state = 70}, - [3167] = {.lex_state = 70}, - [3168] = {.lex_state = 70}, - [3169] = {.lex_state = 10, .external_lex_state = 5}, + [3164] = {.lex_state = 14}, + [3165] = {.lex_state = 14}, + [3166] = {.lex_state = 14}, + [3167] = {.lex_state = 14}, + [3168] = {.lex_state = 14}, + [3169] = {.lex_state = 70}, [3170] = {.lex_state = 14}, - [3171] = {.lex_state = 70}, - [3172] = {.lex_state = 14}, - [3173] = {.lex_state = 70}, + [3171] = {.lex_state = 14}, + [3172] = {.lex_state = 70}, + [3173] = {.lex_state = 14}, [3174] = {.lex_state = 14}, [3175] = {.lex_state = 14}, - [3176] = {.lex_state = 70}, + [3176] = {.lex_state = 14}, [3177] = {.lex_state = 14}, - [3178] = {.lex_state = 70}, - [3179] = {.lex_state = 70}, - [3180] = {.lex_state = 70}, - [3181] = {.lex_state = 70}, - [3182] = {.lex_state = 70}, - [3183] = {.lex_state = 70}, - [3184] = {.lex_state = 70}, - [3185] = {.lex_state = 70}, + [3178] = {.lex_state = 14}, + [3179] = {.lex_state = 14}, + [3180] = {.lex_state = 14}, + [3181] = {.lex_state = 14}, + [3182] = {.lex_state = 14}, + [3183] = {.lex_state = 14}, + [3184] = {.lex_state = 14}, + [3185] = {.lex_state = 14}, [3186] = {.lex_state = 14}, - [3187] = {.lex_state = 14}, - [3188] = {.lex_state = 70}, + [3187] = {.lex_state = 70}, + [3188] = {.lex_state = 14}, [3189] = {.lex_state = 14}, [3190] = {.lex_state = 70}, - [3191] = {.lex_state = 14}, - [3192] = {.lex_state = 14}, - [3193] = {.lex_state = 14}, - [3194] = {.lex_state = 70}, + [3191] = {.lex_state = 70}, + [3192] = {.lex_state = 70}, + [3193] = {.lex_state = 70}, + [3194] = {.lex_state = 14}, [3195] = {.lex_state = 70}, - [3196] = {.lex_state = 27}, - [3197] = {.lex_state = 27}, - [3198] = {.lex_state = 14}, + [3196] = {.lex_state = 6}, + [3197] = {.lex_state = 14}, + [3198] = {.lex_state = 70}, [3199] = {.lex_state = 14}, - [3200] = {.lex_state = 70}, - [3201] = {.lex_state = 70}, - [3202] = {.lex_state = 70}, - [3203] = {.lex_state = 14}, + [3200] = {.lex_state = 14}, + [3201] = {.lex_state = 14}, + [3202] = {.lex_state = 14}, + [3203] = {.lex_state = 70}, [3204] = {.lex_state = 14}, - [3205] = {.lex_state = 14}, - [3206] = {.lex_state = 14}, - [3207] = {.lex_state = 14}, + [3205] = {.lex_state = 70}, + [3206] = {.lex_state = 70}, + [3207] = {.lex_state = 70}, [3208] = {.lex_state = 14}, - [3209] = {.lex_state = 14}, - [3210] = {.lex_state = 14}, + [3209] = {.lex_state = 70}, + [3210] = {.lex_state = 70}, [3211] = {.lex_state = 14}, - [3212] = {.lex_state = 14}, - [3213] = {.lex_state = 14}, - [3214] = {.lex_state = 14}, - [3215] = {.lex_state = 14}, - [3216] = {.lex_state = 14}, - [3217] = {.lex_state = 14}, - [3218] = {.lex_state = 14}, - [3219] = {.lex_state = 14}, + [3212] = {.lex_state = 70}, + [3213] = {.lex_state = 70, .external_lex_state = 6}, + [3214] = {.lex_state = 70}, + [3215] = {.lex_state = 70}, + [3216] = {.lex_state = 70}, + [3217] = {.lex_state = 70}, + [3218] = {.lex_state = 70}, + [3219] = {.lex_state = 70}, [3220] = {.lex_state = 14}, - [3221] = {.lex_state = 14}, - [3222] = {.lex_state = 14}, - [3223] = {.lex_state = 14}, - [3224] = {.lex_state = 14}, - [3225] = {.lex_state = 14}, + [3221] = {.lex_state = 70}, + [3222] = {.lex_state = 70}, + [3223] = {.lex_state = 70}, + [3224] = {.lex_state = 70}, + [3225] = {.lex_state = 70}, [3226] = {.lex_state = 70}, [3227] = {.lex_state = 70}, - [3228] = {.lex_state = 70}, + [3228] = {.lex_state = 14}, [3229] = {.lex_state = 70}, - [3230] = {.lex_state = 70}, - [3231] = {.lex_state = 6}, + [3230] = {.lex_state = 14}, + [3231] = {.lex_state = 70}, [3232] = {.lex_state = 70}, [3233] = {.lex_state = 70}, - [3234] = {.lex_state = 14}, + [3234] = {.lex_state = 70}, [3235] = {.lex_state = 70}, [3236] = {.lex_state = 70}, [3237] = {.lex_state = 70}, - [3238] = {.lex_state = 14}, - [3239] = {.lex_state = 70}, - [3240] = {.lex_state = 70}, - [3241] = {.lex_state = 70}, + [3238] = {.lex_state = 70}, + [3239] = {.lex_state = 14}, + [3240] = {.lex_state = 10}, + [3241] = {.lex_state = 14}, [3242] = {.lex_state = 70}, - [3243] = {.lex_state = 70}, + [3243] = {.lex_state = 14}, [3244] = {.lex_state = 70}, - [3245] = {.lex_state = 70}, + [3245] = {.lex_state = 27}, [3246] = {.lex_state = 70}, [3247] = {.lex_state = 70}, [3248] = {.lex_state = 70}, [3249] = {.lex_state = 70}, - [3250] = {.lex_state = 14}, - [3251] = {.lex_state = 14}, - [3252] = {.lex_state = 14}, + [3250] = {.lex_state = 70}, + [3251] = {.lex_state = 70}, + [3252] = {.lex_state = 70}, [3253] = {.lex_state = 70}, - [3254] = {.lex_state = 70, .external_lex_state = 6}, - [3255] = {.lex_state = 14}, + [3254] = {.lex_state = 70}, + [3255] = {.lex_state = 70}, [3256] = {.lex_state = 70}, [3257] = {.lex_state = 70}, - [3258] = {.lex_state = 14}, + [3258] = {.lex_state = 70}, [3259] = {.lex_state = 70}, [3260] = {.lex_state = 14}, [3261] = {.lex_state = 70}, @@ -13412,406 +13382,364 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3264] = {.lex_state = 70}, [3265] = {.lex_state = 70}, [3266] = {.lex_state = 70}, - [3267] = {.lex_state = 70}, + [3267] = {.lex_state = 27}, [3268] = {.lex_state = 70}, - [3269] = {.lex_state = 70}, - [3270] = {.lex_state = 70}, - [3271] = {.lex_state = 14}, + [3269] = {.lex_state = 19}, + [3270] = {.lex_state = 27}, + [3271] = {.lex_state = 70}, [3272] = {.lex_state = 70}, [3273] = {.lex_state = 70}, [3274] = {.lex_state = 70}, [3275] = {.lex_state = 70}, [3276] = {.lex_state = 70}, [3277] = {.lex_state = 70}, - [3278] = {.lex_state = 70}, + [3278] = {.lex_state = 14}, [3279] = {.lex_state = 70}, - [3280] = {.lex_state = 70}, - [3281] = {.lex_state = 70}, - [3282] = {.lex_state = 5}, - [3283] = {.lex_state = 70}, + [3280] = {.lex_state = 27}, + [3281] = {.lex_state = 14}, + [3282] = {.lex_state = 27}, + [3283] = {.lex_state = 14}, [3284] = {.lex_state = 70}, [3285] = {.lex_state = 70}, - [3286] = {.lex_state = 5}, + [3286] = {.lex_state = 14}, [3287] = {.lex_state = 70}, - [3288] = {.lex_state = 70}, + [3288] = {.lex_state = 14}, [3289] = {.lex_state = 70}, - [3290] = {.lex_state = 70}, + [3290] = {.lex_state = 6}, [3291] = {.lex_state = 70}, [3292] = {.lex_state = 14}, [3293] = {.lex_state = 70}, - [3294] = {.lex_state = 70}, + [3294] = {.lex_state = 14}, [3295] = {.lex_state = 14}, - [3296] = {.lex_state = 70}, - [3297] = {.lex_state = 70}, + [3296] = {.lex_state = 14}, + [3297] = {.lex_state = 14}, [3298] = {.lex_state = 70}, - [3299] = {.lex_state = 18}, + [3299] = {.lex_state = 14}, [3300] = {.lex_state = 70}, - [3301] = {.lex_state = 70}, + [3301] = {.lex_state = 14}, [3302] = {.lex_state = 70}, [3303] = {.lex_state = 14}, [3304] = {.lex_state = 14}, - [3305] = {.lex_state = 70}, - [3306] = {.lex_state = 70}, - [3307] = {.lex_state = 70}, + [3305] = {.lex_state = 14}, + [3306] = {.lex_state = 14}, + [3307] = {.lex_state = 14}, [3308] = {.lex_state = 14}, - [3309] = {.lex_state = 14}, + [3309] = {.lex_state = 70}, [3310] = {.lex_state = 70}, [3311] = {.lex_state = 70}, - [3312] = {.lex_state = 14}, + [3312] = {.lex_state = 27}, [3313] = {.lex_state = 14}, - [3314] = {.lex_state = 6}, - [3315] = {.lex_state = 27}, - [3316] = {.lex_state = 70}, - [3317] = {.lex_state = 70}, - [3318] = {.lex_state = 70}, - [3319] = {.lex_state = 70}, - [3320] = {.lex_state = 70}, - [3321] = {.lex_state = 70}, + [3314] = {.lex_state = 14}, + [3315] = {.lex_state = 70}, + [3316] = {.lex_state = 14}, + [3317] = {.lex_state = 14}, + [3318] = {.lex_state = 14}, + [3319] = {.lex_state = 14}, + [3320] = {.lex_state = 14}, + [3321] = {.lex_state = 14}, [3322] = {.lex_state = 70}, - [3323] = {.lex_state = 70}, + [3323] = {.lex_state = 19}, [3324] = {.lex_state = 70}, [3325] = {.lex_state = 14}, - [3326] = {.lex_state = 14}, - [3327] = {.lex_state = 70}, + [3326] = {.lex_state = 70}, + [3327] = {.lex_state = 19}, [3328] = {.lex_state = 70}, - [3329] = {.lex_state = 14}, + [3329] = {.lex_state = 70}, [3330] = {.lex_state = 14}, - [3331] = {.lex_state = 14}, + [3331] = {.lex_state = 71}, [3332] = {.lex_state = 70}, - [3333] = {.lex_state = 14}, - [3334] = {.lex_state = 14}, - [3335] = {.lex_state = 14}, - [3336] = {.lex_state = 14}, + [3333] = {.lex_state = 70}, + [3334] = {.lex_state = 70}, + [3335] = {.lex_state = 70}, + [3336] = {.lex_state = 70}, [3337] = {.lex_state = 14}, - [3338] = {.lex_state = 70}, - [3339] = {.lex_state = 14}, - [3340] = {.lex_state = 70}, + [3338] = {.lex_state = 14}, + [3339] = {.lex_state = 70}, + [3340] = {.lex_state = 70, .external_lex_state = 7}, [3341] = {.lex_state = 70}, [3342] = {.lex_state = 14}, - [3343] = {.lex_state = 14}, - [3344] = {.lex_state = 14}, + [3343] = {.lex_state = 70}, + [3344] = {.lex_state = 70}, [3345] = {.lex_state = 70}, [3346] = {.lex_state = 14}, - [3347] = {.lex_state = 14}, + [3347] = {.lex_state = 70}, [3348] = {.lex_state = 14}, - [3349] = {.lex_state = 14}, - [3350] = {.lex_state = 14}, + [3349] = {.lex_state = 70}, + [3350] = {.lex_state = 70}, [3351] = {.lex_state = 70}, - [3352] = {.lex_state = 14}, + [3352] = {.lex_state = 70}, [3353] = {.lex_state = 14}, [3354] = {.lex_state = 70}, - [3355] = {.lex_state = 70}, - [3356] = {.lex_state = 70}, - [3357] = {.lex_state = 70}, - [3358] = {.lex_state = 70, .external_lex_state = 7}, - [3359] = {.lex_state = 18}, - [3360] = {.lex_state = 14}, - [3361] = {.lex_state = 14}, - [3362] = {.lex_state = 14}, - [3363] = {.lex_state = 14}, - [3364] = {.lex_state = 14}, - [3365] = {.lex_state = 70}, - [3366] = {.lex_state = 14}, + [3355] = {.lex_state = 14}, + [3356] = {.lex_state = 14}, + [3357] = {.lex_state = 14}, + [3358] = {.lex_state = 14}, + [3359] = {.lex_state = 14}, + [3360] = {.lex_state = 70}, + [3361] = {.lex_state = 70}, + [3362] = {.lex_state = 70}, + [3363] = {.lex_state = 10}, + [3364] = {.lex_state = 71}, + [3365] = {.lex_state = 71}, + [3366] = {.lex_state = 71}, [3367] = {.lex_state = 70}, [3368] = {.lex_state = 70}, [3369] = {.lex_state = 70}, [3370] = {.lex_state = 70}, - [3371] = {.lex_state = 70}, - [3372] = {.lex_state = 71}, - [3373] = {.lex_state = 70}, + [3371] = {.lex_state = 14}, + [3372] = {.lex_state = 70}, + [3373] = {.lex_state = 70, .external_lex_state = 7}, [3374] = {.lex_state = 70}, - [3375] = {.lex_state = 70}, + [3375] = {.lex_state = 14}, [3376] = {.lex_state = 70}, - [3377] = {.lex_state = 14}, + [3377] = {.lex_state = 70}, [3378] = {.lex_state = 70}, - [3379] = {.lex_state = 14}, - [3380] = {.lex_state = 14}, + [3379] = {.lex_state = 70}, + [3380] = {.lex_state = 70}, [3381] = {.lex_state = 70}, [3382] = {.lex_state = 70}, [3383] = {.lex_state = 14}, - [3384] = {.lex_state = 14}, - [3385] = {.lex_state = 70}, + [3384] = {.lex_state = 70}, + [3385] = {.lex_state = 14}, [3386] = {.lex_state = 70}, [3387] = {.lex_state = 70}, - [3388] = {.lex_state = 70}, - [3389] = {.lex_state = 71}, - [3390] = {.lex_state = 70}, + [3388] = {.lex_state = 14}, + [3389] = {.lex_state = 70}, + [3390] = {.lex_state = 14}, [3391] = {.lex_state = 70}, [3392] = {.lex_state = 70}, [3393] = {.lex_state = 70}, [3394] = {.lex_state = 14}, - [3395] = {.lex_state = 70}, - [3396] = {.lex_state = 14}, - [3397] = {.lex_state = 14}, - [3398] = {.lex_state = 14}, - [3399] = {.lex_state = 14}, - [3400] = {.lex_state = 14}, - [3401] = {.lex_state = 70}, - [3402] = {.lex_state = 70, .external_lex_state = 7}, - [3403] = {.lex_state = 70, .external_lex_state = 8}, - [3404] = {.lex_state = 14}, - [3405] = {.lex_state = 14}, - [3406] = {.lex_state = 10}, + [3395] = {.lex_state = 14}, + [3396] = {.lex_state = 70}, + [3397] = {.lex_state = 70}, + [3398] = {.lex_state = 70}, + [3399] = {.lex_state = 70}, + [3400] = {.lex_state = 70}, + [3401] = {.lex_state = 14}, + [3402] = {.lex_state = 70}, + [3403] = {.lex_state = 70}, + [3404] = {.lex_state = 70}, + [3405] = {.lex_state = 70, .external_lex_state = 8}, + [3406] = {.lex_state = 70}, [3407] = {.lex_state = 70}, [3408] = {.lex_state = 70}, [3409] = {.lex_state = 70}, [3410] = {.lex_state = 70}, - [3411] = {.lex_state = 14}, + [3411] = {.lex_state = 70}, [3412] = {.lex_state = 70}, - [3413] = {.lex_state = 70}, - [3414] = {.lex_state = 70, .external_lex_state = 7}, + [3413] = {.lex_state = 70, .external_lex_state = 7}, + [3414] = {.lex_state = 71}, [3415] = {.lex_state = 70}, [3416] = {.lex_state = 14}, - [3417] = {.lex_state = 70}, + [3417] = {.lex_state = 14}, [3418] = {.lex_state = 70}, - [3419] = {.lex_state = 14}, - [3420] = {.lex_state = 71}, + [3419] = {.lex_state = 70}, + [3420] = {.lex_state = 14}, [3421] = {.lex_state = 70}, - [3422] = {.lex_state = 70}, + [3422] = {.lex_state = 10}, [3423] = {.lex_state = 70}, [3424] = {.lex_state = 70}, - [3425] = {.lex_state = 70}, + [3425] = {.lex_state = 14}, [3426] = {.lex_state = 70}, - [3427] = {.lex_state = 165}, + [3427] = {.lex_state = 70}, [3428] = {.lex_state = 70}, [3429] = {.lex_state = 70}, [3430] = {.lex_state = 70}, - [3431] = {.lex_state = 18}, - [3432] = {.lex_state = 70}, - [3433] = {.lex_state = 70}, - [3434] = {.lex_state = 71}, - [3435] = {.lex_state = 14}, - [3436] = {.lex_state = 14}, + [3431] = {.lex_state = 70}, + [3432] = {.lex_state = 70, .external_lex_state = 8}, + [3433] = {.lex_state = 70, .external_lex_state = 7}, + [3434] = {.lex_state = 14}, + [3435] = {.lex_state = 70}, + [3436] = {.lex_state = 70}, [3437] = {.lex_state = 70}, - [3438] = {.lex_state = 70, .external_lex_state = 8}, + [3438] = {.lex_state = 19}, [3439] = {.lex_state = 70}, [3440] = {.lex_state = 70}, - [3441] = {.lex_state = 14}, - [3442] = {.lex_state = 14}, + [3441] = {.lex_state = 70}, + [3442] = {.lex_state = 70, .external_lex_state = 8}, [3443] = {.lex_state = 70}, [3444] = {.lex_state = 14}, - [3445] = {.lex_state = 70}, - [3446] = {.lex_state = 14}, + [3445] = {.lex_state = 71}, + [3446] = {.lex_state = 70}, [3447] = {.lex_state = 14}, [3448] = {.lex_state = 70}, [3449] = {.lex_state = 70}, - [3450] = {.lex_state = 70}, - [3451] = {.lex_state = 70}, + [3450] = {.lex_state = 14}, + [3451] = {.lex_state = 14}, [3452] = {.lex_state = 70}, - [3453] = {.lex_state = 70}, + [3453] = {.lex_state = 165}, [3454] = {.lex_state = 70}, - [3455] = {.lex_state = 14}, - [3456] = {.lex_state = 70, .external_lex_state = 8}, - [3457] = {.lex_state = 70}, - [3458] = {.lex_state = 14}, + [3455] = {.lex_state = 70}, + [3456] = {.lex_state = 70}, + [3457] = {.lex_state = 71}, + [3458] = {.lex_state = 70}, [3459] = {.lex_state = 70}, - [3460] = {.lex_state = 14}, - [3461] = {.lex_state = 14}, - [3462] = {.lex_state = 14}, + [3460] = {.lex_state = 70}, + [3461] = {.lex_state = 70}, + [3462] = {.lex_state = 70}, [3463] = {.lex_state = 70}, - [3464] = {.lex_state = 70}, + [3464] = {.lex_state = 14}, [3465] = {.lex_state = 70}, - [3466] = {.lex_state = 70}, + [3466] = {.lex_state = 70, .external_lex_state = 8}, [3467] = {.lex_state = 14}, - [3468] = {.lex_state = 70}, + [3468] = {.lex_state = 70, .external_lex_state = 9}, [3469] = {.lex_state = 70}, - [3470] = {.lex_state = 14}, + [3470] = {.lex_state = 70}, [3471] = {.lex_state = 70}, [3472] = {.lex_state = 70}, [3473] = {.lex_state = 70}, [3474] = {.lex_state = 70}, - [3475] = {.lex_state = 70}, + [3475] = {.lex_state = 14}, [3476] = {.lex_state = 70}, [3477] = {.lex_state = 70}, - [3478] = {.lex_state = 14}, - [3479] = {.lex_state = 70}, + [3478] = {.lex_state = 19}, + [3479] = {.lex_state = 70, .external_lex_state = 7}, [3480] = {.lex_state = 70}, - [3481] = {.lex_state = 14}, - [3482] = {.lex_state = 70}, - [3483] = {.lex_state = 14}, + [3481] = {.lex_state = 70}, + [3482] = {.lex_state = 71}, + [3483] = {.lex_state = 70}, [3484] = {.lex_state = 70}, - [3485] = {.lex_state = 14}, - [3486] = {.lex_state = 70, .external_lex_state = 9}, + [3485] = {.lex_state = 70}, + [3486] = {.lex_state = 70}, [3487] = {.lex_state = 70}, [3488] = {.lex_state = 70}, [3489] = {.lex_state = 70}, - [3490] = {.lex_state = 71}, - [3491] = {.lex_state = 14}, - [3492] = {.lex_state = 70}, - [3493] = {.lex_state = 70, .external_lex_state = 7}, + [3490] = {.lex_state = 70}, + [3491] = {.lex_state = 70}, + [3492] = {.lex_state = 14}, + [3493] = {.lex_state = 70}, [3494] = {.lex_state = 70}, - [3495] = {.lex_state = 14}, - [3496] = {.lex_state = 71}, + [3495] = {.lex_state = 19}, + [3496] = {.lex_state = 14}, [3497] = {.lex_state = 70}, [3498] = {.lex_state = 70}, [3499] = {.lex_state = 14}, - [3500] = {.lex_state = 71}, + [3500] = {.lex_state = 19}, [3501] = {.lex_state = 70}, [3502] = {.lex_state = 70}, - [3503] = {.lex_state = 70}, + [3503] = {.lex_state = 70, .external_lex_state = 9}, [3504] = {.lex_state = 70}, - [3505] = {.lex_state = 70}, - [3506] = {.lex_state = 18}, + [3505] = {.lex_state = 14}, + [3506] = {.lex_state = 70}, [3507] = {.lex_state = 70}, - [3508] = {.lex_state = 18}, + [3508] = {.lex_state = 70}, [3509] = {.lex_state = 70}, - [3510] = {.lex_state = 70, .external_lex_state = 9}, - [3511] = {.lex_state = 70, .external_lex_state = 8}, - [3512] = {.lex_state = 14}, - [3513] = {.lex_state = 14}, + [3510] = {.lex_state = 70}, + [3511] = {.lex_state = 70}, + [3512] = {.lex_state = 70}, + [3513] = {.lex_state = 70}, [3514] = {.lex_state = 70}, [3515] = {.lex_state = 70}, [3516] = {.lex_state = 70}, - [3517] = {.lex_state = 14}, + [3517] = {.lex_state = 70}, [3518] = {.lex_state = 70}, - [3519] = {.lex_state = 70}, - [3520] = {.lex_state = 18}, - [3521] = {.lex_state = 18}, - [3522] = {.lex_state = 70}, - [3523] = {.lex_state = 70}, + [3519] = {.lex_state = 14}, + [3520] = {.lex_state = 14}, + [3521] = {.lex_state = 70}, + [3522] = {.lex_state = 19}, + [3523] = {.lex_state = 70, .external_lex_state = 9}, [3524] = {.lex_state = 70}, - [3525] = {.lex_state = 70}, - [3526] = {.lex_state = 18}, + [3525] = {.lex_state = 14}, + [3526] = {.lex_state = 70}, [3527] = {.lex_state = 70}, - [3528] = {.lex_state = 70}, + [3528] = {.lex_state = 70, .external_lex_state = 9}, [3529] = {.lex_state = 70}, [3530] = {.lex_state = 70}, [3531] = {.lex_state = 70}, [3532] = {.lex_state = 70}, - [3533] = {.lex_state = 14}, + [3533] = {.lex_state = 70}, [3534] = {.lex_state = 70}, [3535] = {.lex_state = 70}, [3536] = {.lex_state = 70}, - [3537] = {.lex_state = 14}, - [3538] = {.lex_state = 14}, + [3537] = {.lex_state = 70}, + [3538] = {.lex_state = 70}, [3539] = {.lex_state = 70}, [3540] = {.lex_state = 70}, - [3541] = {.lex_state = 70}, + [3541] = {.lex_state = 14}, [3542] = {.lex_state = 70}, - [3543] = {.lex_state = 18}, - [3544] = {.lex_state = 70, .external_lex_state = 9}, - [3545] = {.lex_state = 18}, + [3543] = {.lex_state = 19}, + [3544] = {.lex_state = 70}, + [3545] = {.lex_state = 19}, [3546] = {.lex_state = 70}, - [3547] = {.lex_state = 18}, - [3548] = {.lex_state = 70}, - [3549] = {.lex_state = 14}, - [3550] = {.lex_state = 70}, + [3547] = {.lex_state = 19}, + [3548] = {.lex_state = 19}, + [3549] = {.lex_state = 70}, + [3550] = {.lex_state = 14}, [3551] = {.lex_state = 70}, [3552] = {.lex_state = 70}, - [3553] = {.lex_state = 70}, - [3554] = {.lex_state = 70}, - [3555] = {.lex_state = 70}, + [3553] = {.lex_state = 19}, + [3554] = {.lex_state = 14}, + [3555] = {.lex_state = 14}, [3556] = {.lex_state = 70}, - [3557] = {.lex_state = 70}, - [3558] = {.lex_state = 70}, + [3557] = {.lex_state = 14}, + [3558] = {.lex_state = 19}, [3559] = {.lex_state = 70}, [3560] = {.lex_state = 70}, [3561] = {.lex_state = 70}, [3562] = {.lex_state = 70}, - [3563] = {.lex_state = 70, .external_lex_state = 9}, + [3563] = {.lex_state = 19}, [3564] = {.lex_state = 70}, - [3565] = {.lex_state = 70}, - [3566] = {.lex_state = 70}, - [3567] = {.lex_state = 18}, - [3568] = {.lex_state = 70}, - [3569] = {.lex_state = 70, .external_lex_state = 9}, + [3565] = {.lex_state = 14}, + [3566] = {.lex_state = 70, .external_lex_state = 7}, + [3567] = {.lex_state = 19}, + [3568] = {.lex_state = 14}, + [3569] = {.lex_state = 14}, [3570] = {.lex_state = 70}, [3571] = {.lex_state = 70}, - [3572] = {.lex_state = 70}, - [3573] = {.lex_state = 70}, - [3574] = {.lex_state = 70}, - [3575] = {.lex_state = 70}, - [3576] = {.lex_state = 70}, - [3577] = {.lex_state = 70}, + [3572] = {.lex_state = 70, .external_lex_state = 8}, + [3573] = {.lex_state = 19}, + [3574] = {.lex_state = 14}, + [3575] = {.lex_state = 70, .external_lex_state = 9}, + [3576] = {.lex_state = 14}, + [3577] = {.lex_state = 14}, [3578] = {.lex_state = 70}, - [3579] = {.lex_state = 70}, - [3580] = {.lex_state = 70}, + [3579] = {.lex_state = 19}, + [3580] = {.lex_state = 19}, [3581] = {.lex_state = 70}, - [3582] = {.lex_state = 70}, - [3583] = {.lex_state = 70}, - [3584] = {.lex_state = 70}, - [3585] = {.lex_state = 18}, + [3582] = {.lex_state = 14}, + [3583] = {.lex_state = 19}, + [3584] = {.lex_state = 19}, + [3585] = {.lex_state = 19}, [3586] = {.lex_state = 70}, [3587] = {.lex_state = 70}, - [3588] = {.lex_state = 70}, - [3589] = {.lex_state = 18}, - [3590] = {.lex_state = 18}, - [3591] = {.lex_state = 70}, - [3592] = {.lex_state = 70}, - [3593] = {.lex_state = 10}, + [3588] = {.lex_state = 19}, + [3589] = {.lex_state = 70}, + [3590] = {.lex_state = 70}, + [3591] = {.lex_state = 19}, + [3592] = {.lex_state = 19}, + [3593] = {.lex_state = 70}, [3594] = {.lex_state = 70}, - [3595] = {.lex_state = 18}, - [3596] = {.lex_state = 70}, - [3597] = {.lex_state = 70}, + [3595] = {.lex_state = 19}, + [3596] = {.lex_state = 19}, + [3597] = {.lex_state = 19}, [3598] = {.lex_state = 70}, [3599] = {.lex_state = 14}, - [3600] = {.lex_state = 18}, - [3601] = {.lex_state = 70}, - [3602] = {.lex_state = 18}, - [3603] = {.lex_state = 70, .external_lex_state = 7}, + [3600] = {.lex_state = 70}, + [3601] = {.lex_state = 19}, + [3602] = {.lex_state = 14}, + [3603] = {.lex_state = 70}, [3604] = {.lex_state = 70}, - [3605] = {.lex_state = 18}, - [3606] = {.lex_state = 70}, - [3607] = {.lex_state = 18}, + [3605] = {.lex_state = 14}, + [3606] = {.lex_state = 14}, + [3607] = {.lex_state = 70}, [3608] = {.lex_state = 14}, - [3609] = {.lex_state = 14}, + [3609] = {.lex_state = 70}, [3610] = {.lex_state = 70}, - [3611] = {.lex_state = 70}, + [3611] = {.lex_state = 70, .external_lex_state = 9}, [3612] = {.lex_state = 14}, - [3613] = {.lex_state = 18}, - [3614] = {.lex_state = 70}, - [3615] = {.lex_state = 70, .external_lex_state = 8}, - [3616] = {.lex_state = 70, .external_lex_state = 8}, - [3617] = {.lex_state = 70}, - [3618] = {.lex_state = 70}, - [3619] = {.lex_state = 71}, - [3620] = {.lex_state = 70}, - [3621] = {.lex_state = 70}, - [3622] = {.lex_state = 70}, - [3623] = {.lex_state = 14}, - [3624] = {.lex_state = 14}, - [3625] = {.lex_state = 18}, - [3626] = {.lex_state = 18}, - [3627] = {.lex_state = 70}, - [3628] = {.lex_state = 70}, - [3629] = {.lex_state = 18}, - [3630] = {.lex_state = 14}, - [3631] = {.lex_state = 14}, - [3632] = {.lex_state = 18}, - [3633] = {.lex_state = 18}, - [3634] = {.lex_state = 70}, - [3635] = {.lex_state = 70}, - [3636] = {.lex_state = 18}, - [3637] = {.lex_state = 18}, - [3638] = {.lex_state = 18}, - [3639] = {.lex_state = 14}, - [3640] = {.lex_state = 14}, - [3641] = {.lex_state = 70}, - [3642] = {.lex_state = 70}, - [3643] = {.lex_state = 14}, - [3644] = {.lex_state = 70}, - [3645] = {.lex_state = 70}, - [3646] = {.lex_state = 14}, - [3647] = {.lex_state = 14}, - [3648] = {.lex_state = 70}, - [3649] = {.lex_state = 14}, - [3650] = {.lex_state = 70}, - [3651] = {.lex_state = 70}, - [3652] = {.lex_state = 14}, - [3653] = {.lex_state = 70}, - [3654] = {.lex_state = 14}, - [3655] = {.lex_state = 70, .external_lex_state = 9}, - [3656] = {.lex_state = 14}, - [3657] = {.lex_state = 70}, - [3658] = {.lex_state = 14}, - [3659] = {.lex_state = 14}, - [3660] = {(TSStateId)(-1),}, - [3661] = {(TSStateId)(-1),}, - [3662] = {(TSStateId)(-1),}, - [3663] = {(TSStateId)(-1),}, - [3664] = {(TSStateId)(-1),}, - [3665] = {(TSStateId)(-1),}, - [3666] = {(TSStateId)(-1),}, + [3613] = {.lex_state = 70}, + [3614] = {.lex_state = 14}, + [3615] = {.lex_state = 14}, + [3616] = {.lex_state = 14}, + [3617] = {.lex_state = 14}, + [3618] = {(TSStateId)(-1),}, + [3619] = {(TSStateId)(-1),}, + [3620] = {(TSStateId)(-1),}, + [3621] = {(TSStateId)(-1),}, + [3622] = {(TSStateId)(-1),}, + [3623] = {(TSStateId)(-1),}, + [3624] = {(TSStateId)(-1),}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13970,41 +13898,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [STATE(1)] = { - [sym_source_file] = STATE(3610), - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym_source_file] = STATE(3465), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1903), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -14020,33 +13948,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14126,40 +14054,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(2)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -14175,33 +14103,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14280,40 +14208,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(3)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1762), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1825), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -14329,33 +14257,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), [aux_sym_source_file_repeat1] = STATE(2), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14434,40 +14362,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(4)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1903), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -14483,33 +14411,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14588,40 +14516,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(5)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1903), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -14637,33 +14565,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14742,40 +14670,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(6)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1744), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -14791,33 +14719,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14896,40 +14824,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(7)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1903), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -14945,33 +14873,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -15050,40 +14978,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(8)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1903), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -15099,33 +15027,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(8), [sym_block_comment] = STATE(8), [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(133), [anon_sym_SEMI] = ACTIONS(136), @@ -15204,40 +15132,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(265), }, [STATE(9)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1846), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -15253,33 +15181,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15358,40 +15286,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(10)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1738), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1786), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -15407,33 +15335,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15512,40 +15440,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(11)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1728), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -15561,33 +15489,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15666,40 +15594,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(12)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1776), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1738), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -15715,33 +15643,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15820,40 +15748,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(13)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1903), - [sym_macro_invocation] = STATE(419), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(417), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -15869,33 +15797,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(133), [anon_sym_SEMI] = ACTIONS(136), [anon_sym_macro_rules_BANG] = ACTIONS(139), @@ -15974,40 +15902,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(265), }, [STATE(14)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -16023,33 +15951,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16128,40 +16056,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(15)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1759), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -16177,33 +16105,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16282,40 +16210,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(16)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1670), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1773), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -16331,33 +16259,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16436,40 +16364,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(17)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1681), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1781), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -16485,33 +16413,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16590,40 +16518,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(18)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1696), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1787), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -16639,33 +16567,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), [aux_sym_source_file_repeat1] = STATE(19), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16744,40 +16672,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(19)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1702), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1789), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -16793,33 +16721,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16898,40 +16826,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(20)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1709), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1793), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -16947,33 +16875,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17052,40 +16980,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(21)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1712), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1796), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -17101,33 +17029,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17206,40 +17134,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(22)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1802), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -17255,33 +17183,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), [aux_sym_source_file_repeat1] = STATE(23), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17360,40 +17288,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(23)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1725), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -17409,33 +17337,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17514,40 +17442,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(24)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1730), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1808), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -17563,33 +17491,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), [aux_sym_source_file_repeat1] = STATE(25), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17668,40 +17596,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(25)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1732), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1810), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -17717,33 +17645,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17822,40 +17750,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(26)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1740), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -17871,33 +17799,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17976,40 +17904,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(27)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -18025,33 +17953,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18130,40 +18058,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(28)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1744), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1818), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -18179,33 +18107,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18284,40 +18212,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(29)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1819), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -18333,33 +18261,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18438,40 +18366,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(30)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -18487,33 +18415,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18592,40 +18520,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(31)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1756), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1822), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -18641,33 +18569,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18746,40 +18674,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(32)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1758), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1823), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -18795,33 +18723,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), [aux_sym_source_file_repeat1] = STATE(33), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18900,40 +18828,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(33)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1824), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -18949,33 +18877,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19054,40 +18982,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(34)] = { - [sym__statement] = STATE(690), - [sym_empty_statement] = STATE(691), - [sym_expression_statement] = STATE(691), - [sym_macro_definition] = STATE(691), - [sym_attribute_item] = STATE(691), - [sym_inner_attribute_item] = STATE(691), - [sym_mod_item] = STATE(691), - [sym_foreign_mod_item] = STATE(691), - [sym_struct_item] = STATE(691), - [sym_union_item] = STATE(691), - [sym_enum_item] = STATE(691), - [sym_extern_crate_declaration] = STATE(691), - [sym_const_item] = STATE(691), - [sym_static_item] = STATE(691), - [sym_type_item] = STATE(691), - [sym_function_item] = STATE(691), - [sym_function_signature_item] = STATE(691), - [sym_function_modifiers] = STATE(3623), - [sym_impl_item] = STATE(691), - [sym_trait_item] = STATE(691), - [sym_associated_type] = STATE(691), - [sym_let_declaration] = STATE(691), - [sym_use_declaration] = STATE(691), - [sym_extern_modifier] = STATE(2187), - [sym_visibility_modifier] = STATE(1959), - [sym_bracketed_type] = STATE(3426), + [sym__statement] = STATE(493), + [sym_empty_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_macro_definition] = STATE(593), + [sym_attribute_item] = STATE(593), + [sym_inner_attribute_item] = STATE(593), + [sym_mod_item] = STATE(593), + [sym_foreign_mod_item] = STATE(593), + [sym_struct_item] = STATE(593), + [sym_union_item] = STATE(593), + [sym_enum_item] = STATE(593), + [sym_extern_crate_declaration] = STATE(593), + [sym_const_item] = STATE(593), + [sym_static_item] = STATE(593), + [sym_type_item] = STATE(593), + [sym_function_item] = STATE(593), + [sym_function_signature_item] = STATE(593), + [sym_function_modifiers] = STATE(3499), + [sym_impl_item] = STATE(593), + [sym_trait_item] = STATE(593), + [sym_associated_type] = STATE(593), + [sym_let_declaration] = STATE(593), + [sym_use_declaration] = STATE(593), + [sym_extern_modifier] = STATE(2173), + [sym_visibility_modifier] = STATE(1949), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(414), - [sym_scoped_identifier] = STATE(1559), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1723), + [sym_macro_invocation] = STATE(401), + [sym_scoped_identifier] = STATE(1550), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -19103,33 +19031,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(408), - [sym_match_expression] = STATE(408), - [sym_while_expression] = STATE(408), - [sym_loop_expression] = STATE(408), - [sym_for_expression] = STATE(408), - [sym_const_block] = STATE(408), + [sym_if_expression] = STATE(389), + [sym_match_expression] = STATE(389), + [sym_while_expression] = STATE(389), + [sym_loop_expression] = STATE(389), + [sym_for_expression] = STATE(389), + [sym_const_block] = STATE(389), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3359), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3584), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(408), - [sym_async_block] = STATE(408), - [sym_gen_block] = STATE(408), - [sym_try_block] = STATE(408), - [sym_block] = STATE(408), + [sym_unsafe_block] = STATE(389), + [sym_async_block] = STATE(389), + [sym_gen_block] = STATE(389), + [sym_try_block] = STATE(389), + [sym_block] = STATE(389), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19208,15 +19136,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(35)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1525), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1511), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -19239,8 +19167,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -19252,9 +19180,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), [sym_identifier] = ACTIONS(339), @@ -19356,15 +19284,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(36)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1530), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1518), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -19387,8 +19315,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -19400,21 +19328,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [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), @@ -19433,13 +19361,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), @@ -19458,11 +19386,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), @@ -19503,15 +19431,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(37)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1519), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1507), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -19534,8 +19462,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -19547,22 +19475,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_RPAREN] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_RBRACK] = ACTIONS(387), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_RBRACK] = ACTIONS(379), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19580,42 +19508,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(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [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(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [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), @@ -19631,7 +19559,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), @@ -19650,15 +19578,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(38)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1506), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1518), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -19681,8 +19609,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -19694,22 +19622,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [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_RPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_RBRACK] = ACTIONS(391), + [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(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [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), @@ -19727,42 +19655,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(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(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(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(393), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -19778,7 +19706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(393), + [anon_sym_else] = ACTIONS(377), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -19797,15 +19725,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(39)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1519), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1507), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -19828,8 +19756,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -19841,22 +19769,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), [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_LBRACK] = ACTIONS(387), - [anon_sym_RBRACK] = ACTIONS(387), + [anon_sym_RPAREN] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_RBRACK] = ACTIONS(379), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_RBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19874,42 +19802,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(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [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(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [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), @@ -19925,7 +19853,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), @@ -19944,15 +19872,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(40)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1506), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1501), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -19975,8 +19903,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(35), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -19988,22 +19916,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_RBRACK] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(383), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_RPAREN] = ACTIONS(383), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_RBRACK] = ACTIONS(383), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(383), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(383), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20021,42 +19949,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(383), + [anon_sym_PIPE_PIPE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(383), + [anon_sym_DASH_EQ] = ACTIONS(383), + [anon_sym_STAR_EQ] = ACTIONS(383), + [anon_sym_SLASH_EQ] = ACTIONS(383), + [anon_sym_PERCENT_EQ] = ACTIONS(383), + [anon_sym_CARET_EQ] = ACTIONS(383), + [anon_sym_AMP_EQ] = ACTIONS(383), + [anon_sym_PIPE_EQ] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(383), + [anon_sym_GT_GT_EQ] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(383), + [anon_sym_COMMA] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(393), + [anon_sym_SQUOTE] = ACTIONS(387), + [anon_sym_as] = ACTIONS(385), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20072,7 +20000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(393), + [anon_sym_else] = ACTIONS(385), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20091,15 +20019,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(41)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1523), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1520), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -20122,8 +20050,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(35), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -20135,22 +20063,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_RPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(389), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(389), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(389), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(389), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -20168,42 +20096,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(391), [anon_sym_LT] = ACTIONS(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_GT_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_COMMA] = ACTIONS(389), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(391), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20219,7 +20147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(397), + [anon_sym_else] = ACTIONS(391), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20238,15 +20166,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(42)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1527), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1509), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -20269,8 +20197,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -20282,9 +20210,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), [sym_identifier] = ACTIONS(339), @@ -20320,8 +20248,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(395), [anon_sym_AMP_AMP] = ACTIONS(401), [anon_sym_PIPE_PIPE] = ACTIONS(401), [anon_sym_LT_LT] = ACTIONS(403), @@ -20340,11 +20268,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(401), [anon_sym_BANG_EQ] = ACTIONS(401), [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(397), [anon_sym_GT_EQ] = ACTIONS(401), [anon_sym_LT_EQ] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(399), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(401), @@ -20385,53 +20313,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(43)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1782), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1669), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(405), @@ -20528,63 +20456,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(44)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1714), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1790), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), [sym_label] = STATE(43), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACK] = ACTIONS(383), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_EQ_GT] = ACTIONS(383), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(383), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -20602,41 +20530,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(383), + [anon_sym_PIPE_PIPE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(383), + [anon_sym_DASH_EQ] = ACTIONS(383), + [anon_sym_STAR_EQ] = ACTIONS(383), + [anon_sym_SLASH_EQ] = ACTIONS(383), + [anon_sym_PERCENT_EQ] = ACTIONS(383), + [anon_sym_CARET_EQ] = ACTIONS(383), + [anon_sym_AMP_EQ] = ACTIONS(383), + [anon_sym_PIPE_EQ] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(383), + [anon_sym_GT_GT_EQ] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(465), - [anon_sym_as] = ACTIONS(397), + [anon_sym_as] = ACTIONS(385), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -20670,15 +20598,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(45)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1842), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -20701,8 +20629,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -20714,9 +20642,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), [sym_identifier] = ACTIONS(467), @@ -20812,63 +20740,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(46)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1734), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_EQ_GT] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(389), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -20887,40 +20815,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(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), [anon_sym_BANG] = ACTIONS(413), [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(391), [anon_sym_DOT_DOT] = ACTIONS(501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), + [anon_sym_as] = ACTIONS(391), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -20954,53 +20882,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(47)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1767), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1828), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), [sym_identifier] = ACTIONS(405), @@ -21034,7 +20962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(413), [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(395), [anon_sym_AMP_AMP] = ACTIONS(401), [anon_sym_PIPE_PIPE] = ACTIONS(401), [anon_sym_LT_LT] = ACTIONS(403), @@ -21053,7 +20981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(401), [anon_sym_BANG_EQ] = ACTIONS(401), [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(397), [anon_sym_GT_EQ] = ACTIONS(401), [anon_sym_LT_EQ] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(403), @@ -21096,63 +21024,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(48)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1706), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), [sym_line_comment] = STATE(48), [sym_block_comment] = STATE(48), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(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), @@ -21170,41 +21098,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(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(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(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(393), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21238,63 +21166,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(49)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1685), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), [sym_line_comment] = STATE(49), [sym_block_comment] = STATE(49), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21312,41 +21240,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [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(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [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(389), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21380,63 +21308,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(50)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1706), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), [sym_line_comment] = STATE(50), [sym_block_comment] = STATE(50), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(375), + [anon_sym_LBRACK] = ACTIONS(375), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(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), @@ -21454,41 +21382,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(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(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(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(393), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21522,63 +21450,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(51)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1685), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21596,41 +21524,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [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(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [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(389), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21664,15 +21592,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(52)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1637), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1603), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -21695,8 +21623,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -21708,9 +21636,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), [sym_identifier] = ACTIONS(467), @@ -21806,15 +21734,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(53)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1612), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1602), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -21837,8 +21765,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -21850,18 +21778,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_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(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -21879,41 +21807,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_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(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(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(473), - [anon_sym_SQUOTE] = ACTIONS(393), - [anon_sym_as] = ACTIONS(393), + [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), @@ -21947,15 +21875,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(54)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1777), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -21978,7 +21906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), + [sym_closure_parameters] = STATE(232), [sym_label] = STATE(45), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), @@ -21991,18 +21919,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(383), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -22020,41 +21948,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(383), + [anon_sym_PIPE_PIPE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(383), + [anon_sym_DASH_EQ] = ACTIONS(383), + [anon_sym_STAR_EQ] = ACTIONS(383), + [anon_sym_SLASH_EQ] = ACTIONS(383), + [anon_sym_PERCENT_EQ] = ACTIONS(383), + [anon_sym_CARET_EQ] = ACTIONS(383), + [anon_sym_AMP_EQ] = ACTIONS(383), + [anon_sym_PIPE_EQ] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(383), + [anon_sym_GT_GT_EQ] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(387), + [anon_sym_as] = ACTIONS(385), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), @@ -22088,15 +22016,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(55)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1618), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1605), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -22119,8 +22047,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -22132,9 +22060,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), [sym_identifier] = ACTIONS(467), @@ -22167,7 +22095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(503), [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(395), [anon_sym_AMP_AMP] = ACTIONS(401), [anon_sym_PIPE_PIPE] = ACTIONS(401), [anon_sym_LT_LT] = ACTIONS(403), @@ -22186,7 +22114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(401), [anon_sym_BANG_EQ] = ACTIONS(401), [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(397), [anon_sym_GT_EQ] = ACTIONS(401), [anon_sym_LT_EQ] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(403), @@ -22229,15 +22157,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(56)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1616), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -22260,8 +22188,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -22273,18 +22201,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(391), [anon_sym_STAR] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(389), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -22303,40 +22231,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), [anon_sym_BANG] = ACTIONS(503), [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(391), [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), + [anon_sym_as] = ACTIONS(391), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), @@ -22370,15 +22298,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(57)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1613), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1589), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -22401,7 +22329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), + [sym_closure_parameters] = STATE(228), [sym_label] = STATE(52), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), @@ -22414,18 +22342,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(383), + [anon_sym_LBRACK] = ACTIONS(383), + [anon_sym_LBRACE] = ACTIONS(383), + [anon_sym_PLUS] = ACTIONS(385), + [anon_sym_STAR] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(383), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -22443,41 +22371,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(385), + [anon_sym_PERCENT] = ACTIONS(385), + [anon_sym_CARET] = ACTIONS(385), [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_AMP] = ACTIONS(385), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_AMP_AMP] = ACTIONS(383), + [anon_sym_PIPE_PIPE] = ACTIONS(383), + [anon_sym_LT_LT] = ACTIONS(385), + [anon_sym_GT_GT] = ACTIONS(385), + [anon_sym_PLUS_EQ] = ACTIONS(383), + [anon_sym_DASH_EQ] = ACTIONS(383), + [anon_sym_STAR_EQ] = ACTIONS(383), + [anon_sym_SLASH_EQ] = ACTIONS(383), + [anon_sym_PERCENT_EQ] = ACTIONS(383), + [anon_sym_CARET_EQ] = ACTIONS(383), + [anon_sym_AMP_EQ] = ACTIONS(383), + [anon_sym_PIPE_EQ] = ACTIONS(383), + [anon_sym_LT_LT_EQ] = ACTIONS(383), + [anon_sym_GT_GT_EQ] = ACTIONS(383), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_EQ_EQ] = ACTIONS(383), + [anon_sym_BANG_EQ] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT_EQ] = ACTIONS(383), + [anon_sym_LT_EQ] = ACTIONS(383), + [anon_sym_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(383), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(397), - [anon_sym_as] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(385), + [anon_sym_as] = ACTIONS(385), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), @@ -22511,15 +22439,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(58)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1612), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1602), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -22542,8 +22470,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -22555,18 +22483,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_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(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -22584,41 +22512,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_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(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(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(473), - [anon_sym_SQUOTE] = ACTIONS(393), - [anon_sym_as] = ACTIONS(393), + [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), @@ -22652,15 +22580,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(59)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1779), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -22683,8 +22611,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -22696,18 +22624,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(391), [anon_sym_STAR] = ACTIONS(471), - [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(389), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -22726,40 +22654,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), [anon_sym_DASH] = ACTIONS(471), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), [anon_sym_BANG] = ACTIONS(471), [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), + [anon_sym_PIPE] = ACTIONS(395), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(391), [anon_sym_DOT_DOT] = ACTIONS(525), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), + [anon_sym_as] = ACTIONS(391), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), @@ -22793,15 +22721,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(60)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1680), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -22824,8 +22752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -22837,9 +22765,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), [sym_identifier] = ACTIONS(467), @@ -22872,7 +22800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(471), [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(395), [anon_sym_AMP_AMP] = ACTIONS(401), [anon_sym_PIPE_PIPE] = ACTIONS(401), [anon_sym_LT_LT] = ACTIONS(403), @@ -22891,7 +22819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(401), [anon_sym_BANG_EQ] = ACTIONS(401), [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(397), [anon_sym_GT_EQ] = ACTIONS(401), [anon_sym_LT_EQ] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(403), @@ -22934,15 +22862,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(61)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1642), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -22965,8 +22893,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -22978,18 +22906,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -23007,41 +22935,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [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(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_as] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(381), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), @@ -23075,15 +23003,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(62)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1676), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1776), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -23106,8 +23034,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -23119,18 +23047,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_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(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -23148,41 +23076,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_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(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(393), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), @@ -23216,15 +23144,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(63)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1732), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -23247,8 +23175,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -23260,18 +23188,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -23289,41 +23217,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [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(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), @@ -23357,15 +23285,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(64)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1642), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -23388,8 +23316,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -23401,18 +23329,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -23430,41 +23358,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [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(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_as] = ACTIONS(389), + [anon_sym_SQUOTE] = ACTIONS(381), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), @@ -23498,15 +23426,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(65)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1676), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1776), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -23529,8 +23457,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -23542,18 +23470,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_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(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -23571,41 +23499,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(377), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_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(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(393), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), @@ -23639,15 +23567,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(66)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1732), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -23670,8 +23598,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -23683,18 +23611,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(379), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_PLUS] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(379), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -23712,41 +23640,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(381), + [anon_sym_SLASH] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(381), + [anon_sym_CARET] = ACTIONS(381), [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(381), + [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(381), + [anon_sym_GT_EQ] = ACTIONS(379), + [anon_sym_LT_EQ] = ACTIONS(379), + [anon_sym_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT] = ACTIONS(381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(379), + [anon_sym_DOT_DOT_EQ] = ACTIONS(379), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(381), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), @@ -23780,18 +23708,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(67)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(527), [anon_sym_SEMI] = ACTIONS(530), [anon_sym_LPAREN] = ACTIONS(533), @@ -23907,15 +23835,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(68)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(68), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(568), @@ -24030,16 +23958,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(588), }, [STATE(69)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(143), [sym_identifier] = ACTIONS(600), [anon_sym_SEMI] = ACTIONS(603), [anon_sym_LPAREN] = ACTIONS(606), @@ -24154,18 +24082,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(623), }, [STATE(70)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(642), @@ -24278,18 +24206,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(654), }, [STATE(71)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(642), @@ -24402,18 +24330,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(654), }, [STATE(72)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(642), @@ -24526,18 +24454,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(654), }, [STATE(73)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), [aux_sym_token_tree_pattern_repeat1] = STATE(70), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(642), @@ -24650,18 +24578,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(654), }, [STATE(74)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [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(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(642), @@ -24774,18 +24702,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(654), }, [STATE(75)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), [aux_sym_token_tree_pattern_repeat1] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(642), @@ -24898,18 +24826,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(654), }, [STATE(76)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), [aux_sym_token_tree_pattern_repeat1] = STATE(79), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(642), @@ -25022,18 +24950,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(654), }, [STATE(77)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(642), @@ -25146,18 +25074,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(654), }, [STATE(78)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(78), [sym_block_comment] = STATE(78), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(642), @@ -25270,18 +25198,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(654), }, [STATE(79)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(642), @@ -25394,18 +25322,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(654), }, [STATE(80)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(80), [sym_block_comment] = STATE(80), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(642), @@ -25518,18 +25446,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(654), }, [STATE(81)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(81), [sym_block_comment] = STATE(81), [aux_sym_token_tree_pattern_repeat1] = STATE(74), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(642), @@ -25642,18 +25570,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(654), }, [STATE(82)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), [aux_sym_token_tree_pattern_repeat1] = STATE(72), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(642), @@ -25766,18 +25694,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(654), }, [STATE(83)] = { - [sym__token_pattern] = STATE(152), + [sym__token_pattern] = STATE(172), [sym_token_tree_pattern] = STATE(186), [sym_token_binding_pattern] = STATE(186), [sym_token_repetition_pattern] = STATE(186), [sym__literal] = STATE(186), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), [aux_sym_token_tree_pattern_repeat1] = STATE(71), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(141), [sym_identifier] = ACTIONS(638), [anon_sym_SEMI] = ACTIONS(640), [anon_sym_LPAREN] = ACTIONS(642), @@ -25890,29 +25818,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(654), }, [STATE(84)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [aux_sym_token_tree_repeat1] = STATE(103), + [aux_sym__non_special_token_repeat1] = STATE(143), [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_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_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), [anon_sym_u8] = ACTIONS(674), [anon_sym_i8] = ACTIONS(674), [anon_sym_u16] = ACTIONS(674), @@ -25930,127 +25857,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(85)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), - [sym_line_comment] = STATE(85), - [sym_block_comment] = STATE(85), - [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [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(650), [anon_sym_SLASH] = ACTIONS(650), [anon_sym_PERCENT] = ACTIONS(650), @@ -26089,36 +25895,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(640), [anon_sym_DASH_GT] = ACTIONS(640), [anon_sym_POUND] = ACTIONS(640), - [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), + [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(654), [aux_sym_string_literal_token1] = ACTIONS(656), [sym_char_literal] = ACTIONS(654), @@ -26126,175 +25932,541 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(658), [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_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(686), [sym__raw_string_literal_start] = ACTIONS(662), [sym_float_literal] = ACTIONS(654), }, + [STATE(85)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), + [sym_line_comment] = STATE(85), + [sym_block_comment] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(100), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, [STATE(86)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym_token_tree_repeat1] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(712), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [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(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [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(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [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(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(92), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(712), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(87)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [aux_sym_token_tree_repeat1] = STATE(99), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(706), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(93), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(712), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(88)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), + [sym_line_comment] = STATE(88), + [sym_block_comment] = STATE(88), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(94), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), [anon_sym_RBRACE] = ACTIONS(712), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(89)] = { + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), + [sym_line_comment] = STATE(89), + [sym_block_comment] = STATE(89), + [aux_sym_token_tree_repeat1] = STATE(91), + [aux_sym__non_special_token_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_RPAREN] = ACTIONS(714), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(640), [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(684), [anon_sym_PLUS] = ACTIONS(650), [anon_sym_STAR] = ACTIONS(650), [anon_sym_QMARK] = ACTIONS(640), - [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_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(650), [anon_sym_SLASH] = ACTIONS(650), [anon_sym_PERCENT] = ACTIONS(650), @@ -26333,251 +26505,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(640), [anon_sym_DASH_GT] = ACTIONS(640), [anon_sym_POUND] = ACTIONS(640), - [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(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [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(662), - [sym_float_literal] = ACTIONS(654), - }, - [STATE(88)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), - [sym_line_comment] = STATE(88), - [sym_block_comment] = STATE(88), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(127), - [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_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(89)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), - [sym_line_comment] = STATE(89), - [sym_block_comment] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(714), - [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), @@ -26608,43 +26535,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), [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_metavariable] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(90)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(132), + [aux_sym_token_tree_repeat1] = STATE(104), + [aux_sym__non_special_token_repeat1] = STATE(143), [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(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_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_RBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), [anon_sym_u8] = ACTIONS(674), [anon_sym_i8] = ACTIONS(674), [anon_sym_u16] = ACTIONS(674), @@ -26662,44 +26589,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), [anon_sym_SQUOTE] = ACTIONS(674), [anon_sym_as] = ACTIONS(674), [anon_sym_async] = ACTIONS(674), @@ -26730,43 +26657,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), [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_metavariable] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(91)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(95), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(143), [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_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_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), [anon_sym_u8] = ACTIONS(674), [anon_sym_i8] = ACTIONS(674), [anon_sym_u16] = ACTIONS(674), @@ -26784,44 +26711,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), [anon_sym_SQUOTE] = ACTIONS(674), [anon_sym_as] = ACTIONS(674), [anon_sym_async] = ACTIONS(674), @@ -26852,165 +26779,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), [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_metavariable] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(92)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(96), - [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_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), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(93)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(93), [sym_block_comment] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(97), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(94)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), + [sym_line_comment] = STATE(94), + [sym_block_comment] = STATE(94), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(95)] = { + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), + [sym_line_comment] = STATE(95), + [sym_block_comment] = STATE(95), + [aux_sym_token_tree_repeat1] = STATE(133), + [aux_sym__non_special_token_repeat1] = STATE(143), [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_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(680), [anon_sym_RBRACE] = ACTIONS(716), - [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_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), [anon_sym_u8] = ACTIONS(674), [anon_sym_i8] = ACTIONS(674), [anon_sym_u16] = ACTIONS(674), @@ -27028,127 +27199,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(94)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), - [sym_line_comment] = STATE(94), - [sym_block_comment] = STATE(94), - [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [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(650), [anon_sym_SLASH] = ACTIONS(650), [anon_sym_PERCENT] = ACTIONS(650), @@ -27187,129 +27237,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(640), [anon_sym_DASH_GT] = ACTIONS(640), [anon_sym_POUND] = ACTIONS(640), - [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(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [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(662), - [sym_float_literal] = ACTIONS(654), - }, - [STATE(95)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), - [sym_line_comment] = STATE(95), - [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), [anon_sym_SQUOTE] = ACTIONS(674), [anon_sym_as] = ACTIONS(674), [anon_sym_async] = ACTIONS(674), @@ -27340,43 +27267,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), [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_metavariable] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(96)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(96), [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [aux_sym_token_tree_repeat1] = STATE(97), + [aux_sym__non_special_token_repeat1] = STATE(143), [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_RPAREN] = ACTIONS(716), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), [anon_sym_u8] = ACTIONS(674), [anon_sym_i8] = ACTIONS(674), [anon_sym_u16] = ACTIONS(674), @@ -27394,44 +27321,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), [anon_sym_SQUOTE] = ACTIONS(674), [anon_sym_as] = ACTIONS(674), [anon_sym_async] = ACTIONS(674), @@ -27462,43 +27389,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), [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_metavariable] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), }, [STATE(97)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(97), [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(68), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(143), [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_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_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), [anon_sym_u8] = ACTIONS(674), [anon_sym_i8] = ACTIONS(674), [anon_sym_u16] = ACTIONS(674), @@ -27516,127 +27443,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(98)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), - [sym_line_comment] = STATE(98), - [sym_block_comment] = STATE(98), - [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [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(650), [anon_sym_SLASH] = ACTIONS(650), [anon_sym_PERCENT] = ACTIONS(650), @@ -27675,36 +27481,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(640), [anon_sym_DASH_GT] = ACTIONS(640), [anon_sym_POUND] = ACTIONS(640), - [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), + [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(654), [aux_sym_string_literal_token1] = ACTIONS(656), [sym_char_literal] = ACTIONS(654), @@ -27712,53 +27518,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(658), [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_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(686), [sym__raw_string_literal_start] = ACTIONS(662), [sym_float_literal] = ACTIONS(654), }, - [STATE(99)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), - [sym_line_comment] = STATE(99), - [sym_block_comment] = STATE(99), - [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(698), + [STATE(98)] = { + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [aux_sym_token_tree_repeat1] = STATE(101), + [aux_sym__non_special_token_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_RPAREN] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(640), [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(684), [anon_sym_PLUS] = ACTIONS(650), [anon_sym_STAR] = ACTIONS(650), [anon_sym_QMARK] = ACTIONS(640), - [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_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(650), [anon_sym_SLASH] = ACTIONS(650), [anon_sym_PERCENT] = ACTIONS(650), @@ -27797,36 +27603,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(640), [anon_sym_DASH_GT] = ACTIONS(640), [anon_sym_POUND] = ACTIONS(640), - [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), + [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(654), [aux_sym_string_literal_token1] = ACTIONS(656), [sym_char_literal] = ACTIONS(654), @@ -27834,53 +27640,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(658), [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_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(686), [sym__raw_string_literal_start] = ACTIONS(662), [sym_float_literal] = ACTIONS(654), }, - [STATE(100)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), - [sym_line_comment] = STATE(100), - [sym_block_comment] = STATE(100), - [aux_sym_token_tree_repeat1] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(698), + [STATE(99)] = { + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [aux_sym_token_tree_repeat1] = STATE(102), + [aux_sym__non_special_token_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_RBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(640), [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(684), [anon_sym_PLUS] = ACTIONS(650), [anon_sym_STAR] = ACTIONS(650), [anon_sym_QMARK] = ACTIONS(640), - [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_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(650), [anon_sym_SLASH] = ACTIONS(650), [anon_sym_PERCENT] = ACTIONS(650), @@ -27919,36 +27725,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(640), [anon_sym_DASH_GT] = ACTIONS(640), [anon_sym_POUND] = ACTIONS(640), - [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), + [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(654), [aux_sym_string_literal_token1] = ACTIONS(656), [sym_char_literal] = ACTIONS(654), @@ -27956,53 +27762,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(658), [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_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(686), [sym__raw_string_literal_start] = ACTIONS(662), [sym_float_literal] = ACTIONS(654), }, + [STATE(100)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, [STATE(101)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(101), [sym_block_comment] = STATE(101), - [aux_sym_token_tree_repeat1] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(698), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(722), - [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(640), [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(684), [anon_sym_PLUS] = ACTIONS(650), [anon_sym_STAR] = ACTIONS(650), [anon_sym_QMARK] = ACTIONS(640), - [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_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(650), [anon_sym_SLASH] = ACTIONS(650), [anon_sym_PERCENT] = ACTIONS(650), @@ -28041,36 +27969,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(640), [anon_sym_DASH_GT] = ACTIONS(640), [anon_sym_POUND] = ACTIONS(640), - [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), + [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(654), [aux_sym_string_literal_token1] = ACTIONS(656), [sym_char_literal] = ACTIONS(654), @@ -28078,53 +28006,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(658), [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_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(686), [sym__raw_string_literal_start] = ACTIONS(662), [sym_float_literal] = ACTIONS(654), }, [STATE(102)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(102), [sym_block_comment] = STATE(102), - [aux_sym_token_tree_repeat1] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(698), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(640), [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(684), [anon_sym_PLUS] = ACTIONS(650), [anon_sym_STAR] = ACTIONS(650), [anon_sym_QMARK] = ACTIONS(640), - [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_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(650), [anon_sym_SLASH] = ACTIONS(650), [anon_sym_PERCENT] = ACTIONS(650), @@ -28163,36 +28091,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(640), [anon_sym_DASH_GT] = ACTIONS(640), [anon_sym_POUND] = ACTIONS(640), - [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), + [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(654), [aux_sym_string_literal_token1] = ACTIONS(656), [sym_char_literal] = ACTIONS(654), @@ -28200,53 +28128,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(658), [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_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(686), [sym__raw_string_literal_start] = ACTIONS(662), [sym_float_literal] = ACTIONS(654), }, [STATE(103)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(103), [sym_block_comment] = STATE(103), [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(698), + [aux_sym__non_special_token_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(726), [anon_sym_EQ_GT] = ACTIONS(640), [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(684), [anon_sym_PLUS] = ACTIONS(650), [anon_sym_STAR] = ACTIONS(650), [anon_sym_QMARK] = ACTIONS(640), - [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_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(650), [anon_sym_SLASH] = ACTIONS(650), [anon_sym_PERCENT] = ACTIONS(650), @@ -28285,36 +28213,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(640), [anon_sym_DASH_GT] = ACTIONS(640), [anon_sym_POUND] = ACTIONS(640), - [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), + [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(654), [aux_sym_string_literal_token1] = ACTIONS(656), [sym_char_literal] = ACTIONS(654), @@ -28322,53 +28250,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(658), [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_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(686), [sym__raw_string_literal_start] = ACTIONS(662), [sym_float_literal] = ACTIONS(654), }, [STATE(104)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), [sym_line_comment] = STATE(104), [sym_block_comment] = STATE(104), [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(698), + [aux_sym__non_special_token_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_RBRACK] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(640), [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(684), [anon_sym_PLUS] = ACTIONS(650), [anon_sym_STAR] = ACTIONS(650), [anon_sym_QMARK] = ACTIONS(640), - [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_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(650), [anon_sym_SLASH] = ACTIONS(650), [anon_sym_PERCENT] = ACTIONS(650), @@ -28407,129 +28335,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(640), [anon_sym_DASH_GT] = ACTIONS(640), [anon_sym_POUND] = ACTIONS(640), - [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(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [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(662), - [sym_float_literal] = ACTIONS(654), - }, - [STATE(105)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), - [sym_line_comment] = STATE(105), - [sym_block_comment] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_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), @@ -28560,3215 +28365,3459 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_integer_literal] = ACTIONS(654), + [aux_sym_string_literal_token1] = ACTIONS(656), + [sym_char_literal] = ACTIONS(654), + [anon_sym_true] = ACTIONS(658), + [anon_sym_false] = ACTIONS(658), [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_metavariable] = ACTIONS(686), + [sym__raw_string_literal_start] = ACTIONS(662), + [sym_float_literal] = ACTIONS(654), + }, + [STATE(105)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(106)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(106), [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [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_RBRACK] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(107)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(107), [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [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(726), - [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), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(108)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(108), [sym_block_comment] = STATE(108), - [aux_sym_token_tree_repeat1] = STATE(85), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [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(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [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(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [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(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(109)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(109), [sym_block_comment] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), [anon_sym_RPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [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), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(110)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(110), [sym_block_comment] = STATE(110), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), [anon_sym_RBRACK] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(111)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(111), [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), [anon_sym_RBRACE] = ACTIONS(730), - [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), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(112)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(112), [sym_block_comment] = STATE(112), - [aux_sym_token_tree_repeat1] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [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(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [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(654), - [aux_sym_string_literal_token1] = ACTIONS(656), - [sym_char_literal] = ACTIONS(654), - [anon_sym_true] = ACTIONS(658), - [anon_sym_false] = ACTIONS(658), - [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(662), - [sym_float_literal] = ACTIONS(654), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(113)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(113), [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [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), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(114)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(114), [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [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), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), [anon_sym_RBRACK] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(115)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(115), [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(118), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), [anon_sym_RBRACE] = ACTIONS(732), - [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), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(116)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(116), [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [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), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(117)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(117), [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), [anon_sym_RBRACK] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(118)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(118), [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [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), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(119)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(119), [sym_block_comment] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [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), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(120)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(120), [sym_block_comment] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(123), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(674), - [anon_sym_i8] = ACTIONS(674), - [anon_sym_u16] = ACTIONS(674), - [anon_sym_i16] = ACTIONS(674), - [anon_sym_u32] = ACTIONS(674), - [anon_sym_i32] = ACTIONS(674), - [anon_sym_u64] = ACTIONS(674), - [anon_sym_i64] = ACTIONS(674), - [anon_sym_u128] = ACTIONS(674), - [anon_sym_i128] = ACTIONS(674), - [anon_sym_isize] = ACTIONS(674), - [anon_sym_usize] = ACTIONS(674), - [anon_sym_f32] = ACTIONS(674), - [anon_sym_f64] = ACTIONS(674), - [anon_sym_bool] = ACTIONS(674), - [anon_sym_str] = ACTIONS(674), - [anon_sym_char] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [anon_sym_PLUS_EQ] = ACTIONS(676), - [anon_sym_DASH_EQ] = ACTIONS(676), - [anon_sym_STAR_EQ] = ACTIONS(676), - [anon_sym_SLASH_EQ] = ACTIONS(676), - [anon_sym_PERCENT_EQ] = ACTIONS(676), - [anon_sym_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(121)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(121), [sym_block_comment] = STATE(121), - [aux_sym__non_special_token_repeat1] = STATE(182), - [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_LBRACE] = ACTIONS(682), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), [anon_sym_RBRACE] = ACTIONS(736), - [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), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(122)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), - [sym_line_comment] = STATE(122), - [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [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_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(123)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), - [sym_line_comment] = STATE(123), - [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [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_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(124)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), - [sym_line_comment] = STATE(124), - [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(128), - [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_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(125)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), - [sym_line_comment] = STATE(125), - [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(129), - [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_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(126)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), - [sym_line_comment] = STATE(126), - [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(130), - [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_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(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), - [sym_line_comment] = STATE(127), - [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [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_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(128)] = { - [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), - [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), - [sym_line_comment] = STATE(128), - [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(182), - [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_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), + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), + [sym_line_comment] = STATE(122), + [sym_block_comment] = STATE(122), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(123)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), + [sym_line_comment] = STATE(123), + [sym_block_comment] = STATE(123), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(124)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), + [sym_line_comment] = STATE(124), + [sym_block_comment] = STATE(124), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(125)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), + [sym_line_comment] = STATE(125), + [sym_block_comment] = STATE(125), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(126)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), + [sym_line_comment] = STATE(126), + [sym_block_comment] = STATE(126), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(130), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(127)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), + [sym_line_comment] = STATE(127), + [sym_block_comment] = STATE(127), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(128)] = { + [sym_delim_token_tree] = STATE(207), + [sym__delim_tokens] = STATE(209), + [sym__non_delim_token] = STATE(207), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), + [sym_line_comment] = STATE(128), + [sym_block_comment] = STATE(128), + [aux_sym__non_special_token_repeat1] = STATE(180), + [aux_sym_delim_token_tree_repeat1] = STATE(132), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(129)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(129), [sym_block_comment] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_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), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(130)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(130), [sym_block_comment] = STATE(130), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(742), - [anon_sym_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), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(131)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(131), [sym_block_comment] = STATE(131), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(68), - [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), - [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_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_RBRACK] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), }, [STATE(132)] = { [sym_delim_token_tree] = STATE(207), - [sym__delim_tokens] = STATE(208), + [sym__delim_tokens] = STATE(209), [sym__non_delim_token] = STATE(207), - [sym__literal] = STATE(206), - [sym_string_literal] = STATE(209), - [sym_raw_string_literal] = STATE(209), - [sym_boolean_literal] = STATE(209), + [sym__literal] = STATE(204), + [sym_string_literal] = STATE(198), + [sym_raw_string_literal] = STATE(198), + [sym_boolean_literal] = STATE(198), [sym_line_comment] = STATE(132), [sym_block_comment] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(182), + [aux_sym__non_special_token_repeat1] = STATE(180), [aux_sym_delim_token_tree_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(688), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(694), + [anon_sym_LBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), + [anon_sym_DOLLAR] = ACTIONS(702), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), + [anon_sym_u8] = ACTIONS(688), + [anon_sym_i8] = ACTIONS(688), + [anon_sym_u16] = ACTIONS(688), + [anon_sym_i16] = ACTIONS(688), + [anon_sym_u32] = ACTIONS(688), + [anon_sym_i32] = ACTIONS(688), + [anon_sym_u64] = ACTIONS(688), + [anon_sym_i64] = ACTIONS(688), + [anon_sym_u128] = ACTIONS(688), + [anon_sym_i128] = ACTIONS(688), + [anon_sym_isize] = ACTIONS(688), + [anon_sym_usize] = ACTIONS(688), + [anon_sym_f32] = ACTIONS(688), + [anon_sym_f64] = ACTIONS(688), + [anon_sym_bool] = ACTIONS(688), + [anon_sym_str] = ACTIONS(688), + [anon_sym_char] = ACTIONS(688), + [anon_sym_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), + [anon_sym_SQUOTE] = ACTIONS(688), + [anon_sym_as] = ACTIONS(688), + [anon_sym_async] = ACTIONS(688), + [anon_sym_await] = ACTIONS(688), + [anon_sym_break] = ACTIONS(688), + [anon_sym_const] = ACTIONS(688), + [anon_sym_continue] = ACTIONS(688), + [anon_sym_default] = ACTIONS(688), + [anon_sym_enum] = ACTIONS(688), + [anon_sym_fn] = ACTIONS(688), + [anon_sym_for] = ACTIONS(688), + [anon_sym_gen] = ACTIONS(688), + [anon_sym_if] = ACTIONS(688), + [anon_sym_impl] = ACTIONS(688), + [anon_sym_let] = ACTIONS(688), + [anon_sym_loop] = ACTIONS(688), + [anon_sym_match] = ACTIONS(688), + [anon_sym_mod] = ACTIONS(688), + [anon_sym_pub] = ACTIONS(688), + [anon_sym_return] = ACTIONS(688), + [anon_sym_static] = ACTIONS(688), + [anon_sym_struct] = ACTIONS(688), + [anon_sym_trait] = ACTIONS(688), + [anon_sym_type] = ACTIONS(688), + [anon_sym_union] = ACTIONS(688), + [anon_sym_unsafe] = ACTIONS(688), + [anon_sym_use] = ACTIONS(688), + [anon_sym_where] = ACTIONS(688), + [anon_sym_while] = ACTIONS(688), + [sym_mutable_specifier] = ACTIONS(688), + [sym_integer_literal] = ACTIONS(704), + [aux_sym_string_literal_token1] = ACTIONS(706), + [sym_char_literal] = ACTIONS(704), + [anon_sym_true] = ACTIONS(708), + [anon_sym_false] = ACTIONS(708), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(688), + [sym_super] = ACTIONS(688), + [sym_crate] = ACTIONS(688), + [sym__raw_string_literal_start] = ACTIONS(710), + [sym_float_literal] = ACTIONS(704), + }, + [STATE(133)] = { + [sym_token_tree] = STATE(176), + [sym_token_repetition] = STATE(176), + [sym__literal] = STATE(176), + [sym_string_literal] = STATE(179), + [sym_raw_string_literal] = STATE(179), + [sym_boolean_literal] = STATE(179), + [sym_line_comment] = STATE(133), + [sym_block_comment] = STATE(133), + [aux_sym_token_tree_repeat1] = STATE(69), + [aux_sym__non_special_token_repeat1] = STATE(143), [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_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(676), + [anon_sym_LBRACK] = ACTIONS(678), + [anon_sym_LBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(684), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), [anon_sym_u8] = ACTIONS(674), [anon_sym_i8] = ACTIONS(674), [anon_sym_u16] = ACTIONS(674), @@ -31786,127 +31835,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(133)] = { - [sym_token_tree] = STATE(168), - [sym_token_repetition] = STATE(168), - [sym__literal] = STATE(168), - [sym_string_literal] = STATE(174), - [sym_raw_string_literal] = STATE(174), - [sym_boolean_literal] = STATE(174), - [sym_line_comment] = STATE(133), - [sym_block_comment] = STATE(133), - [aux_sym_token_tree_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(698), - [anon_sym_SEMI] = ACTIONS(640), - [anon_sym_LPAREN] = ACTIONS(700), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(706), - [anon_sym_EQ_GT] = ACTIONS(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [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(650), [anon_sym_SLASH] = ACTIONS(650), [anon_sym_PERCENT] = ACTIONS(650), @@ -31945,36 +31873,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(640), [anon_sym_DASH_GT] = ACTIONS(640), [anon_sym_POUND] = ACTIONS(640), - [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), + [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(654), [aux_sym_string_literal_token1] = ACTIONS(656), [sym_char_literal] = ACTIONS(654), @@ -31982,24 +31910,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(658), [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_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym_metavariable] = ACTIONS(686), [sym__raw_string_literal_start] = ACTIONS(662), [sym_float_literal] = ACTIONS(654), }, [STATE(134)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1564), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1555), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -32022,8 +31950,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -32035,12 +31963,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym_enum_variant_list_repeat1] = STATE(139), + [aux_sym_enum_variant_list_repeat1] = STATE(144), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -32108,15 +32036,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(135)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1600), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1610), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -32139,8 +32067,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -32152,9 +32080,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), [aux_sym_enum_variant_list_repeat1] = STATE(1014), @@ -32224,718 +32152,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(842), }, [STATE(136)] = { - [sym_line_comment] = STATE(136), - [sym_block_comment] = STATE(136), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(863), - [anon_sym_SEMI] = ACTIONS(640), - [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(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(863), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [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(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [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(137)] = { - [sym_line_comment] = STATE(137), - [sym_block_comment] = STATE(137), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(867), - [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(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), - [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(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), - [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_metavariable] = ACTIONS(872), - [sym__raw_string_literal_start] = ACTIONS(872), - [sym_float_literal] = ACTIONS(872), - }, - [STATE(138)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1621), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(138), - [sym_block_comment] = STATE(138), - [aux_sym_enum_variant_list_repeat1] = STATE(201), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(879), - [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(139)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1566), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(881), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(883), - [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(140)] = { - [sym_line_comment] = STATE(140), - [sym_block_comment] = STATE(140), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(885), - [anon_sym_SEMI] = ACTIONS(640), - [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(640), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_DOLLAR] = ACTIONS(885), - [anon_sym_PLUS] = ACTIONS(650), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(640), - [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(650), - [anon_sym_SLASH] = ACTIONS(650), - [anon_sym_PERCENT] = ACTIONS(650), - [anon_sym_CARET] = ACTIONS(650), - [anon_sym_BANG] = ACTIONS(650), - [anon_sym_AMP] = ACTIONS(650), - [anon_sym_PIPE] = ACTIONS(650), - [anon_sym_AMP_AMP] = ACTIONS(640), - [anon_sym_PIPE_PIPE] = ACTIONS(640), - [anon_sym_LT_LT] = ACTIONS(650), - [anon_sym_GT_GT] = ACTIONS(650), - [anon_sym_PLUS_EQ] = ACTIONS(640), - [anon_sym_DASH_EQ] = ACTIONS(640), - [anon_sym_STAR_EQ] = ACTIONS(640), - [anon_sym_SLASH_EQ] = ACTIONS(640), - [anon_sym_PERCENT_EQ] = ACTIONS(640), - [anon_sym_CARET_EQ] = ACTIONS(640), - [anon_sym_AMP_EQ] = ACTIONS(640), - [anon_sym_PIPE_EQ] = ACTIONS(640), - [anon_sym_LT_LT_EQ] = ACTIONS(640), - [anon_sym_GT_GT_EQ] = ACTIONS(640), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_EQ_EQ] = ACTIONS(640), - [anon_sym_BANG_EQ] = ACTIONS(640), - [anon_sym_GT] = ACTIONS(650), - [anon_sym_LT] = ACTIONS(650), - [anon_sym_GT_EQ] = ACTIONS(640), - [anon_sym_LT_EQ] = ACTIONS(640), - [anon_sym_AT] = ACTIONS(640), - [anon_sym__] = ACTIONS(650), - [anon_sym_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT] = ACTIONS(650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(640), - [anon_sym_DOT_DOT_EQ] = ACTIONS(640), - [anon_sym_COMMA] = ACTIONS(640), - [anon_sym_COLON_COLON] = ACTIONS(640), - [anon_sym_DASH_GT] = ACTIONS(640), - [anon_sym_POUND] = ACTIONS(640), - [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(141)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1598), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(141), - [sym_block_comment] = STATE(141), - [aux_sym_enum_variant_list_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(891), - [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(142)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1615), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1643), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -32958,8 +32184,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -32971,11 +32197,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(136), + [sym_block_comment] = STATE(136), [aux_sym_enum_variant_list_repeat1] = STATE(1014), [sym_identifier] = ACTIONS(750), [anon_sym_LPAREN] = ACTIONS(753), @@ -33042,17 +32268,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(860), [sym_float_literal] = ACTIONS(842), }, - [STATE(143)] = { + [STATE(137)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1567), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -33075,8 +32301,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -33088,16 +32314,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [aux_sym_enum_variant_list_repeat1] = STATE(142), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), + [aux_sym_enum_variant_list_repeat1] = STATE(138), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(893), + [anon_sym_RBRACK] = ACTIONS(863), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33123,7 +32349,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(895), + [anon_sym_COMMA] = ACTIONS(865), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33159,17 +32385,17 @@ 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(144)] = { + [STATE(138)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1568), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -33192,8 +32418,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -33205,16 +32431,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), - [aux_sym_enum_variant_list_repeat1] = STATE(143), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), + [aux_sym_enum_variant_list_repeat1] = STATE(135), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(897), + [anon_sym_RBRACK] = ACTIONS(867), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33240,7 +32466,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(899), + [anon_sym_COMMA] = ACTIONS(869), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33276,17 +32502,17 @@ 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(145)] = { + [STATE(139)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1608), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -33309,8 +32535,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -33322,15 +32548,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(145), - [sym_block_comment] = STATE(145), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [aux_sym_enum_variant_list_repeat1] = STATE(213), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(901), + [anon_sym_RPAREN] = ACTIONS(871), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -33357,6 +32583,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_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33392,17 +32619,251 @@ 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)] = { + [STATE(140)] = { + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_RBRACK] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_RBRACE] = ACTIONS(880), + [anon_sym_EQ_GT] = ACTIONS(877), + [anon_sym_COLON] = ACTIONS(882), + [anon_sym_DOLLAR] = ACTIONS(875), + [anon_sym_PLUS] = ACTIONS(882), + [anon_sym_STAR] = ACTIONS(882), + [anon_sym_QMARK] = ACTIONS(877), + [anon_sym_u8] = ACTIONS(875), + [anon_sym_i8] = ACTIONS(875), + [anon_sym_u16] = ACTIONS(875), + [anon_sym_i16] = ACTIONS(875), + [anon_sym_u32] = ACTIONS(875), + [anon_sym_i32] = ACTIONS(875), + [anon_sym_u64] = ACTIONS(875), + [anon_sym_i64] = ACTIONS(875), + [anon_sym_u128] = ACTIONS(875), + [anon_sym_i128] = ACTIONS(875), + [anon_sym_isize] = ACTIONS(875), + [anon_sym_usize] = ACTIONS(875), + [anon_sym_f32] = ACTIONS(875), + [anon_sym_f64] = ACTIONS(875), + [anon_sym_bool] = ACTIONS(875), + [anon_sym_str] = ACTIONS(875), + [anon_sym_char] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(882), + [anon_sym_SLASH] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(882), + [anon_sym_CARET] = ACTIONS(882), + [anon_sym_BANG] = ACTIONS(882), + [anon_sym_AMP] = ACTIONS(882), + [anon_sym_PIPE] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(877), + [anon_sym_PIPE_PIPE] = ACTIONS(877), + [anon_sym_LT_LT] = ACTIONS(882), + [anon_sym_GT_GT] = ACTIONS(882), + [anon_sym_PLUS_EQ] = ACTIONS(877), + [anon_sym_DASH_EQ] = ACTIONS(877), + [anon_sym_STAR_EQ] = ACTIONS(877), + [anon_sym_SLASH_EQ] = ACTIONS(877), + [anon_sym_PERCENT_EQ] = ACTIONS(877), + [anon_sym_CARET_EQ] = ACTIONS(877), + [anon_sym_AMP_EQ] = ACTIONS(877), + [anon_sym_PIPE_EQ] = ACTIONS(877), + [anon_sym_LT_LT_EQ] = ACTIONS(877), + [anon_sym_GT_GT_EQ] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(882), + [anon_sym_EQ_EQ] = ACTIONS(877), + [anon_sym_BANG_EQ] = ACTIONS(877), + [anon_sym_GT] = ACTIONS(882), + [anon_sym_LT] = ACTIONS(882), + [anon_sym_GT_EQ] = ACTIONS(877), + [anon_sym_LT_EQ] = ACTIONS(877), + [anon_sym_AT] = ACTIONS(877), + [anon_sym__] = ACTIONS(882), + [anon_sym_DOT] = ACTIONS(882), + [anon_sym_DOT_DOT] = ACTIONS(882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(877), + [anon_sym_DOT_DOT_EQ] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_COLON_COLON] = ACTIONS(877), + [anon_sym_DASH_GT] = ACTIONS(877), + [anon_sym_POUND] = ACTIONS(877), + [anon_sym_SQUOTE] = ACTIONS(875), + [anon_sym_as] = ACTIONS(875), + [anon_sym_async] = ACTIONS(875), + [anon_sym_await] = ACTIONS(875), + [anon_sym_break] = ACTIONS(875), + [anon_sym_const] = ACTIONS(875), + [anon_sym_continue] = ACTIONS(875), + [anon_sym_default] = ACTIONS(875), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_fn] = ACTIONS(875), + [anon_sym_for] = ACTIONS(875), + [anon_sym_gen] = ACTIONS(875), + [anon_sym_if] = ACTIONS(875), + [anon_sym_impl] = ACTIONS(875), + [anon_sym_let] = ACTIONS(875), + [anon_sym_loop] = ACTIONS(875), + [anon_sym_match] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_pub] = ACTIONS(875), + [anon_sym_return] = ACTIONS(875), + [anon_sym_static] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(875), + [anon_sym_trait] = ACTIONS(875), + [anon_sym_type] = ACTIONS(875), + [anon_sym_union] = ACTIONS(875), + [anon_sym_unsafe] = ACTIONS(875), + [anon_sym_use] = ACTIONS(875), + [anon_sym_where] = ACTIONS(875), + [anon_sym_while] = ACTIONS(875), + [sym_mutable_specifier] = ACTIONS(875), + [sym_integer_literal] = ACTIONS(880), + [aux_sym_string_literal_token1] = ACTIONS(880), + [sym_char_literal] = ACTIONS(880), + [anon_sym_true] = ACTIONS(875), + [anon_sym_false] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(875), + [sym_super] = ACTIONS(875), + [sym_crate] = ACTIONS(875), + [sym_metavariable] = ACTIONS(880), + [sym__raw_string_literal_start] = ACTIONS(880), + [sym_float_literal] = ACTIONS(880), + }, + [STATE(141)] = { + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(885), + [anon_sym_SEMI] = ACTIONS(640), + [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(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(885), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [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(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [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(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1628), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -33425,8 +32886,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -33438,16 +32899,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(146), - [sym_block_comment] = STATE(146), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(889), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(903), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33473,6 +32934,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(891), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33508,249 +32970,134 @@ 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(147)] = { - [sym_line_comment] = STATE(147), - [sym_block_comment] = STATE(147), - [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(148)] = { - [sym_line_comment] = STATE(148), - [sym_block_comment] = STATE(148), - [sym_identifier] = ACTIONS(909), - [anon_sym_SEMI] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(911), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_LBRACK] = ACTIONS(911), - [anon_sym_RBRACK] = ACTIONS(911), - [anon_sym_LBRACE] = ACTIONS(911), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_EQ_GT] = ACTIONS(911), - [anon_sym_COLON] = ACTIONS(909), - [anon_sym_DOLLAR] = ACTIONS(909), - [anon_sym_PLUS] = ACTIONS(909), - [anon_sym_STAR] = ACTIONS(909), - [anon_sym_QMARK] = ACTIONS(911), - [anon_sym_u8] = ACTIONS(909), - [anon_sym_i8] = ACTIONS(909), - [anon_sym_u16] = ACTIONS(909), - [anon_sym_i16] = ACTIONS(909), - [anon_sym_u32] = ACTIONS(909), - [anon_sym_i32] = ACTIONS(909), - [anon_sym_u64] = ACTIONS(909), - [anon_sym_i64] = ACTIONS(909), - [anon_sym_u128] = ACTIONS(909), - [anon_sym_i128] = ACTIONS(909), - [anon_sym_isize] = ACTIONS(909), - [anon_sym_usize] = ACTIONS(909), - [anon_sym_f32] = ACTIONS(909), - [anon_sym_f64] = ACTIONS(909), - [anon_sym_bool] = ACTIONS(909), - [anon_sym_str] = ACTIONS(909), - [anon_sym_char] = ACTIONS(909), - [anon_sym_DASH] = ACTIONS(909), - [anon_sym_SLASH] = ACTIONS(909), - [anon_sym_PERCENT] = ACTIONS(909), - [anon_sym_CARET] = ACTIONS(909), - [anon_sym_BANG] = ACTIONS(909), - [anon_sym_AMP] = ACTIONS(909), - [anon_sym_PIPE] = ACTIONS(909), - [anon_sym_AMP_AMP] = ACTIONS(911), - [anon_sym_PIPE_PIPE] = ACTIONS(911), - [anon_sym_LT_LT] = ACTIONS(909), - [anon_sym_GT_GT] = ACTIONS(909), - [anon_sym_PLUS_EQ] = ACTIONS(911), - [anon_sym_DASH_EQ] = ACTIONS(911), - [anon_sym_STAR_EQ] = ACTIONS(911), - [anon_sym_SLASH_EQ] = ACTIONS(911), - [anon_sym_PERCENT_EQ] = ACTIONS(911), - [anon_sym_CARET_EQ] = ACTIONS(911), - [anon_sym_AMP_EQ] = ACTIONS(911), - [anon_sym_PIPE_EQ] = ACTIONS(911), - [anon_sym_LT_LT_EQ] = ACTIONS(911), - [anon_sym_GT_GT_EQ] = ACTIONS(911), - [anon_sym_EQ] = ACTIONS(909), - [anon_sym_EQ_EQ] = ACTIONS(911), - [anon_sym_BANG_EQ] = ACTIONS(911), - [anon_sym_GT] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(909), - [anon_sym_GT_EQ] = ACTIONS(911), - [anon_sym_LT_EQ] = ACTIONS(911), - [anon_sym_AT] = ACTIONS(911), - [anon_sym__] = ACTIONS(909), - [anon_sym_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT] = ACTIONS(909), - [anon_sym_DOT_DOT_DOT] = ACTIONS(911), - [anon_sym_DOT_DOT_EQ] = ACTIONS(911), - [anon_sym_COMMA] = ACTIONS(911), - [anon_sym_COLON_COLON] = ACTIONS(911), - [anon_sym_DASH_GT] = ACTIONS(911), - [anon_sym_POUND] = ACTIONS(911), - [anon_sym_SQUOTE] = ACTIONS(909), - [anon_sym_as] = ACTIONS(909), - [anon_sym_async] = ACTIONS(909), - [anon_sym_await] = ACTIONS(909), - [anon_sym_break] = ACTIONS(909), - [anon_sym_const] = ACTIONS(909), - [anon_sym_continue] = ACTIONS(909), - [anon_sym_default] = ACTIONS(909), - [anon_sym_enum] = ACTIONS(909), - [anon_sym_fn] = ACTIONS(909), - [anon_sym_for] = ACTIONS(909), - [anon_sym_gen] = ACTIONS(909), - [anon_sym_if] = ACTIONS(909), - [anon_sym_impl] = ACTIONS(909), - [anon_sym_let] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(909), - [anon_sym_match] = ACTIONS(909), - [anon_sym_mod] = ACTIONS(909), - [anon_sym_pub] = ACTIONS(909), - [anon_sym_return] = ACTIONS(909), - [anon_sym_static] = ACTIONS(909), - [anon_sym_struct] = ACTIONS(909), - [anon_sym_trait] = ACTIONS(909), - [anon_sym_type] = ACTIONS(909), - [anon_sym_union] = ACTIONS(909), - [anon_sym_unsafe] = ACTIONS(909), - [anon_sym_use] = ACTIONS(909), - [anon_sym_where] = ACTIONS(909), - [anon_sym_while] = ACTIONS(909), - [sym_mutable_specifier] = ACTIONS(909), - [sym_integer_literal] = ACTIONS(911), - [aux_sym_string_literal_token1] = ACTIONS(911), - [sym_char_literal] = ACTIONS(911), - [anon_sym_true] = ACTIONS(909), - [anon_sym_false] = ACTIONS(909), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(909), - [sym_super] = ACTIONS(909), - [sym_crate] = ACTIONS(909), - [sym_metavariable] = ACTIONS(911), - [sym__raw_string_literal_start] = ACTIONS(911), - [sym_float_literal] = ACTIONS(911), + [STATE(143)] = { + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym__non_special_token_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(640), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_RPAREN] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_RBRACK] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_EQ_GT] = ACTIONS(640), + [anon_sym_COLON] = ACTIONS(650), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(650), + [anon_sym_STAR] = ACTIONS(650), + [anon_sym_QMARK] = ACTIONS(640), + [anon_sym_u8] = ACTIONS(893), + [anon_sym_i8] = ACTIONS(893), + [anon_sym_u16] = ACTIONS(893), + [anon_sym_i16] = ACTIONS(893), + [anon_sym_u32] = ACTIONS(893), + [anon_sym_i32] = ACTIONS(893), + [anon_sym_u64] = ACTIONS(893), + [anon_sym_i64] = ACTIONS(893), + [anon_sym_u128] = ACTIONS(893), + [anon_sym_i128] = ACTIONS(893), + [anon_sym_isize] = ACTIONS(893), + [anon_sym_usize] = ACTIONS(893), + [anon_sym_f32] = ACTIONS(893), + [anon_sym_f64] = ACTIONS(893), + [anon_sym_bool] = ACTIONS(893), + [anon_sym_str] = ACTIONS(893), + [anon_sym_char] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(650), + [anon_sym_SLASH] = ACTIONS(650), + [anon_sym_PERCENT] = ACTIONS(650), + [anon_sym_CARET] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(650), + [anon_sym_AMP] = ACTIONS(650), + [anon_sym_PIPE] = ACTIONS(650), + [anon_sym_AMP_AMP] = ACTIONS(640), + [anon_sym_PIPE_PIPE] = ACTIONS(640), + [anon_sym_LT_LT] = ACTIONS(650), + [anon_sym_GT_GT] = ACTIONS(650), + [anon_sym_PLUS_EQ] = ACTIONS(640), + [anon_sym_DASH_EQ] = ACTIONS(640), + [anon_sym_STAR_EQ] = ACTIONS(640), + [anon_sym_SLASH_EQ] = ACTIONS(640), + [anon_sym_PERCENT_EQ] = ACTIONS(640), + [anon_sym_CARET_EQ] = ACTIONS(640), + [anon_sym_AMP_EQ] = ACTIONS(640), + [anon_sym_PIPE_EQ] = ACTIONS(640), + [anon_sym_LT_LT_EQ] = ACTIONS(640), + [anon_sym_GT_GT_EQ] = ACTIONS(640), + [anon_sym_EQ] = ACTIONS(650), + [anon_sym_EQ_EQ] = ACTIONS(640), + [anon_sym_BANG_EQ] = ACTIONS(640), + [anon_sym_GT] = ACTIONS(650), + [anon_sym_LT] = ACTIONS(650), + [anon_sym_GT_EQ] = ACTIONS(640), + [anon_sym_LT_EQ] = ACTIONS(640), + [anon_sym_AT] = ACTIONS(640), + [anon_sym__] = ACTIONS(650), + [anon_sym_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT] = ACTIONS(650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(640), + [anon_sym_DOT_DOT_EQ] = ACTIONS(640), + [anon_sym_COMMA] = ACTIONS(640), + [anon_sym_COLON_COLON] = ACTIONS(640), + [anon_sym_DASH_GT] = ACTIONS(640), + [anon_sym_POUND] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_async] = ACTIONS(893), + [anon_sym_await] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_default] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(893), + [anon_sym_fn] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_gen] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_impl] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_pub] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_static] = ACTIONS(893), + [anon_sym_struct] = ACTIONS(893), + [anon_sym_trait] = ACTIONS(893), + [anon_sym_type] = ACTIONS(893), + [anon_sym_union] = ACTIONS(893), + [anon_sym_unsafe] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [sym_mutable_specifier] = ACTIONS(893), + [sym_integer_literal] = ACTIONS(895), + [aux_sym_string_literal_token1] = ACTIONS(895), + [sym_char_literal] = ACTIONS(895), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(893), + [sym_super] = ACTIONS(893), + [sym_crate] = ACTIONS(893), + [sym_metavariable] = ACTIONS(895), + [sym__raw_string_literal_start] = ACTIONS(895), + [sym_float_literal] = ACTIONS(895), }, - [STATE(149)] = { + [STATE(144)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1705), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1569), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -33773,8 +33120,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -33786,16 +33133,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), - [aux_sym_enum_variant_list_repeat1] = STATE(212), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym_enum_variant_list_repeat1] = STATE(136), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(913), [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), @@ -33821,6 +33168,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(899), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33856,17 +33204,132 @@ 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(150)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [STATE(145)] = { + [sym_line_comment] = STATE(145), + [sym_block_comment] = STATE(145), + [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_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -33883,14 +33346,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(3002), + [sym__let_chain] = STATE(3019), + [sym__condition] = STATE(2637), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -33902,61 +33368,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [sym_identifier] = ACTIONS(339), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(915), [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(905), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(473), [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(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(911), [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(477), [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), @@ -33965,24 +33429,140 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(151)] = { + [STATE(147)] = { + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [sym_identifier] = ACTIONS(913), + [anon_sym_SEMI] = ACTIONS(915), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(915), + [anon_sym_LBRACK] = ACTIONS(915), + [anon_sym_RBRACK] = ACTIONS(915), + [anon_sym_LBRACE] = ACTIONS(915), + [anon_sym_RBRACE] = ACTIONS(915), + [anon_sym_EQ_GT] = ACTIONS(915), + [anon_sym_COLON] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_STAR] = ACTIONS(913), + [anon_sym_QMARK] = ACTIONS(915), + [anon_sym_u8] = ACTIONS(913), + [anon_sym_i8] = ACTIONS(913), + [anon_sym_u16] = ACTIONS(913), + [anon_sym_i16] = ACTIONS(913), + [anon_sym_u32] = ACTIONS(913), + [anon_sym_i32] = ACTIONS(913), + [anon_sym_u64] = ACTIONS(913), + [anon_sym_i64] = ACTIONS(913), + [anon_sym_u128] = ACTIONS(913), + [anon_sym_i128] = ACTIONS(913), + [anon_sym_isize] = ACTIONS(913), + [anon_sym_usize] = ACTIONS(913), + [anon_sym_f32] = ACTIONS(913), + [anon_sym_f64] = ACTIONS(913), + [anon_sym_bool] = ACTIONS(913), + [anon_sym_str] = ACTIONS(913), + [anon_sym_char] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_PERCENT] = ACTIONS(913), + [anon_sym_CARET] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(913), + [anon_sym_AMP] = ACTIONS(913), + [anon_sym_PIPE] = ACTIONS(913), + [anon_sym_AMP_AMP] = ACTIONS(915), + [anon_sym_PIPE_PIPE] = ACTIONS(915), + [anon_sym_LT_LT] = ACTIONS(913), + [anon_sym_GT_GT] = ACTIONS(913), + [anon_sym_PLUS_EQ] = ACTIONS(915), + [anon_sym_DASH_EQ] = ACTIONS(915), + [anon_sym_STAR_EQ] = ACTIONS(915), + [anon_sym_SLASH_EQ] = ACTIONS(915), + [anon_sym_PERCENT_EQ] = ACTIONS(915), + [anon_sym_CARET_EQ] = ACTIONS(915), + [anon_sym_AMP_EQ] = ACTIONS(915), + [anon_sym_PIPE_EQ] = ACTIONS(915), + [anon_sym_LT_LT_EQ] = ACTIONS(915), + [anon_sym_GT_GT_EQ] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(913), + [anon_sym_EQ_EQ] = ACTIONS(915), + [anon_sym_BANG_EQ] = ACTIONS(915), + [anon_sym_GT] = ACTIONS(913), + [anon_sym_LT] = ACTIONS(913), + [anon_sym_GT_EQ] = ACTIONS(915), + [anon_sym_LT_EQ] = ACTIONS(915), + [anon_sym_AT] = ACTIONS(915), + [anon_sym__] = ACTIONS(913), + [anon_sym_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT] = ACTIONS(913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(915), + [anon_sym_DOT_DOT_EQ] = ACTIONS(915), + [anon_sym_COMMA] = ACTIONS(915), + [anon_sym_COLON_COLON] = ACTIONS(915), + [anon_sym_DASH_GT] = ACTIONS(915), + [anon_sym_POUND] = ACTIONS(915), + [anon_sym_SQUOTE] = ACTIONS(913), + [anon_sym_as] = ACTIONS(913), + [anon_sym_async] = ACTIONS(913), + [anon_sym_await] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_enum] = ACTIONS(913), + [anon_sym_fn] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_gen] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_impl] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_loop] = ACTIONS(913), + [anon_sym_match] = ACTIONS(913), + [anon_sym_mod] = ACTIONS(913), + [anon_sym_pub] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_static] = ACTIONS(913), + [anon_sym_struct] = ACTIONS(913), + [anon_sym_trait] = ACTIONS(913), + [anon_sym_type] = ACTIONS(913), + [anon_sym_union] = ACTIONS(913), + [anon_sym_unsafe] = ACTIONS(913), + [anon_sym_use] = ACTIONS(913), + [anon_sym_where] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [sym_mutable_specifier] = ACTIONS(913), + [sym_integer_literal] = ACTIONS(915), + [aux_sym_string_literal_token1] = ACTIONS(915), + [sym_char_literal] = ACTIONS(915), + [anon_sym_true] = ACTIONS(913), + [anon_sym_false] = ACTIONS(913), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(913), + [sym_super] = ACTIONS(913), + [sym_crate] = ACTIONS(913), + [sym_metavariable] = ACTIONS(915), + [sym__raw_string_literal_start] = ACTIONS(915), + [sym_float_literal] = ACTIONS(915), + }, + [STATE(148)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1785), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -34005,8 +33585,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -34018,16 +33598,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), - [aux_sym_enum_variant_list_repeat1] = STATE(203), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(917), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(917), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34088,133 +33668,17 @@ 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(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)] = { + [STATE(149)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -34237,8 +33701,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -34250,16 +33714,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), + [aux_sym_enum_variant_list_repeat1] = STATE(210), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(919), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(923), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34320,133 +33784,133 @@ 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(154)] = { - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_let_condition] = STATE(2878), - [sym__let_chain] = STATE(2880), - [sym__condition] = STATE(2695), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(931), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [STATE(150)] = { + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [sym_identifier] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_EQ_GT] = ACTIONS(923), + [anon_sym_COLON] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(921), + [anon_sym_i8] = ACTIONS(921), + [anon_sym_u16] = ACTIONS(921), + [anon_sym_i16] = ACTIONS(921), + [anon_sym_u32] = ACTIONS(921), + [anon_sym_i32] = ACTIONS(921), + [anon_sym_u64] = ACTIONS(921), + [anon_sym_i64] = ACTIONS(921), + [anon_sym_u128] = ACTIONS(921), + [anon_sym_i128] = ACTIONS(921), + [anon_sym_isize] = ACTIONS(921), + [anon_sym_usize] = ACTIONS(921), + [anon_sym_f32] = ACTIONS(921), + [anon_sym_f64] = ACTIONS(921), + [anon_sym_bool] = ACTIONS(921), + [anon_sym_str] = ACTIONS(921), + [anon_sym_char] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(921), + [anon_sym_PERCENT] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(921), + [anon_sym_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(923), + [anon_sym_PIPE_PIPE] = ACTIONS(923), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(923), + [anon_sym_DASH_EQ] = ACTIONS(923), + [anon_sym_STAR_EQ] = ACTIONS(923), + [anon_sym_SLASH_EQ] = ACTIONS(923), + [anon_sym_PERCENT_EQ] = ACTIONS(923), + [anon_sym_CARET_EQ] = ACTIONS(923), + [anon_sym_AMP_EQ] = ACTIONS(923), + [anon_sym_PIPE_EQ] = ACTIONS(923), + [anon_sym_LT_LT_EQ] = ACTIONS(923), + [anon_sym_GT_GT_EQ] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(921), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [anon_sym__] = ACTIONS(921), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DOT_DOT] = ACTIONS(921), + [anon_sym_DOT_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_COLON_COLON] = ACTIONS(923), + [anon_sym_DASH_GT] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(923), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_as] = ACTIONS(921), + [anon_sym_async] = ACTIONS(921), + [anon_sym_await] = ACTIONS(921), + [anon_sym_break] = ACTIONS(921), + [anon_sym_const] = ACTIONS(921), + [anon_sym_continue] = ACTIONS(921), + [anon_sym_default] = ACTIONS(921), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_fn] = ACTIONS(921), + [anon_sym_for] = ACTIONS(921), + [anon_sym_gen] = ACTIONS(921), + [anon_sym_if] = ACTIONS(921), + [anon_sym_impl] = ACTIONS(921), + [anon_sym_let] = ACTIONS(921), + [anon_sym_loop] = ACTIONS(921), + [anon_sym_match] = ACTIONS(921), + [anon_sym_mod] = ACTIONS(921), + [anon_sym_pub] = ACTIONS(921), + [anon_sym_return] = ACTIONS(921), + [anon_sym_static] = ACTIONS(921), + [anon_sym_struct] = ACTIONS(921), + [anon_sym_trait] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_union] = ACTIONS(921), + [anon_sym_unsafe] = ACTIONS(921), + [anon_sym_use] = ACTIONS(921), + [anon_sym_where] = ACTIONS(921), + [anon_sym_while] = ACTIONS(921), + [sym_mutable_specifier] = ACTIONS(921), + [sym_integer_literal] = ACTIONS(923), + [aux_sym_string_literal_token1] = ACTIONS(923), + [sym_char_literal] = ACTIONS(923), + [anon_sym_true] = ACTIONS(921), + [anon_sym_false] = ACTIONS(921), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(921), + [sym_super] = ACTIONS(921), + [sym_crate] = ACTIONS(921), + [sym_metavariable] = ACTIONS(923), + [sym__raw_string_literal_start] = ACTIONS(923), + [sym_float_literal] = ACTIONS(923), }, - [STATE(155)] = { + [STATE(151)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -34469,8 +33933,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -34482,16 +33946,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [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(933), + [anon_sym_RBRACK] = ACTIONS(925), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34552,9 +34016,241 @@ 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(156)] = { - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), + [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_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [sym_identifier] = ACTIONS(931), + [anon_sym_SEMI] = ACTIONS(933), + [anon_sym_LPAREN] = ACTIONS(933), + [anon_sym_RPAREN] = ACTIONS(933), + [anon_sym_LBRACK] = ACTIONS(933), + [anon_sym_RBRACK] = ACTIONS(933), + [anon_sym_LBRACE] = ACTIONS(933), + [anon_sym_RBRACE] = ACTIONS(933), + [anon_sym_EQ_GT] = ACTIONS(933), + [anon_sym_COLON] = ACTIONS(931), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(931), + [anon_sym_QMARK] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(931), + [anon_sym_i8] = ACTIONS(931), + [anon_sym_u16] = ACTIONS(931), + [anon_sym_i16] = ACTIONS(931), + [anon_sym_u32] = ACTIONS(931), + [anon_sym_i32] = ACTIONS(931), + [anon_sym_u64] = ACTIONS(931), + [anon_sym_i64] = ACTIONS(931), + [anon_sym_u128] = ACTIONS(931), + [anon_sym_i128] = ACTIONS(931), + [anon_sym_isize] = ACTIONS(931), + [anon_sym_usize] = ACTIONS(931), + [anon_sym_f32] = ACTIONS(931), + [anon_sym_f64] = ACTIONS(931), + [anon_sym_bool] = ACTIONS(931), + [anon_sym_str] = ACTIONS(931), + [anon_sym_char] = ACTIONS(931), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_SLASH] = ACTIONS(931), + [anon_sym_PERCENT] = ACTIONS(931), + [anon_sym_CARET] = ACTIONS(931), + [anon_sym_BANG] = ACTIONS(931), + [anon_sym_AMP] = ACTIONS(931), + [anon_sym_PIPE] = ACTIONS(931), + [anon_sym_AMP_AMP] = ACTIONS(933), + [anon_sym_PIPE_PIPE] = ACTIONS(933), + [anon_sym_LT_LT] = ACTIONS(931), + [anon_sym_GT_GT] = ACTIONS(931), + [anon_sym_PLUS_EQ] = ACTIONS(933), + [anon_sym_DASH_EQ] = ACTIONS(933), + [anon_sym_STAR_EQ] = ACTIONS(933), + [anon_sym_SLASH_EQ] = ACTIONS(933), + [anon_sym_PERCENT_EQ] = ACTIONS(933), + [anon_sym_CARET_EQ] = ACTIONS(933), + [anon_sym_AMP_EQ] = ACTIONS(933), + [anon_sym_PIPE_EQ] = ACTIONS(933), + [anon_sym_LT_LT_EQ] = ACTIONS(933), + [anon_sym_GT_GT_EQ] = ACTIONS(933), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_EQ_EQ] = ACTIONS(933), + [anon_sym_BANG_EQ] = ACTIONS(933), + [anon_sym_GT] = ACTIONS(931), + [anon_sym_LT] = ACTIONS(931), + [anon_sym_GT_EQ] = ACTIONS(933), + [anon_sym_LT_EQ] = ACTIONS(933), + [anon_sym_AT] = ACTIONS(933), + [anon_sym__] = ACTIONS(931), + [anon_sym_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(933), + [anon_sym_DOT_DOT_EQ] = ACTIONS(933), + [anon_sym_COMMA] = ACTIONS(933), + [anon_sym_COLON_COLON] = ACTIONS(933), + [anon_sym_DASH_GT] = ACTIONS(933), + [anon_sym_POUND] = ACTIONS(933), + [anon_sym_SQUOTE] = ACTIONS(931), + [anon_sym_as] = ACTIONS(931), + [anon_sym_async] = ACTIONS(931), + [anon_sym_await] = ACTIONS(931), + [anon_sym_break] = ACTIONS(931), + [anon_sym_const] = ACTIONS(931), + [anon_sym_continue] = ACTIONS(931), + [anon_sym_default] = ACTIONS(931), + [anon_sym_enum] = ACTIONS(931), + [anon_sym_fn] = ACTIONS(931), + [anon_sym_for] = ACTIONS(931), + [anon_sym_gen] = ACTIONS(931), + [anon_sym_if] = ACTIONS(931), + [anon_sym_impl] = ACTIONS(931), + [anon_sym_let] = ACTIONS(931), + [anon_sym_loop] = ACTIONS(931), + [anon_sym_match] = ACTIONS(931), + [anon_sym_mod] = ACTIONS(931), + [anon_sym_pub] = ACTIONS(931), + [anon_sym_return] = ACTIONS(931), + [anon_sym_static] = ACTIONS(931), + [anon_sym_struct] = ACTIONS(931), + [anon_sym_trait] = ACTIONS(931), + [anon_sym_type] = ACTIONS(931), + [anon_sym_union] = ACTIONS(931), + [anon_sym_unsafe] = ACTIONS(931), + [anon_sym_use] = ACTIONS(931), + [anon_sym_where] = ACTIONS(931), + [anon_sym_while] = ACTIONS(931), + [sym_mutable_specifier] = ACTIONS(931), + [sym_integer_literal] = ACTIONS(933), + [aux_sym_string_literal_token1] = ACTIONS(933), + [sym_char_literal] = ACTIONS(933), + [anon_sym_true] = ACTIONS(931), + [anon_sym_false] = ACTIONS(931), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(931), + [sym_super] = ACTIONS(931), + [sym_crate] = ACTIONS(931), + [sym_metavariable] = ACTIONS(933), + [sym__raw_string_literal_start] = ACTIONS(933), + [sym_float_literal] = ACTIONS(933), + }, + [STATE(154)] = { + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), [sym_identifier] = ACTIONS(935), [anon_sym_SEMI] = ACTIONS(937), [anon_sym_LPAREN] = ACTIONS(937), @@ -34668,9 +34364,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(937), [sym_float_literal] = ACTIONS(937), }, - [STATE(157)] = { - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), + [STATE(155)] = { + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), [sym_identifier] = ACTIONS(939), [anon_sym_SEMI] = ACTIONS(941), [anon_sym_LPAREN] = ACTIONS(941), @@ -34784,17 +34480,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(941), [sym_float_literal] = ACTIONS(941), }, - [STATE(158)] = { + [STATE(156)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -34817,8 +34513,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -34830,16 +34526,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(943), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(943), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34900,365 +34596,133 @@ 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(160)] = { - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [sym_identifier] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_RBRACK] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_EQ_GT] = ACTIONS(951), - [anon_sym_COLON] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_STAR] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(951), - [anon_sym_u8] = ACTIONS(949), - [anon_sym_i8] = ACTIONS(949), - [anon_sym_u16] = ACTIONS(949), - [anon_sym_i16] = ACTIONS(949), - [anon_sym_u32] = ACTIONS(949), - [anon_sym_i32] = ACTIONS(949), - [anon_sym_u64] = ACTIONS(949), - [anon_sym_i64] = ACTIONS(949), - [anon_sym_u128] = ACTIONS(949), - [anon_sym_i128] = ACTIONS(949), - [anon_sym_isize] = ACTIONS(949), - [anon_sym_usize] = ACTIONS(949), - [anon_sym_f32] = ACTIONS(949), - [anon_sym_f64] = ACTIONS(949), - [anon_sym_bool] = ACTIONS(949), - [anon_sym_str] = ACTIONS(949), - [anon_sym_char] = ACTIONS(949), - [anon_sym_DASH] = ACTIONS(949), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_PERCENT] = ACTIONS(949), - [anon_sym_CARET] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_PIPE] = ACTIONS(949), - [anon_sym_AMP_AMP] = ACTIONS(951), - [anon_sym_PIPE_PIPE] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_EQ] = ACTIONS(949), - [anon_sym_EQ_EQ] = ACTIONS(951), - [anon_sym_BANG_EQ] = ACTIONS(951), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_AT] = ACTIONS(951), - [anon_sym__] = ACTIONS(949), - [anon_sym_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_DASH_GT] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(951), - [anon_sym_SQUOTE] = ACTIONS(949), - [anon_sym_as] = ACTIONS(949), - [anon_sym_async] = ACTIONS(949), - [anon_sym_await] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_const] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_default] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(949), - [anon_sym_fn] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_gen] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_impl] = ACTIONS(949), - [anon_sym_let] = ACTIONS(949), - [anon_sym_loop] = ACTIONS(949), - [anon_sym_match] = ACTIONS(949), - [anon_sym_mod] = ACTIONS(949), - [anon_sym_pub] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_static] = ACTIONS(949), - [anon_sym_struct] = ACTIONS(949), - [anon_sym_trait] = ACTIONS(949), - [anon_sym_type] = ACTIONS(949), - [anon_sym_union] = ACTIONS(949), - [anon_sym_unsafe] = ACTIONS(949), - [anon_sym_use] = ACTIONS(949), - [anon_sym_where] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [sym_mutable_specifier] = ACTIONS(949), - [sym_integer_literal] = ACTIONS(951), - [aux_sym_string_literal_token1] = ACTIONS(951), - [sym_char_literal] = ACTIONS(951), - [anon_sym_true] = ACTIONS(949), - [anon_sym_false] = ACTIONS(949), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(949), - [sym_super] = ACTIONS(949), - [sym_crate] = ACTIONS(949), - [sym_metavariable] = ACTIONS(951), - [sym__raw_string_literal_start] = ACTIONS(951), - [sym_float_literal] = ACTIONS(951), - }, - [STATE(161)] = { - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), - [sym_identifier] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_RBRACK] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_EQ_GT] = ACTIONS(955), - [anon_sym_COLON] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_STAR] = ACTIONS(953), - [anon_sym_QMARK] = ACTIONS(955), - [anon_sym_u8] = ACTIONS(953), - [anon_sym_i8] = ACTIONS(953), - [anon_sym_u16] = ACTIONS(953), - [anon_sym_i16] = ACTIONS(953), - [anon_sym_u32] = ACTIONS(953), - [anon_sym_i32] = ACTIONS(953), - [anon_sym_u64] = ACTIONS(953), - [anon_sym_i64] = ACTIONS(953), - [anon_sym_u128] = ACTIONS(953), - [anon_sym_i128] = ACTIONS(953), - [anon_sym_isize] = ACTIONS(953), - [anon_sym_usize] = ACTIONS(953), - [anon_sym_f32] = ACTIONS(953), - [anon_sym_f64] = ACTIONS(953), - [anon_sym_bool] = ACTIONS(953), - [anon_sym_str] = ACTIONS(953), - [anon_sym_char] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_SLASH] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(953), - [anon_sym_CARET] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_AMP] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(955), - [anon_sym_PIPE_PIPE] = ACTIONS(955), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS_EQ] = ACTIONS(955), - [anon_sym_DASH_EQ] = ACTIONS(955), - [anon_sym_STAR_EQ] = ACTIONS(955), - [anon_sym_SLASH_EQ] = ACTIONS(955), - [anon_sym_PERCENT_EQ] = ACTIONS(955), - [anon_sym_CARET_EQ] = ACTIONS(955), - [anon_sym_AMP_EQ] = ACTIONS(955), - [anon_sym_PIPE_EQ] = ACTIONS(955), - [anon_sym_LT_LT_EQ] = ACTIONS(955), - [anon_sym_GT_GT_EQ] = ACTIONS(955), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_EQ_EQ] = ACTIONS(955), - [anon_sym_BANG_EQ] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(953), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_GT_EQ] = ACTIONS(955), - [anon_sym_LT_EQ] = ACTIONS(955), - [anon_sym_AT] = ACTIONS(955), - [anon_sym__] = ACTIONS(953), - [anon_sym_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(955), - [anon_sym_COMMA] = ACTIONS(955), - [anon_sym_COLON_COLON] = ACTIONS(955), - [anon_sym_DASH_GT] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(955), - [anon_sym_SQUOTE] = ACTIONS(953), - [anon_sym_as] = ACTIONS(953), - [anon_sym_async] = ACTIONS(953), - [anon_sym_await] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_const] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_default] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(953), - [anon_sym_fn] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_gen] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_impl] = ACTIONS(953), - [anon_sym_let] = ACTIONS(953), - [anon_sym_loop] = ACTIONS(953), - [anon_sym_match] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_pub] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_static] = ACTIONS(953), - [anon_sym_struct] = ACTIONS(953), - [anon_sym_trait] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_union] = ACTIONS(953), - [anon_sym_unsafe] = ACTIONS(953), - [anon_sym_use] = ACTIONS(953), - [anon_sym_where] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [sym_mutable_specifier] = ACTIONS(953), - [sym_integer_literal] = ACTIONS(955), - [aux_sym_string_literal_token1] = ACTIONS(955), - [sym_char_literal] = ACTIONS(955), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(953), - [sym_super] = ACTIONS(953), - [sym_crate] = ACTIONS(953), - [sym_metavariable] = ACTIONS(955), - [sym__raw_string_literal_start] = ACTIONS(955), - [sym_float_literal] = ACTIONS(955), + [STATE(157)] = { + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [aux_sym__non_special_token_repeat1] = STATE(157), + [sym_identifier] = ACTIONS(875), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_LBRACK] = ACTIONS(880), + [anon_sym_RBRACK] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_RBRACE] = ACTIONS(880), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_COLON] = ACTIONS(948), + [anon_sym_DOLLAR] = ACTIONS(880), + [anon_sym_PLUS] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(948), + [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_u8] = ACTIONS(875), + [anon_sym_i8] = ACTIONS(875), + [anon_sym_u16] = ACTIONS(875), + [anon_sym_i16] = ACTIONS(875), + [anon_sym_u32] = ACTIONS(875), + [anon_sym_i32] = ACTIONS(875), + [anon_sym_u64] = ACTIONS(875), + [anon_sym_i64] = ACTIONS(875), + [anon_sym_u128] = ACTIONS(875), + [anon_sym_i128] = ACTIONS(875), + [anon_sym_isize] = ACTIONS(875), + [anon_sym_usize] = ACTIONS(875), + [anon_sym_f32] = ACTIONS(875), + [anon_sym_f64] = ACTIONS(875), + [anon_sym_bool] = ACTIONS(875), + [anon_sym_str] = ACTIONS(875), + [anon_sym_char] = ACTIONS(875), + [anon_sym_DASH] = ACTIONS(948), + [anon_sym_SLASH] = ACTIONS(948), + [anon_sym_PERCENT] = ACTIONS(948), + [anon_sym_CARET] = ACTIONS(948), + [anon_sym_BANG] = ACTIONS(948), + [anon_sym_AMP] = ACTIONS(948), + [anon_sym_PIPE] = ACTIONS(948), + [anon_sym_AMP_AMP] = ACTIONS(945), + [anon_sym_PIPE_PIPE] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(948), + [anon_sym_GT_GT] = ACTIONS(948), + [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(948), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(948), + [anon_sym_LT] = ACTIONS(948), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_AT] = ACTIONS(945), + [anon_sym__] = ACTIONS(948), + [anon_sym_DOT] = ACTIONS(948), + [anon_sym_DOT_DOT] = ACTIONS(948), + [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(875), + [anon_sym_as] = ACTIONS(875), + [anon_sym_async] = ACTIONS(875), + [anon_sym_await] = ACTIONS(875), + [anon_sym_break] = ACTIONS(875), + [anon_sym_const] = ACTIONS(875), + [anon_sym_continue] = ACTIONS(875), + [anon_sym_default] = ACTIONS(875), + [anon_sym_enum] = ACTIONS(875), + [anon_sym_fn] = ACTIONS(875), + [anon_sym_for] = ACTIONS(875), + [anon_sym_gen] = ACTIONS(875), + [anon_sym_if] = ACTIONS(875), + [anon_sym_impl] = ACTIONS(875), + [anon_sym_let] = ACTIONS(875), + [anon_sym_loop] = ACTIONS(875), + [anon_sym_match] = ACTIONS(875), + [anon_sym_mod] = ACTIONS(875), + [anon_sym_pub] = ACTIONS(875), + [anon_sym_return] = ACTIONS(875), + [anon_sym_static] = ACTIONS(875), + [anon_sym_struct] = ACTIONS(875), + [anon_sym_trait] = ACTIONS(875), + [anon_sym_type] = ACTIONS(875), + [anon_sym_union] = ACTIONS(875), + [anon_sym_unsafe] = ACTIONS(875), + [anon_sym_use] = ACTIONS(875), + [anon_sym_where] = ACTIONS(875), + [anon_sym_while] = ACTIONS(875), + [sym_mutable_specifier] = ACTIONS(875), + [sym_integer_literal] = ACTIONS(880), + [aux_sym_string_literal_token1] = ACTIONS(880), + [sym_char_literal] = ACTIONS(880), + [anon_sym_true] = ACTIONS(875), + [anon_sym_false] = ACTIONS(875), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(875), + [sym_super] = ACTIONS(875), + [sym_crate] = ACTIONS(875), + [sym__raw_string_literal_start] = ACTIONS(880), + [sym_float_literal] = ACTIONS(880), }, - [STATE(162)] = { + [STATE(158)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -35281,8 +34745,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -35294,16 +34758,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(162), - [sym_block_comment] = STATE(162), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [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(957), + [anon_sym_RBRACK] = ACTIONS(951), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35364,17 +34828,17 @@ 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(163)] = { + [STATE(159)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -35397,8 +34861,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -35410,15 +34874,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(163), - [sym_block_comment] = STATE(163), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(959), + [anon_sym_RPAREN] = ACTIONS(953), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -35480,249 +34944,17 @@ 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(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), - [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(961), - [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(961), - [sym_super] = ACTIONS(961), - [sym_crate] = ACTIONS(961), - [sym_metavariable] = ACTIONS(963), - [sym__raw_string_literal_start] = ACTIONS(963), - [sym_float_literal] = ACTIONS(963), - }, - [STATE(165)] = { - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), - [sym_identifier] = ACTIONS(965), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_RPAREN] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_RBRACK] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_EQ_GT] = ACTIONS(967), - [anon_sym_COLON] = ACTIONS(965), - [anon_sym_DOLLAR] = ACTIONS(965), - [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_STAR] = ACTIONS(965), - [anon_sym_QMARK] = ACTIONS(967), - [anon_sym_u8] = ACTIONS(965), - [anon_sym_i8] = ACTIONS(965), - [anon_sym_u16] = ACTIONS(965), - [anon_sym_i16] = ACTIONS(965), - [anon_sym_u32] = ACTIONS(965), - [anon_sym_i32] = ACTIONS(965), - [anon_sym_u64] = ACTIONS(965), - [anon_sym_i64] = ACTIONS(965), - [anon_sym_u128] = ACTIONS(965), - [anon_sym_i128] = ACTIONS(965), - [anon_sym_isize] = ACTIONS(965), - [anon_sym_usize] = ACTIONS(965), - [anon_sym_f32] = ACTIONS(965), - [anon_sym_f64] = ACTIONS(965), - [anon_sym_bool] = ACTIONS(965), - [anon_sym_str] = ACTIONS(965), - [anon_sym_char] = ACTIONS(965), - [anon_sym_DASH] = ACTIONS(965), - [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_PERCENT] = ACTIONS(965), - [anon_sym_CARET] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_AMP] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(965), - [anon_sym_GT_GT] = ACTIONS(965), - [anon_sym_PLUS_EQ] = ACTIONS(967), - [anon_sym_DASH_EQ] = ACTIONS(967), - [anon_sym_STAR_EQ] = ACTIONS(967), - [anon_sym_SLASH_EQ] = ACTIONS(967), - [anon_sym_PERCENT_EQ] = ACTIONS(967), - [anon_sym_CARET_EQ] = ACTIONS(967), - [anon_sym_AMP_EQ] = ACTIONS(967), - [anon_sym_PIPE_EQ] = ACTIONS(967), - [anon_sym_LT_LT_EQ] = ACTIONS(967), - [anon_sym_GT_GT_EQ] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(965), - [anon_sym_EQ_EQ] = ACTIONS(967), - [anon_sym_BANG_EQ] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(965), - [anon_sym_GT_EQ] = ACTIONS(967), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_AT] = ACTIONS(967), - [anon_sym__] = ACTIONS(965), - [anon_sym_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_EQ] = ACTIONS(967), - [anon_sym_COMMA] = ACTIONS(967), - [anon_sym_COLON_COLON] = ACTIONS(967), - [anon_sym_DASH_GT] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(967), - [anon_sym_SQUOTE] = ACTIONS(965), - [anon_sym_as] = ACTIONS(965), - [anon_sym_async] = ACTIONS(965), - [anon_sym_await] = ACTIONS(965), - [anon_sym_break] = ACTIONS(965), - [anon_sym_const] = ACTIONS(965), - [anon_sym_continue] = ACTIONS(965), - [anon_sym_default] = ACTIONS(965), - [anon_sym_enum] = ACTIONS(965), - [anon_sym_fn] = ACTIONS(965), - [anon_sym_for] = ACTIONS(965), - [anon_sym_gen] = ACTIONS(965), - [anon_sym_if] = ACTIONS(965), - [anon_sym_impl] = ACTIONS(965), - [anon_sym_let] = ACTIONS(965), - [anon_sym_loop] = ACTIONS(965), - [anon_sym_match] = ACTIONS(965), - [anon_sym_mod] = ACTIONS(965), - [anon_sym_pub] = ACTIONS(965), - [anon_sym_return] = ACTIONS(965), - [anon_sym_static] = ACTIONS(965), - [anon_sym_struct] = ACTIONS(965), - [anon_sym_trait] = ACTIONS(965), - [anon_sym_type] = ACTIONS(965), - [anon_sym_union] = ACTIONS(965), - [anon_sym_unsafe] = ACTIONS(965), - [anon_sym_use] = ACTIONS(965), - [anon_sym_where] = ACTIONS(965), - [anon_sym_while] = ACTIONS(965), - [sym_mutable_specifier] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(967), - [aux_sym_string_literal_token1] = ACTIONS(967), - [sym_char_literal] = ACTIONS(967), - [anon_sym_true] = ACTIONS(965), - [anon_sym_false] = ACTIONS(965), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(965), - [sym_super] = ACTIONS(965), - [sym_crate] = ACTIONS(965), - [sym_metavariable] = ACTIONS(967), - [sym__raw_string_literal_start] = ACTIONS(967), - [sym_float_literal] = ACTIONS(967), - }, - [STATE(166)] = { + [STATE(160)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -35745,8 +34977,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -35758,16 +34990,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(955), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(969), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35828,17 +35060,133 @@ 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(167)] = { + [STATE(161)] = { + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(3002), + [sym__let_chain] = STATE(3019), + [sym__condition] = STATE(2564), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(162)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -35861,8 +35209,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -35874,16 +35222,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(971), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(957), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35944,249 +35292,17 @@ 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(168)] = { - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [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(169)] = { - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(973), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_LPAREN] = ACTIONS(975), - [anon_sym_RPAREN] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(975), - [anon_sym_RBRACK] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(975), - [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_EQ_GT] = ACTIONS(975), - [anon_sym_COLON] = ACTIONS(973), - [anon_sym_DOLLAR] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(973), - [anon_sym_STAR] = ACTIONS(973), - [anon_sym_QMARK] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(973), - [anon_sym_i8] = ACTIONS(973), - [anon_sym_u16] = ACTIONS(973), - [anon_sym_i16] = ACTIONS(973), - [anon_sym_u32] = ACTIONS(973), - [anon_sym_i32] = ACTIONS(973), - [anon_sym_u64] = ACTIONS(973), - [anon_sym_i64] = ACTIONS(973), - [anon_sym_u128] = ACTIONS(973), - [anon_sym_i128] = ACTIONS(973), - [anon_sym_isize] = ACTIONS(973), - [anon_sym_usize] = ACTIONS(973), - [anon_sym_f32] = ACTIONS(973), - [anon_sym_f64] = ACTIONS(973), - [anon_sym_bool] = ACTIONS(973), - [anon_sym_str] = ACTIONS(973), - [anon_sym_char] = ACTIONS(973), - [anon_sym_DASH] = ACTIONS(973), - [anon_sym_SLASH] = ACTIONS(973), - [anon_sym_PERCENT] = ACTIONS(973), - [anon_sym_CARET] = ACTIONS(973), - [anon_sym_BANG] = ACTIONS(973), - [anon_sym_AMP] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(973), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [anon_sym_LT_LT] = ACTIONS(973), - [anon_sym_GT_GT] = ACTIONS(973), - [anon_sym_PLUS_EQ] = ACTIONS(975), - [anon_sym_DASH_EQ] = ACTIONS(975), - [anon_sym_STAR_EQ] = ACTIONS(975), - [anon_sym_SLASH_EQ] = ACTIONS(975), - [anon_sym_PERCENT_EQ] = ACTIONS(975), - [anon_sym_CARET_EQ] = ACTIONS(975), - [anon_sym_AMP_EQ] = ACTIONS(975), - [anon_sym_PIPE_EQ] = ACTIONS(975), - [anon_sym_LT_LT_EQ] = ACTIONS(975), - [anon_sym_GT_GT_EQ] = ACTIONS(975), - [anon_sym_EQ] = ACTIONS(973), - [anon_sym_EQ_EQ] = ACTIONS(975), - [anon_sym_BANG_EQ] = ACTIONS(975), - [anon_sym_GT] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(973), - [anon_sym_GT_EQ] = ACTIONS(975), - [anon_sym_LT_EQ] = ACTIONS(975), - [anon_sym_AT] = ACTIONS(975), - [anon_sym__] = ACTIONS(973), - [anon_sym_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT] = ACTIONS(973), - [anon_sym_DOT_DOT_DOT] = ACTIONS(975), - [anon_sym_DOT_DOT_EQ] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(975), - [anon_sym_COLON_COLON] = ACTIONS(975), - [anon_sym_DASH_GT] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(975), - [anon_sym_SQUOTE] = ACTIONS(973), - [anon_sym_as] = ACTIONS(973), - [anon_sym_async] = ACTIONS(973), - [anon_sym_await] = ACTIONS(973), - [anon_sym_break] = ACTIONS(973), - [anon_sym_const] = ACTIONS(973), - [anon_sym_continue] = ACTIONS(973), - [anon_sym_default] = ACTIONS(973), - [anon_sym_enum] = ACTIONS(973), - [anon_sym_fn] = ACTIONS(973), - [anon_sym_for] = ACTIONS(973), - [anon_sym_gen] = ACTIONS(973), - [anon_sym_if] = ACTIONS(973), - [anon_sym_impl] = ACTIONS(973), - [anon_sym_let] = ACTIONS(973), - [anon_sym_loop] = ACTIONS(973), - [anon_sym_match] = ACTIONS(973), - [anon_sym_mod] = ACTIONS(973), - [anon_sym_pub] = ACTIONS(973), - [anon_sym_return] = ACTIONS(973), - [anon_sym_static] = ACTIONS(973), - [anon_sym_struct] = ACTIONS(973), - [anon_sym_trait] = ACTIONS(973), - [anon_sym_type] = ACTIONS(973), - [anon_sym_union] = ACTIONS(973), - [anon_sym_unsafe] = ACTIONS(973), - [anon_sym_use] = ACTIONS(973), - [anon_sym_where] = ACTIONS(973), - [anon_sym_while] = ACTIONS(973), - [sym_mutable_specifier] = ACTIONS(973), - [sym_integer_literal] = ACTIONS(975), - [aux_sym_string_literal_token1] = ACTIONS(975), - [sym_char_literal] = ACTIONS(975), - [anon_sym_true] = ACTIONS(973), - [anon_sym_false] = ACTIONS(973), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(973), - [sym_super] = ACTIONS(973), - [sym_crate] = ACTIONS(973), - [sym_metavariable] = ACTIONS(975), - [sym__raw_string_literal_start] = ACTIONS(975), - [sym_float_literal] = ACTIONS(975), - }, - [STATE(170)] = { + [STATE(163)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -36209,8 +35325,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -36222,15 +35338,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_RPAREN] = ACTIONS(959), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -36292,16 +35408,16 @@ 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(171)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(164)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -36318,17 +35434,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), - [sym_let_condition] = STATE(2878), - [sym__let_chain] = STATE(2880), - [sym__condition] = STATE(2608), + [sym_let_condition] = STATE(3002), + [sym__let_chain] = STATE(3019), + [sym__condition] = STATE(2567), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -36340,16 +35456,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -36367,12 +35483,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -36383,7 +35499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(931), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -36408,16 +35524,17 @@ 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(172)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(165)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -36434,17 +35551,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), - [sym_let_condition] = STATE(2878), - [sym__let_chain] = STATE(2880), - [sym__condition] = STATE(2673), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -36456,16 +35570,482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [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(961), + [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(166)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [aux_sym_enum_variant_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(963), + [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), + }, + [STATE(167)] = { + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [sym_identifier] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_EQ_GT] = ACTIONS(967), + [anon_sym_COLON] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(965), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(965), + [anon_sym_i8] = ACTIONS(965), + [anon_sym_u16] = ACTIONS(965), + [anon_sym_i16] = ACTIONS(965), + [anon_sym_u32] = ACTIONS(965), + [anon_sym_i32] = ACTIONS(965), + [anon_sym_u64] = ACTIONS(965), + [anon_sym_i64] = ACTIONS(965), + [anon_sym_u128] = ACTIONS(965), + [anon_sym_i128] = ACTIONS(965), + [anon_sym_isize] = ACTIONS(965), + [anon_sym_usize] = ACTIONS(965), + [anon_sym_f32] = ACTIONS(965), + [anon_sym_f64] = ACTIONS(965), + [anon_sym_bool] = ACTIONS(965), + [anon_sym_str] = ACTIONS(965), + [anon_sym_char] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_PLUS_EQ] = ACTIONS(967), + [anon_sym_DASH_EQ] = ACTIONS(967), + [anon_sym_STAR_EQ] = ACTIONS(967), + [anon_sym_SLASH_EQ] = ACTIONS(967), + [anon_sym_PERCENT_EQ] = ACTIONS(967), + [anon_sym_CARET_EQ] = ACTIONS(967), + [anon_sym_AMP_EQ] = ACTIONS(967), + [anon_sym_PIPE_EQ] = ACTIONS(967), + [anon_sym_LT_LT_EQ] = ACTIONS(967), + [anon_sym_GT_GT_EQ] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(967), + [anon_sym__] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_COLON_COLON] = ACTIONS(967), + [anon_sym_DASH_GT] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_as] = ACTIONS(965), + [anon_sym_async] = ACTIONS(965), + [anon_sym_await] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_default] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(965), + [anon_sym_fn] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_gen] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_impl] = ACTIONS(965), + [anon_sym_let] = ACTIONS(965), + [anon_sym_loop] = ACTIONS(965), + [anon_sym_match] = ACTIONS(965), + [anon_sym_mod] = ACTIONS(965), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_static] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_trait] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_union] = ACTIONS(965), + [anon_sym_unsafe] = ACTIONS(965), + [anon_sym_use] = ACTIONS(965), + [anon_sym_where] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [sym_mutable_specifier] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(967), + [aux_sym_string_literal_token1] = ACTIONS(967), + [sym_char_literal] = ACTIONS(967), + [anon_sym_true] = ACTIONS(965), + [anon_sym_false] = ACTIONS(965), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(965), + [sym_super] = ACTIONS(965), + [sym_crate] = ACTIONS(965), + [sym_metavariable] = ACTIONS(967), + [sym__raw_string_literal_start] = ACTIONS(967), + [sym_float_literal] = ACTIONS(967), + }, + [STATE(168)] = { + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym_identifier] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_RBRACK] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_EQ_GT] = ACTIONS(971), + [anon_sym_COLON] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_QMARK] = ACTIONS(971), + [anon_sym_u8] = ACTIONS(969), + [anon_sym_i8] = ACTIONS(969), + [anon_sym_u16] = ACTIONS(969), + [anon_sym_i16] = ACTIONS(969), + [anon_sym_u32] = ACTIONS(969), + [anon_sym_i32] = ACTIONS(969), + [anon_sym_u64] = ACTIONS(969), + [anon_sym_i64] = ACTIONS(969), + [anon_sym_u128] = ACTIONS(969), + [anon_sym_i128] = ACTIONS(969), + [anon_sym_isize] = ACTIONS(969), + [anon_sym_usize] = ACTIONS(969), + [anon_sym_f32] = ACTIONS(969), + [anon_sym_f64] = ACTIONS(969), + [anon_sym_bool] = ACTIONS(969), + [anon_sym_str] = ACTIONS(969), + [anon_sym_char] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(969), + [anon_sym_PERCENT] = ACTIONS(969), + [anon_sym_CARET] = ACTIONS(969), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(969), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), + [anon_sym_STAR_EQ] = ACTIONS(971), + [anon_sym_SLASH_EQ] = ACTIONS(971), + [anon_sym_PERCENT_EQ] = ACTIONS(971), + [anon_sym_CARET_EQ] = ACTIONS(971), + [anon_sym_AMP_EQ] = ACTIONS(971), + [anon_sym_PIPE_EQ] = ACTIONS(971), + [anon_sym_LT_LT_EQ] = ACTIONS(971), + [anon_sym_GT_GT_EQ] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(969), + [anon_sym_EQ_EQ] = ACTIONS(971), + [anon_sym_BANG_EQ] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(971), + [anon_sym_LT_EQ] = ACTIONS(971), + [anon_sym_AT] = ACTIONS(971), + [anon_sym__] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(971), + [anon_sym_DOT_DOT_EQ] = ACTIONS(971), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_COLON_COLON] = ACTIONS(971), + [anon_sym_DASH_GT] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(971), + [anon_sym_SQUOTE] = ACTIONS(969), + [anon_sym_as] = ACTIONS(969), + [anon_sym_async] = ACTIONS(969), + [anon_sym_await] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_default] = ACTIONS(969), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_fn] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_gen] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_impl] = ACTIONS(969), + [anon_sym_let] = ACTIONS(969), + [anon_sym_loop] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_mod] = ACTIONS(969), + [anon_sym_pub] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_static] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(969), + [anon_sym_trait] = ACTIONS(969), + [anon_sym_type] = ACTIONS(969), + [anon_sym_union] = ACTIONS(969), + [anon_sym_unsafe] = ACTIONS(969), + [anon_sym_use] = ACTIONS(969), + [anon_sym_where] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [sym_mutable_specifier] = ACTIONS(969), + [sym_integer_literal] = ACTIONS(971), + [aux_sym_string_literal_token1] = ACTIONS(971), + [sym_char_literal] = ACTIONS(971), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(969), + [sym_super] = ACTIONS(969), + [sym_crate] = ACTIONS(969), + [sym_metavariable] = ACTIONS(971), + [sym__raw_string_literal_start] = ACTIONS(971), + [sym_float_literal] = ACTIONS(971), + }, + [STATE(169)] = { + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(3002), + [sym__let_chain] = STATE(3019), + [sym__condition] = STATE(2551), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -36483,12 +36063,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -36499,7 +36079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(931), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -36524,365 +36104,17 @@ 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(173)] = { - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [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(979), - [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(174)] = { - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_RBRACK] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_RBRACE] = ACTIONS(983), - [anon_sym_EQ_GT] = ACTIONS(983), - [anon_sym_COLON] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_STAR] = ACTIONS(981), - [anon_sym_QMARK] = ACTIONS(983), - [anon_sym_u8] = ACTIONS(981), - [anon_sym_i8] = ACTIONS(981), - [anon_sym_u16] = ACTIONS(981), - [anon_sym_i16] = ACTIONS(981), - [anon_sym_u32] = ACTIONS(981), - [anon_sym_i32] = ACTIONS(981), - [anon_sym_u64] = ACTIONS(981), - [anon_sym_i64] = ACTIONS(981), - [anon_sym_u128] = ACTIONS(981), - [anon_sym_i128] = ACTIONS(981), - [anon_sym_isize] = ACTIONS(981), - [anon_sym_usize] = ACTIONS(981), - [anon_sym_f32] = ACTIONS(981), - [anon_sym_f64] = ACTIONS(981), - [anon_sym_bool] = ACTIONS(981), - [anon_sym_str] = ACTIONS(981), - [anon_sym_char] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(981), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [anon_sym_LT_LT] = ACTIONS(981), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_PLUS_EQ] = ACTIONS(983), - [anon_sym_DASH_EQ] = ACTIONS(983), - [anon_sym_STAR_EQ] = ACTIONS(983), - [anon_sym_SLASH_EQ] = ACTIONS(983), - [anon_sym_PERCENT_EQ] = ACTIONS(983), - [anon_sym_CARET_EQ] = ACTIONS(983), - [anon_sym_AMP_EQ] = ACTIONS(983), - [anon_sym_PIPE_EQ] = ACTIONS(983), - [anon_sym_LT_LT_EQ] = ACTIONS(983), - [anon_sym_GT_GT_EQ] = ACTIONS(983), - [anon_sym_EQ] = ACTIONS(981), - [anon_sym_EQ_EQ] = ACTIONS(983), - [anon_sym_BANG_EQ] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(981), - [anon_sym_GT_EQ] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(983), - [anon_sym_AT] = ACTIONS(983), - [anon_sym__] = ACTIONS(981), - [anon_sym_DOT] = ACTIONS(981), - [anon_sym_DOT_DOT] = ACTIONS(981), - [anon_sym_DOT_DOT_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_COLON_COLON] = ACTIONS(983), - [anon_sym_DASH_GT] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(981), - [anon_sym_as] = ACTIONS(981), - [anon_sym_async] = ACTIONS(981), - [anon_sym_await] = ACTIONS(981), - [anon_sym_break] = ACTIONS(981), - [anon_sym_const] = ACTIONS(981), - [anon_sym_continue] = ACTIONS(981), - [anon_sym_default] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(981), - [anon_sym_for] = ACTIONS(981), - [anon_sym_gen] = ACTIONS(981), - [anon_sym_if] = ACTIONS(981), - [anon_sym_impl] = ACTIONS(981), - [anon_sym_let] = ACTIONS(981), - [anon_sym_loop] = ACTIONS(981), - [anon_sym_match] = ACTIONS(981), - [anon_sym_mod] = ACTIONS(981), - [anon_sym_pub] = ACTIONS(981), - [anon_sym_return] = ACTIONS(981), - [anon_sym_static] = ACTIONS(981), - [anon_sym_struct] = ACTIONS(981), - [anon_sym_trait] = ACTIONS(981), - [anon_sym_type] = ACTIONS(981), - [anon_sym_union] = ACTIONS(981), - [anon_sym_unsafe] = ACTIONS(981), - [anon_sym_use] = ACTIONS(981), - [anon_sym_where] = ACTIONS(981), - [anon_sym_while] = ACTIONS(981), - [sym_mutable_specifier] = ACTIONS(981), - [sym_integer_literal] = ACTIONS(983), - [aux_sym_string_literal_token1] = ACTIONS(983), - [sym_char_literal] = ACTIONS(983), - [anon_sym_true] = ACTIONS(981), - [anon_sym_false] = ACTIONS(981), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(981), - [sym_super] = ACTIONS(981), - [sym_crate] = ACTIONS(981), - [sym_metavariable] = ACTIONS(983), - [sym__raw_string_literal_start] = ACTIONS(983), - [sym_float_literal] = ACTIONS(983), - }, - [STATE(175)] = { - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [sym_identifier] = ACTIONS(985), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_LPAREN] = ACTIONS(987), - [anon_sym_RPAREN] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(987), - [anon_sym_RBRACK] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(987), - [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_EQ_GT] = ACTIONS(987), - [anon_sym_COLON] = ACTIONS(985), - [anon_sym_DOLLAR] = ACTIONS(985), - [anon_sym_PLUS] = ACTIONS(985), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_QMARK] = ACTIONS(987), - [anon_sym_u8] = ACTIONS(985), - [anon_sym_i8] = ACTIONS(985), - [anon_sym_u16] = ACTIONS(985), - [anon_sym_i16] = ACTIONS(985), - [anon_sym_u32] = ACTIONS(985), - [anon_sym_i32] = ACTIONS(985), - [anon_sym_u64] = ACTIONS(985), - [anon_sym_i64] = ACTIONS(985), - [anon_sym_u128] = ACTIONS(985), - [anon_sym_i128] = ACTIONS(985), - [anon_sym_isize] = ACTIONS(985), - [anon_sym_usize] = ACTIONS(985), - [anon_sym_f32] = ACTIONS(985), - [anon_sym_f64] = ACTIONS(985), - [anon_sym_bool] = ACTIONS(985), - [anon_sym_str] = ACTIONS(985), - [anon_sym_char] = ACTIONS(985), - [anon_sym_DASH] = ACTIONS(985), - [anon_sym_SLASH] = ACTIONS(985), - [anon_sym_PERCENT] = ACTIONS(985), - [anon_sym_CARET] = ACTIONS(985), - [anon_sym_BANG] = ACTIONS(985), - [anon_sym_AMP] = ACTIONS(985), - [anon_sym_PIPE] = ACTIONS(985), - [anon_sym_AMP_AMP] = ACTIONS(987), - [anon_sym_PIPE_PIPE] = ACTIONS(987), - [anon_sym_LT_LT] = ACTIONS(985), - [anon_sym_GT_GT] = ACTIONS(985), - [anon_sym_PLUS_EQ] = ACTIONS(987), - [anon_sym_DASH_EQ] = ACTIONS(987), - [anon_sym_STAR_EQ] = ACTIONS(987), - [anon_sym_SLASH_EQ] = ACTIONS(987), - [anon_sym_PERCENT_EQ] = ACTIONS(987), - [anon_sym_CARET_EQ] = ACTIONS(987), - [anon_sym_AMP_EQ] = ACTIONS(987), - [anon_sym_PIPE_EQ] = ACTIONS(987), - [anon_sym_LT_LT_EQ] = ACTIONS(987), - [anon_sym_GT_GT_EQ] = ACTIONS(987), - [anon_sym_EQ] = ACTIONS(985), - [anon_sym_EQ_EQ] = ACTIONS(987), - [anon_sym_BANG_EQ] = ACTIONS(987), - [anon_sym_GT] = ACTIONS(985), - [anon_sym_LT] = ACTIONS(985), - [anon_sym_GT_EQ] = ACTIONS(987), - [anon_sym_LT_EQ] = ACTIONS(987), - [anon_sym_AT] = ACTIONS(987), - [anon_sym__] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(987), - [anon_sym_DOT_DOT_EQ] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(987), - [anon_sym_COLON_COLON] = ACTIONS(987), - [anon_sym_DASH_GT] = ACTIONS(987), - [anon_sym_POUND] = ACTIONS(987), - [anon_sym_SQUOTE] = ACTIONS(985), - [anon_sym_as] = ACTIONS(985), - [anon_sym_async] = ACTIONS(985), - [anon_sym_await] = ACTIONS(985), - [anon_sym_break] = ACTIONS(985), - [anon_sym_const] = ACTIONS(985), - [anon_sym_continue] = ACTIONS(985), - [anon_sym_default] = ACTIONS(985), - [anon_sym_enum] = ACTIONS(985), - [anon_sym_fn] = ACTIONS(985), - [anon_sym_for] = ACTIONS(985), - [anon_sym_gen] = ACTIONS(985), - [anon_sym_if] = ACTIONS(985), - [anon_sym_impl] = ACTIONS(985), - [anon_sym_let] = ACTIONS(985), - [anon_sym_loop] = ACTIONS(985), - [anon_sym_match] = ACTIONS(985), - [anon_sym_mod] = ACTIONS(985), - [anon_sym_pub] = ACTIONS(985), - [anon_sym_return] = ACTIONS(985), - [anon_sym_static] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(985), - [anon_sym_trait] = ACTIONS(985), - [anon_sym_type] = ACTIONS(985), - [anon_sym_union] = ACTIONS(985), - [anon_sym_unsafe] = ACTIONS(985), - [anon_sym_use] = ACTIONS(985), - [anon_sym_where] = ACTIONS(985), - [anon_sym_while] = ACTIONS(985), - [sym_mutable_specifier] = ACTIONS(985), - [sym_integer_literal] = ACTIONS(987), - [aux_sym_string_literal_token1] = ACTIONS(987), - [sym_char_literal] = ACTIONS(987), - [anon_sym_true] = ACTIONS(985), - [anon_sym_false] = ACTIONS(985), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(985), - [sym_super] = ACTIONS(985), - [sym_crate] = ACTIONS(985), - [sym_metavariable] = ACTIONS(987), - [sym__raw_string_literal_start] = ACTIONS(987), - [sym_float_literal] = ACTIONS(987), - }, - [STATE(176)] = { + [STATE(170)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -36905,8 +36137,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -36918,16 +36150,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [aux_sym_enum_variant_list_repeat1] = STATE(208), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(973), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(989), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36988,9 +36220,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(177)] = { - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), + [STATE(171)] = { + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [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(975), + [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_metavariable] = ACTIONS(977), + [sym__raw_string_literal_start] = ACTIONS(977), + [sym_float_literal] = ACTIONS(977), + }, + [STATE(172)] = { + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [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(979), + [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_metavariable] = ACTIONS(981), + [sym__raw_string_literal_start] = ACTIONS(981), + [sym_float_literal] = ACTIONS(981), + }, + [STATE(173)] = { + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [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(174)] = { + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [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(175)] = { + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), [sym_identifier] = ACTIONS(991), [anon_sym_SEMI] = ACTIONS(993), [anon_sym_LPAREN] = ACTIONS(993), @@ -37104,17 +36800,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(993), [sym_float_literal] = ACTIONS(993), }, + [STATE(176)] = { + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [sym_identifier] = ACTIONS(893), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_RPAREN] = ACTIONS(895), + [anon_sym_LBRACK] = ACTIONS(895), + [anon_sym_RBRACK] = ACTIONS(895), + [anon_sym_LBRACE] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_EQ_GT] = ACTIONS(895), + [anon_sym_COLON] = ACTIONS(893), + [anon_sym_DOLLAR] = ACTIONS(893), + [anon_sym_PLUS] = ACTIONS(893), + [anon_sym_STAR] = ACTIONS(893), + [anon_sym_QMARK] = ACTIONS(895), + [anon_sym_u8] = ACTIONS(893), + [anon_sym_i8] = ACTIONS(893), + [anon_sym_u16] = ACTIONS(893), + [anon_sym_i16] = ACTIONS(893), + [anon_sym_u32] = ACTIONS(893), + [anon_sym_i32] = ACTIONS(893), + [anon_sym_u64] = ACTIONS(893), + [anon_sym_i64] = ACTIONS(893), + [anon_sym_u128] = ACTIONS(893), + [anon_sym_i128] = ACTIONS(893), + [anon_sym_isize] = ACTIONS(893), + [anon_sym_usize] = ACTIONS(893), + [anon_sym_f32] = ACTIONS(893), + [anon_sym_f64] = ACTIONS(893), + [anon_sym_bool] = ACTIONS(893), + [anon_sym_str] = ACTIONS(893), + [anon_sym_char] = ACTIONS(893), + [anon_sym_DASH] = ACTIONS(893), + [anon_sym_SLASH] = ACTIONS(893), + [anon_sym_PERCENT] = ACTIONS(893), + [anon_sym_CARET] = ACTIONS(893), + [anon_sym_BANG] = ACTIONS(893), + [anon_sym_AMP] = ACTIONS(893), + [anon_sym_PIPE] = ACTIONS(893), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT_LT] = ACTIONS(893), + [anon_sym_GT_GT] = ACTIONS(893), + [anon_sym_PLUS_EQ] = ACTIONS(895), + [anon_sym_DASH_EQ] = ACTIONS(895), + [anon_sym_STAR_EQ] = ACTIONS(895), + [anon_sym_SLASH_EQ] = ACTIONS(895), + [anon_sym_PERCENT_EQ] = ACTIONS(895), + [anon_sym_CARET_EQ] = ACTIONS(895), + [anon_sym_AMP_EQ] = ACTIONS(895), + [anon_sym_PIPE_EQ] = ACTIONS(895), + [anon_sym_LT_LT_EQ] = ACTIONS(895), + [anon_sym_GT_GT_EQ] = ACTIONS(895), + [anon_sym_EQ] = ACTIONS(893), + [anon_sym_EQ_EQ] = ACTIONS(895), + [anon_sym_BANG_EQ] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(893), + [anon_sym_LT] = ACTIONS(893), + [anon_sym_GT_EQ] = ACTIONS(895), + [anon_sym_LT_EQ] = ACTIONS(895), + [anon_sym_AT] = ACTIONS(895), + [anon_sym__] = ACTIONS(893), + [anon_sym_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT] = ACTIONS(893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(895), + [anon_sym_DOT_DOT_EQ] = ACTIONS(895), + [anon_sym_COMMA] = ACTIONS(895), + [anon_sym_COLON_COLON] = ACTIONS(895), + [anon_sym_DASH_GT] = ACTIONS(895), + [anon_sym_POUND] = ACTIONS(895), + [anon_sym_SQUOTE] = ACTIONS(893), + [anon_sym_as] = ACTIONS(893), + [anon_sym_async] = ACTIONS(893), + [anon_sym_await] = ACTIONS(893), + [anon_sym_break] = ACTIONS(893), + [anon_sym_const] = ACTIONS(893), + [anon_sym_continue] = ACTIONS(893), + [anon_sym_default] = ACTIONS(893), + [anon_sym_enum] = ACTIONS(893), + [anon_sym_fn] = ACTIONS(893), + [anon_sym_for] = ACTIONS(893), + [anon_sym_gen] = ACTIONS(893), + [anon_sym_if] = ACTIONS(893), + [anon_sym_impl] = ACTIONS(893), + [anon_sym_let] = ACTIONS(893), + [anon_sym_loop] = ACTIONS(893), + [anon_sym_match] = ACTIONS(893), + [anon_sym_mod] = ACTIONS(893), + [anon_sym_pub] = ACTIONS(893), + [anon_sym_return] = ACTIONS(893), + [anon_sym_static] = ACTIONS(893), + [anon_sym_struct] = ACTIONS(893), + [anon_sym_trait] = ACTIONS(893), + [anon_sym_type] = ACTIONS(893), + [anon_sym_union] = ACTIONS(893), + [anon_sym_unsafe] = ACTIONS(893), + [anon_sym_use] = ACTIONS(893), + [anon_sym_where] = ACTIONS(893), + [anon_sym_while] = ACTIONS(893), + [sym_mutable_specifier] = ACTIONS(893), + [sym_integer_literal] = ACTIONS(895), + [aux_sym_string_literal_token1] = ACTIONS(895), + [sym_char_literal] = ACTIONS(895), + [anon_sym_true] = ACTIONS(893), + [anon_sym_false] = ACTIONS(893), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(893), + [sym_super] = ACTIONS(893), + [sym_crate] = ACTIONS(893), + [sym_metavariable] = ACTIONS(895), + [sym__raw_string_literal_start] = ACTIONS(895), + [sym_float_literal] = ACTIONS(895), + }, + [STATE(177)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1890), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_let_condition] = STATE(3134), + [sym__let_chain] = STATE(3135), + [sym__condition] = STATE(3414), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(999), + [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(1001), + [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(178)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -37137,8 +37065,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -37150,16 +37078,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(178), [sym_block_comment] = STATE(178), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [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(995), + [anon_sym_RBRACK] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37223,238 +37151,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(179)] = { [sym_line_comment] = STATE(179), [sym_block_comment] = STATE(179), - [sym_identifier] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_EQ_GT] = ACTIONS(999), - [anon_sym_COLON] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(999), - [anon_sym_u8] = ACTIONS(997), - [anon_sym_i8] = ACTIONS(997), - [anon_sym_u16] = ACTIONS(997), - [anon_sym_i16] = ACTIONS(997), - [anon_sym_u32] = ACTIONS(997), - [anon_sym_i32] = ACTIONS(997), - [anon_sym_u64] = ACTIONS(997), - [anon_sym_i64] = ACTIONS(997), - [anon_sym_u128] = ACTIONS(997), - [anon_sym_i128] = ACTIONS(997), - [anon_sym_isize] = ACTIONS(997), - [anon_sym_usize] = ACTIONS(997), - [anon_sym_f32] = ACTIONS(997), - [anon_sym_f64] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(997), - [anon_sym_str] = ACTIONS(997), - [anon_sym_char] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_PERCENT] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_PIPE_PIPE] = ACTIONS(999), - [anon_sym_LT_LT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_AT] = ACTIONS(999), - [anon_sym__] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_COLON_COLON] = ACTIONS(999), - [anon_sym_DASH_GT] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_async] = ACTIONS(997), - [anon_sym_await] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_default] = ACTIONS(997), - [anon_sym_enum] = ACTIONS(997), - [anon_sym_fn] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_gen] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_impl] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_pub] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_static] = ACTIONS(997), - [anon_sym_struct] = ACTIONS(997), - [anon_sym_trait] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_union] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [sym_mutable_specifier] = ACTIONS(997), - [sym_integer_literal] = ACTIONS(999), - [aux_sym_string_literal_token1] = ACTIONS(999), - [sym_char_literal] = ACTIONS(999), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(997), - [sym_super] = ACTIONS(997), - [sym_crate] = ACTIONS(997), - [sym_metavariable] = ACTIONS(999), - [sym__raw_string_literal_start] = ACTIONS(999), - [sym_float_literal] = ACTIONS(999), - }, - [STATE(180)] = { - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), - [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(1001), - [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_metavariable] = ACTIONS(1003), - [sym__raw_string_literal_start] = ACTIONS(1003), - [sym_float_literal] = ACTIONS(1003), - }, - [STATE(181)] = { - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), [sym_identifier] = ACTIONS(1005), [anon_sym_SEMI] = ACTIONS(1007), [anon_sym_LPAREN] = ACTIONS(1007), @@ -37568,24 +37264,24 @@ 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(182)] = { - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [aux_sym__non_special_token_repeat1] = STATE(184), + [STATE(180)] = { + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [aux_sym__non_special_token_repeat1] = STATE(157), [sym_identifier] = ACTIONS(1009), - [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_SEMI] = ACTIONS(690), [anon_sym_LPAREN] = ACTIONS(1011), [anon_sym_RPAREN] = ACTIONS(1011), [anon_sym_LBRACK] = ACTIONS(1011), [anon_sym_RBRACK] = ACTIONS(1011), [anon_sym_LBRACE] = ACTIONS(1011), [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), + [anon_sym_EQ_GT] = ACTIONS(690), + [anon_sym_COLON] = ACTIONS(700), [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(700), + [anon_sym_QMARK] = ACTIONS(690), [anon_sym_u8] = ACTIONS(1009), [anon_sym_i8] = ACTIONS(1009), [anon_sym_u16] = ACTIONS(1009), @@ -37603,44 +37299,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1009), [anon_sym_str] = ACTIONS(1009), [anon_sym_char] = ACTIONS(1009), - [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_DASH] = ACTIONS(700), + [anon_sym_SLASH] = ACTIONS(700), + [anon_sym_PERCENT] = ACTIONS(700), + [anon_sym_CARET] = ACTIONS(700), + [anon_sym_BANG] = ACTIONS(700), + [anon_sym_AMP] = ACTIONS(700), + [anon_sym_PIPE] = ACTIONS(700), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [anon_sym_LT_LT] = ACTIONS(700), + [anon_sym_GT_GT] = ACTIONS(700), + [anon_sym_PLUS_EQ] = ACTIONS(690), + [anon_sym_DASH_EQ] = ACTIONS(690), + [anon_sym_STAR_EQ] = ACTIONS(690), + [anon_sym_SLASH_EQ] = ACTIONS(690), + [anon_sym_PERCENT_EQ] = ACTIONS(690), + [anon_sym_CARET_EQ] = ACTIONS(690), + [anon_sym_AMP_EQ] = ACTIONS(690), + [anon_sym_PIPE_EQ] = ACTIONS(690), + [anon_sym_LT_LT_EQ] = ACTIONS(690), + [anon_sym_GT_GT_EQ] = ACTIONS(690), + [anon_sym_EQ] = ACTIONS(700), + [anon_sym_EQ_EQ] = ACTIONS(690), + [anon_sym_BANG_EQ] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(700), + [anon_sym_LT] = ACTIONS(700), + [anon_sym_GT_EQ] = ACTIONS(690), + [anon_sym_LT_EQ] = ACTIONS(690), + [anon_sym_AT] = ACTIONS(690), + [anon_sym__] = ACTIONS(700), + [anon_sym_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT] = ACTIONS(700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(690), + [anon_sym_DOT_DOT_EQ] = ACTIONS(690), + [anon_sym_COMMA] = ACTIONS(690), + [anon_sym_COLON_COLON] = ACTIONS(690), + [anon_sym_DASH_GT] = ACTIONS(690), + [anon_sym_POUND] = ACTIONS(690), [anon_sym_SQUOTE] = ACTIONS(1009), [anon_sym_as] = ACTIONS(1009), [anon_sym_async] = ACTIONS(1009), @@ -37684,9 +37380,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1011), [sym_float_literal] = ACTIONS(1011), }, - [STATE(183)] = { - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), + [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), @@ -37800,133 +37496,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1015), [sym_float_literal] = ACTIONS(1015), }, - [STATE(184)] = { - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [aux_sym__non_special_token_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(867), - [anon_sym_SEMI] = ACTIONS(1017), - [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(1017), - [anon_sym_COLON] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(872), - [anon_sym_PLUS] = ACTIONS(1020), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_QMARK] = ACTIONS(1017), - [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(1020), - [anon_sym_SLASH] = ACTIONS(1020), - [anon_sym_PERCENT] = ACTIONS(1020), - [anon_sym_CARET] = ACTIONS(1020), - [anon_sym_BANG] = ACTIONS(1020), - [anon_sym_AMP] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_AMP_AMP] = ACTIONS(1017), - [anon_sym_PIPE_PIPE] = ACTIONS(1017), - [anon_sym_LT_LT] = ACTIONS(1020), - [anon_sym_GT_GT] = ACTIONS(1020), - [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(1020), - [anon_sym_EQ_EQ] = ACTIONS(1017), - [anon_sym_BANG_EQ] = ACTIONS(1017), - [anon_sym_GT] = ACTIONS(1020), - [anon_sym_LT] = ACTIONS(1020), - [anon_sym_GT_EQ] = ACTIONS(1017), - [anon_sym_LT_EQ] = ACTIONS(1017), - [anon_sym_AT] = ACTIONS(1017), - [anon_sym__] = ACTIONS(1020), - [anon_sym_DOT] = ACTIONS(1020), - [anon_sym_DOT_DOT] = ACTIONS(1020), - [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(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(182)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [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(1017), + [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(185)] = { + [STATE(183)] = { + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [sym_identifier] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(1021), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_RBRACK] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_EQ_GT] = ACTIONS(1021), + [anon_sym_COLON] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_QMARK] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(1019), + [anon_sym_i8] = ACTIONS(1019), + [anon_sym_u16] = ACTIONS(1019), + [anon_sym_i16] = ACTIONS(1019), + [anon_sym_u32] = ACTIONS(1019), + [anon_sym_i32] = ACTIONS(1019), + [anon_sym_u64] = ACTIONS(1019), + [anon_sym_i64] = ACTIONS(1019), + [anon_sym_u128] = ACTIONS(1019), + [anon_sym_i128] = ACTIONS(1019), + [anon_sym_isize] = ACTIONS(1019), + [anon_sym_usize] = ACTIONS(1019), + [anon_sym_f32] = ACTIONS(1019), + [anon_sym_f64] = ACTIONS(1019), + [anon_sym_bool] = ACTIONS(1019), + [anon_sym_str] = ACTIONS(1019), + [anon_sym_char] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PERCENT] = ACTIONS(1019), + [anon_sym_CARET] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_AMP_AMP] = ACTIONS(1021), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_LT_LT] = ACTIONS(1019), + [anon_sym_GT_GT] = ACTIONS(1019), + [anon_sym_PLUS_EQ] = ACTIONS(1021), + [anon_sym_DASH_EQ] = ACTIONS(1021), + [anon_sym_STAR_EQ] = ACTIONS(1021), + [anon_sym_SLASH_EQ] = ACTIONS(1021), + [anon_sym_PERCENT_EQ] = ACTIONS(1021), + [anon_sym_CARET_EQ] = ACTIONS(1021), + [anon_sym_AMP_EQ] = ACTIONS(1021), + [anon_sym_PIPE_EQ] = ACTIONS(1021), + [anon_sym_LT_LT_EQ] = ACTIONS(1021), + [anon_sym_GT_GT_EQ] = ACTIONS(1021), + [anon_sym_EQ] = ACTIONS(1019), + [anon_sym_EQ_EQ] = ACTIONS(1021), + [anon_sym_BANG_EQ] = ACTIONS(1021), + [anon_sym_GT] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(1019), + [anon_sym_GT_EQ] = ACTIONS(1021), + [anon_sym_LT_EQ] = ACTIONS(1021), + [anon_sym_AT] = ACTIONS(1021), + [anon_sym__] = ACTIONS(1019), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_COLON_COLON] = ACTIONS(1021), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(1021), + [anon_sym_SQUOTE] = ACTIONS(1019), + [anon_sym_as] = ACTIONS(1019), + [anon_sym_async] = ACTIONS(1019), + [anon_sym_await] = ACTIONS(1019), + [anon_sym_break] = ACTIONS(1019), + [anon_sym_const] = ACTIONS(1019), + [anon_sym_continue] = ACTIONS(1019), + [anon_sym_default] = ACTIONS(1019), + [anon_sym_enum] = ACTIONS(1019), + [anon_sym_fn] = ACTIONS(1019), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_gen] = ACTIONS(1019), + [anon_sym_if] = ACTIONS(1019), + [anon_sym_impl] = ACTIONS(1019), + [anon_sym_let] = ACTIONS(1019), + [anon_sym_loop] = ACTIONS(1019), + [anon_sym_match] = ACTIONS(1019), + [anon_sym_mod] = ACTIONS(1019), + [anon_sym_pub] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(1019), + [anon_sym_static] = ACTIONS(1019), + [anon_sym_struct] = ACTIONS(1019), + [anon_sym_trait] = ACTIONS(1019), + [anon_sym_type] = ACTIONS(1019), + [anon_sym_union] = ACTIONS(1019), + [anon_sym_unsafe] = ACTIONS(1019), + [anon_sym_use] = ACTIONS(1019), + [anon_sym_where] = ACTIONS(1019), + [anon_sym_while] = ACTIONS(1019), + [sym_mutable_specifier] = ACTIONS(1019), + [sym_integer_literal] = ACTIONS(1021), + [aux_sym_string_literal_token1] = ACTIONS(1021), + [sym_char_literal] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1019), + [sym_super] = ACTIONS(1019), + [sym_crate] = ACTIONS(1019), + [sym_metavariable] = ACTIONS(1021), + [sym__raw_string_literal_start] = ACTIONS(1021), + [sym_float_literal] = ACTIONS(1021), + }, + [STATE(184)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -37949,8 +37761,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -37962,12 +37774,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [aux_sym_enum_variant_list_repeat1] = STATE(204), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [aux_sym_enum_variant_list_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(1023), @@ -38032,132 +37844,17 @@ 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_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [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(187)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(185)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -38174,17 +37871,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), - [sym_let_condition] = STATE(2878), - [sym__let_chain] = STATE(2880), - [sym__condition] = STATE(2604), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -38196,59 +37890,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [aux_sym_enum_variant_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1025), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [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(929), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(931), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38257,23 +37953,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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(186)] = { + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [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(187)] = { + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [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(1027), + [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(188)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -38290,17 +38218,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), - [sym_let_condition] = STATE(2878), - [sym__let_chain] = STATE(2880), - [sym__condition] = STATE(2685), + [sym_let_condition] = STATE(3002), + [sym__let_chain] = STATE(3019), + [sym__condition] = STATE(2635), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -38312,16 +38240,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(188), [sym_block_comment] = STATE(188), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -38339,12 +38267,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38355,7 +38283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(931), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38381,131 +38309,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(189)] = { - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), - [sym_identifier] = ACTIONS(1025), - [anon_sym_SEMI] = ACTIONS(1027), - [anon_sym_LPAREN] = ACTIONS(1027), - [anon_sym_RPAREN] = ACTIONS(1027), - [anon_sym_LBRACK] = ACTIONS(1027), - [anon_sym_RBRACK] = ACTIONS(1027), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_RBRACE] = ACTIONS(1027), - [anon_sym_EQ_GT] = ACTIONS(1027), - [anon_sym_COLON] = ACTIONS(1025), - [anon_sym_DOLLAR] = ACTIONS(1025), - [anon_sym_PLUS] = ACTIONS(1025), - [anon_sym_STAR] = ACTIONS(1025), - [anon_sym_QMARK] = ACTIONS(1027), - [anon_sym_u8] = ACTIONS(1025), - [anon_sym_i8] = ACTIONS(1025), - [anon_sym_u16] = ACTIONS(1025), - [anon_sym_i16] = ACTIONS(1025), - [anon_sym_u32] = ACTIONS(1025), - [anon_sym_i32] = ACTIONS(1025), - [anon_sym_u64] = ACTIONS(1025), - [anon_sym_i64] = ACTIONS(1025), - [anon_sym_u128] = ACTIONS(1025), - [anon_sym_i128] = ACTIONS(1025), - [anon_sym_isize] = ACTIONS(1025), - [anon_sym_usize] = ACTIONS(1025), - [anon_sym_f32] = ACTIONS(1025), - [anon_sym_f64] = ACTIONS(1025), - [anon_sym_bool] = ACTIONS(1025), - [anon_sym_str] = ACTIONS(1025), - [anon_sym_char] = ACTIONS(1025), - [anon_sym_DASH] = ACTIONS(1025), - [anon_sym_SLASH] = ACTIONS(1025), - [anon_sym_PERCENT] = ACTIONS(1025), - [anon_sym_CARET] = ACTIONS(1025), - [anon_sym_BANG] = ACTIONS(1025), - [anon_sym_AMP] = ACTIONS(1025), - [anon_sym_PIPE] = ACTIONS(1025), - [anon_sym_AMP_AMP] = ACTIONS(1027), - [anon_sym_PIPE_PIPE] = ACTIONS(1027), - [anon_sym_LT_LT] = ACTIONS(1025), - [anon_sym_GT_GT] = ACTIONS(1025), - [anon_sym_PLUS_EQ] = ACTIONS(1027), - [anon_sym_DASH_EQ] = ACTIONS(1027), - [anon_sym_STAR_EQ] = ACTIONS(1027), - [anon_sym_SLASH_EQ] = ACTIONS(1027), - [anon_sym_PERCENT_EQ] = ACTIONS(1027), - [anon_sym_CARET_EQ] = ACTIONS(1027), - [anon_sym_AMP_EQ] = ACTIONS(1027), - [anon_sym_PIPE_EQ] = ACTIONS(1027), - [anon_sym_LT_LT_EQ] = ACTIONS(1027), - [anon_sym_GT_GT_EQ] = ACTIONS(1027), - [anon_sym_EQ] = ACTIONS(1025), - [anon_sym_EQ_EQ] = ACTIONS(1027), - [anon_sym_BANG_EQ] = ACTIONS(1027), - [anon_sym_GT] = ACTIONS(1025), - [anon_sym_LT] = ACTIONS(1025), - [anon_sym_GT_EQ] = ACTIONS(1027), - [anon_sym_LT_EQ] = ACTIONS(1027), - [anon_sym_AT] = ACTIONS(1027), - [anon_sym__] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1027), - [anon_sym_COMMA] = ACTIONS(1027), - [anon_sym_COLON_COLON] = ACTIONS(1027), - [anon_sym_DASH_GT] = ACTIONS(1027), - [anon_sym_POUND] = ACTIONS(1027), - [anon_sym_SQUOTE] = ACTIONS(1025), - [anon_sym_as] = ACTIONS(1025), - [anon_sym_async] = ACTIONS(1025), - [anon_sym_await] = ACTIONS(1025), - [anon_sym_break] = ACTIONS(1025), - [anon_sym_const] = ACTIONS(1025), - [anon_sym_continue] = ACTIONS(1025), - [anon_sym_default] = ACTIONS(1025), - [anon_sym_enum] = ACTIONS(1025), - [anon_sym_fn] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(1025), - [anon_sym_gen] = ACTIONS(1025), - [anon_sym_if] = ACTIONS(1025), - [anon_sym_impl] = ACTIONS(1025), - [anon_sym_let] = ACTIONS(1025), - [anon_sym_loop] = ACTIONS(1025), - [anon_sym_match] = ACTIONS(1025), - [anon_sym_mod] = ACTIONS(1025), - [anon_sym_pub] = ACTIONS(1025), - [anon_sym_return] = ACTIONS(1025), - [anon_sym_static] = ACTIONS(1025), - [anon_sym_struct] = ACTIONS(1025), - [anon_sym_trait] = ACTIONS(1025), - [anon_sym_type] = ACTIONS(1025), - [anon_sym_union] = ACTIONS(1025), - [anon_sym_unsafe] = ACTIONS(1025), - [anon_sym_use] = ACTIONS(1025), - [anon_sym_where] = ACTIONS(1025), - [anon_sym_while] = ACTIONS(1025), - [sym_mutable_specifier] = ACTIONS(1025), - [sym_integer_literal] = ACTIONS(1027), - [aux_sym_string_literal_token1] = ACTIONS(1027), - [sym_char_literal] = ACTIONS(1027), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1025), - [sym_super] = ACTIONS(1025), - [sym_crate] = ACTIONS(1025), - [sym_metavariable] = ACTIONS(1027), - [sym__raw_string_literal_start] = ACTIONS(1027), - [sym_float_literal] = ACTIONS(1027), - }, - [STATE(190)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -38522,17 +38334,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), - [sym_let_condition] = STATE(2878), - [sym__let_chain] = STATE(2880), - [sym__condition] = STATE(2762), + [sym_let_condition] = STATE(3002), + [sym__let_chain] = STATE(3019), + [sym__condition] = STATE(2659), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -38544,16 +38356,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -38571,12 +38383,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38587,7 +38399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(931), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38612,16 +38424,132 @@ 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(190)] = { + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [sym_identifier] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_RPAREN] = ACTIONS(1031), + [anon_sym_LBRACK] = ACTIONS(1031), + [anon_sym_RBRACK] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1031), + [anon_sym_COLON] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_QMARK] = ACTIONS(1031), + [anon_sym_u8] = ACTIONS(1029), + [anon_sym_i8] = ACTIONS(1029), + [anon_sym_u16] = ACTIONS(1029), + [anon_sym_i16] = ACTIONS(1029), + [anon_sym_u32] = ACTIONS(1029), + [anon_sym_i32] = ACTIONS(1029), + [anon_sym_u64] = ACTIONS(1029), + [anon_sym_i64] = ACTIONS(1029), + [anon_sym_u128] = ACTIONS(1029), + [anon_sym_i128] = ACTIONS(1029), + [anon_sym_isize] = ACTIONS(1029), + [anon_sym_usize] = ACTIONS(1029), + [anon_sym_f32] = ACTIONS(1029), + [anon_sym_f64] = ACTIONS(1029), + [anon_sym_bool] = ACTIONS(1029), + [anon_sym_str] = ACTIONS(1029), + [anon_sym_char] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_PERCENT] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1029), + [anon_sym_PLUS_EQ] = ACTIONS(1031), + [anon_sym_DASH_EQ] = ACTIONS(1031), + [anon_sym_STAR_EQ] = ACTIONS(1031), + [anon_sym_SLASH_EQ] = ACTIONS(1031), + [anon_sym_PERCENT_EQ] = ACTIONS(1031), + [anon_sym_CARET_EQ] = ACTIONS(1031), + [anon_sym_AMP_EQ] = ACTIONS(1031), + [anon_sym_PIPE_EQ] = ACTIONS(1031), + [anon_sym_LT_LT_EQ] = ACTIONS(1031), + [anon_sym_GT_GT_EQ] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1029), + [anon_sym_EQ_EQ] = ACTIONS(1031), + [anon_sym_BANG_EQ] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT_EQ] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1031), + [anon_sym_AT] = ACTIONS(1031), + [anon_sym__] = ACTIONS(1029), + [anon_sym_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1031), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_COLON_COLON] = ACTIONS(1031), + [anon_sym_DASH_GT] = ACTIONS(1031), + [anon_sym_POUND] = ACTIONS(1031), + [anon_sym_SQUOTE] = ACTIONS(1029), + [anon_sym_as] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_default] = ACTIONS(1029), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_fn] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_gen] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_impl] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1029), + [anon_sym_loop] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1029), + [anon_sym_mod] = ACTIONS(1029), + [anon_sym_pub] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_static] = ACTIONS(1029), + [anon_sym_struct] = ACTIONS(1029), + [anon_sym_trait] = ACTIONS(1029), + [anon_sym_type] = ACTIONS(1029), + [anon_sym_union] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), + [anon_sym_where] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [sym_mutable_specifier] = ACTIONS(1029), + [sym_integer_literal] = ACTIONS(1031), + [aux_sym_string_literal_token1] = ACTIONS(1031), + [sym_char_literal] = ACTIONS(1031), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1029), + [sym_super] = ACTIONS(1029), + [sym_crate] = ACTIONS(1029), + [sym_metavariable] = ACTIONS(1031), + [sym__raw_string_literal_start] = ACTIONS(1031), + [sym_float_literal] = ACTIONS(1031), + }, [STATE(191)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -38638,17 +38566,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), - [sym_let_condition] = STATE(2878), - [sym__let_chain] = STATE(2880), - [sym__condition] = STATE(2535), + [sym_let_condition] = STATE(3002), + [sym__let_chain] = STATE(3019), + [sym__condition] = STATE(2528), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -38660,16 +38588,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(191), [sym_block_comment] = STATE(191), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -38687,12 +38615,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38703,7 +38631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(931), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38729,15 +38657,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(192)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -38754,17 +38682,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), - [sym_let_condition] = STATE(2878), - [sym__let_chain] = STATE(2880), - [sym__condition] = STATE(2538), + [sym_let_condition] = STATE(3002), + [sym__let_chain] = STATE(3019), + [sym__condition] = STATE(2585), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -38776,16 +38704,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(192), [sym_block_comment] = STATE(192), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -38803,12 +38731,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38819,7 +38747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(931), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38845,15 +38773,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(193)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -38870,17 +38798,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), - [sym_let_condition] = STATE(2878), - [sym__let_chain] = STATE(2880), - [sym__condition] = STATE(2568), + [sym_let_condition] = STATE(3002), + [sym__let_chain] = STATE(3019), + [sym__condition] = STATE(2586), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -38892,16 +38820,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -38919,12 +38847,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -38935,7 +38863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(931), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -38961,15 +38889,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(194)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -38986,17 +38914,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), - [sym_let_condition] = STATE(2878), - [sym__let_chain] = STATE(2880), - [sym__condition] = STATE(2584), + [sym_let_condition] = STATE(3002), + [sym__let_chain] = STATE(3019), + [sym__condition] = STATE(2610), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -39008,16 +38936,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -39035,12 +38963,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -39051,7 +38979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(931), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -39077,15 +39005,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(195)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -39102,17 +39030,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), - [sym_let_condition] = STATE(2878), - [sym__let_chain] = STATE(2880), - [sym__condition] = STATE(2585), + [sym_let_condition] = STATE(3002), + [sym__let_chain] = STATE(3019), + [sym__condition] = STATE(2622), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -39124,16 +39052,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(195), [sym_block_comment] = STATE(195), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -39151,12 +39079,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -39167,7 +39095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(931), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -39193,15 +39121,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(196)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -39218,17 +39146,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), - [sym_let_condition] = STATE(2878), - [sym__let_chain] = STATE(2880), - [sym__condition] = STATE(2605), + [sym_let_condition] = STATE(3002), + [sym__let_chain] = STATE(3019), + [sym__condition] = STATE(2624), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -39240,16 +39168,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -39267,12 +39195,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -39283,7 +39211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(931), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -39309,239 +39237,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(197)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1899), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_let_condition] = STATE(3282), - [sym__let_chain] = STATE(3286), - [sym__condition] = STATE(3496), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), [sym_line_comment] = STATE(197), [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), + [sym_identifier] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1035), + [anon_sym_LPAREN] = ACTIONS(1035), + [anon_sym_RPAREN] = ACTIONS(1035), + [anon_sym_LBRACK] = ACTIONS(1035), + [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_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(1035), - [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), + [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), }, [STATE(198)] = { [sym_line_comment] = STATE(198), [sym_block_comment] = STATE(198), - [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(199)] = { - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), [sym_identifier] = ACTIONS(1005), [anon_sym_SEMI] = ACTIONS(1007), [anon_sym_LPAREN] = ACTIONS(1007), @@ -39654,6 +39467,121 @@ 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(199)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [aux_sym_enum_variant_list_repeat1] = STATE(201), + [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), + }, [STATE(200)] = { [sym_line_comment] = STATE(200), [sym_block_comment] = STATE(200), @@ -39771,15 +39699,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(201)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1626), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1647), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -39802,8 +39730,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -39815,9 +39743,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(201), [sym_block_comment] = STATE(201), [aux_sym_enum_variant_list_repeat1] = STATE(1014), @@ -39885,468 +39813,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(202)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [aux_sym_enum_variant_list_repeat1] = STATE(204), - [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(203)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1897), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), - [aux_sym_enum_variant_list_repeat1] = STATE(1014), - [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), - }, - [STATE(204)] = { - [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1605), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), - [aux_sym_enum_variant_list_repeat1] = STATE(1014), - [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), - }, - [STATE(205)] = { - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(935), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_RBRACK] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_EQ_GT] = ACTIONS(937), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(935), - [anon_sym_STAR] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(937), - [anon_sym_u8] = ACTIONS(935), - [anon_sym_i8] = ACTIONS(935), - [anon_sym_u16] = ACTIONS(935), - [anon_sym_i16] = ACTIONS(935), - [anon_sym_u32] = ACTIONS(935), - [anon_sym_i32] = ACTIONS(935), - [anon_sym_u64] = ACTIONS(935), - [anon_sym_i64] = ACTIONS(935), - [anon_sym_u128] = ACTIONS(935), - [anon_sym_i128] = ACTIONS(935), - [anon_sym_isize] = ACTIONS(935), - [anon_sym_usize] = ACTIONS(935), - [anon_sym_f32] = ACTIONS(935), - [anon_sym_f64] = ACTIONS(935), - [anon_sym_bool] = ACTIONS(935), - [anon_sym_str] = ACTIONS(935), - [anon_sym_char] = ACTIONS(935), - [anon_sym_DASH] = ACTIONS(935), - [anon_sym_SLASH] = ACTIONS(935), - [anon_sym_PERCENT] = ACTIONS(935), - [anon_sym_CARET] = ACTIONS(935), - [anon_sym_BANG] = ACTIONS(935), - [anon_sym_AMP] = ACTIONS(935), - [anon_sym_PIPE] = ACTIONS(935), - [anon_sym_AMP_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(937), - [anon_sym_LT_LT] = ACTIONS(935), - [anon_sym_GT_GT] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_PERCENT_EQ] = ACTIONS(937), - [anon_sym_CARET_EQ] = ACTIONS(937), - [anon_sym_AMP_EQ] = ACTIONS(937), - [anon_sym_PIPE_EQ] = ACTIONS(937), - [anon_sym_LT_LT_EQ] = ACTIONS(937), - [anon_sym_GT_GT_EQ] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_EQ_EQ] = ACTIONS(937), - [anon_sym_BANG_EQ] = ACTIONS(937), - [anon_sym_GT] = ACTIONS(935), - [anon_sym_LT] = ACTIONS(935), - [anon_sym_GT_EQ] = ACTIONS(937), - [anon_sym_LT_EQ] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(937), - [anon_sym__] = ACTIONS(935), - [anon_sym_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_COLON_COLON] = ACTIONS(937), - [anon_sym_DASH_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(937), - [anon_sym_SQUOTE] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_async] = ACTIONS(935), - [anon_sym_await] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_default] = ACTIONS(935), - [anon_sym_enum] = ACTIONS(935), - [anon_sym_fn] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_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), + [sym_identifier] = ACTIONS(965), + [anon_sym_SEMI] = ACTIONS(967), + [anon_sym_LPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_LBRACK] = ACTIONS(967), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(967), + [anon_sym_RBRACE] = ACTIONS(967), + [anon_sym_EQ_GT] = ACTIONS(967), + [anon_sym_COLON] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(965), + [anon_sym_STAR] = ACTIONS(965), + [anon_sym_QMARK] = ACTIONS(967), + [anon_sym_u8] = ACTIONS(965), + [anon_sym_i8] = ACTIONS(965), + [anon_sym_u16] = ACTIONS(965), + [anon_sym_i16] = ACTIONS(965), + [anon_sym_u32] = ACTIONS(965), + [anon_sym_i32] = ACTIONS(965), + [anon_sym_u64] = ACTIONS(965), + [anon_sym_i64] = ACTIONS(965), + [anon_sym_u128] = ACTIONS(965), + [anon_sym_i128] = ACTIONS(965), + [anon_sym_isize] = ACTIONS(965), + [anon_sym_usize] = ACTIONS(965), + [anon_sym_f32] = ACTIONS(965), + [anon_sym_f64] = ACTIONS(965), + [anon_sym_bool] = ACTIONS(965), + [anon_sym_str] = ACTIONS(965), + [anon_sym_char] = ACTIONS(965), + [anon_sym_DASH] = ACTIONS(965), + [anon_sym_SLASH] = ACTIONS(965), + [anon_sym_PERCENT] = ACTIONS(965), + [anon_sym_CARET] = ACTIONS(965), + [anon_sym_BANG] = ACTIONS(965), + [anon_sym_AMP] = ACTIONS(965), + [anon_sym_PIPE] = ACTIONS(965), + [anon_sym_AMP_AMP] = ACTIONS(967), + [anon_sym_PIPE_PIPE] = ACTIONS(967), + [anon_sym_LT_LT] = ACTIONS(965), + [anon_sym_GT_GT] = ACTIONS(965), + [anon_sym_PLUS_EQ] = ACTIONS(967), + [anon_sym_DASH_EQ] = ACTIONS(967), + [anon_sym_STAR_EQ] = ACTIONS(967), + [anon_sym_SLASH_EQ] = ACTIONS(967), + [anon_sym_PERCENT_EQ] = ACTIONS(967), + [anon_sym_CARET_EQ] = ACTIONS(967), + [anon_sym_AMP_EQ] = ACTIONS(967), + [anon_sym_PIPE_EQ] = ACTIONS(967), + [anon_sym_LT_LT_EQ] = ACTIONS(967), + [anon_sym_GT_GT_EQ] = ACTIONS(967), + [anon_sym_EQ] = ACTIONS(965), + [anon_sym_EQ_EQ] = ACTIONS(967), + [anon_sym_BANG_EQ] = ACTIONS(967), + [anon_sym_GT] = ACTIONS(965), + [anon_sym_LT] = ACTIONS(965), + [anon_sym_GT_EQ] = ACTIONS(967), + [anon_sym_LT_EQ] = ACTIONS(967), + [anon_sym_AT] = ACTIONS(967), + [anon_sym__] = ACTIONS(965), + [anon_sym_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_EQ] = ACTIONS(967), + [anon_sym_COMMA] = ACTIONS(967), + [anon_sym_COLON_COLON] = ACTIONS(967), + [anon_sym_DASH_GT] = ACTIONS(967), + [anon_sym_POUND] = ACTIONS(967), + [anon_sym_SQUOTE] = ACTIONS(965), + [anon_sym_as] = ACTIONS(965), + [anon_sym_async] = ACTIONS(965), + [anon_sym_await] = ACTIONS(965), + [anon_sym_break] = ACTIONS(965), + [anon_sym_const] = ACTIONS(965), + [anon_sym_continue] = ACTIONS(965), + [anon_sym_default] = ACTIONS(965), + [anon_sym_enum] = ACTIONS(965), + [anon_sym_fn] = ACTIONS(965), + [anon_sym_for] = ACTIONS(965), + [anon_sym_gen] = ACTIONS(965), + [anon_sym_if] = ACTIONS(965), + [anon_sym_impl] = ACTIONS(965), + [anon_sym_let] = ACTIONS(965), + [anon_sym_loop] = ACTIONS(965), + [anon_sym_match] = ACTIONS(965), + [anon_sym_mod] = ACTIONS(965), + [anon_sym_pub] = ACTIONS(965), + [anon_sym_return] = ACTIONS(965), + [anon_sym_static] = ACTIONS(965), + [anon_sym_struct] = ACTIONS(965), + [anon_sym_trait] = ACTIONS(965), + [anon_sym_type] = ACTIONS(965), + [anon_sym_union] = ACTIONS(965), + [anon_sym_unsafe] = ACTIONS(965), + [anon_sym_use] = ACTIONS(965), + [anon_sym_where] = ACTIONS(965), + [anon_sym_while] = ACTIONS(965), + [sym_mutable_specifier] = ACTIONS(965), + [sym_integer_literal] = ACTIONS(967), + [aux_sym_string_literal_token1] = ACTIONS(967), + [sym_char_literal] = ACTIONS(967), + [anon_sym_true] = ACTIONS(965), + [anon_sym_false] = ACTIONS(965), [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__raw_string_literal_start] = ACTIONS(937), - [sym_float_literal] = ACTIONS(937), + [sym_self] = ACTIONS(965), + [sym_super] = ACTIONS(965), + [sym_crate] = ACTIONS(965), + [sym__raw_string_literal_start] = ACTIONS(967), + [sym_float_literal] = ACTIONS(967), }, - [STATE(206)] = { - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), + [STATE(204)] = { + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), [sym_identifier] = ACTIONS(1009), [anon_sym_SEMI] = ACTIONS(1011), [anon_sym_LPAREN] = ACTIONS(1011), @@ -40459,6 +40157,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1011), [sym_float_literal] = ACTIONS(1011), }, + [STATE(205)] = { + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [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(206)] = { + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [sym_identifier] = ACTIONS(921), + [anon_sym_SEMI] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_LBRACK] = ACTIONS(923), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_EQ_GT] = ACTIONS(923), + [anon_sym_COLON] = ACTIONS(921), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(921), + [anon_sym_QMARK] = ACTIONS(923), + [anon_sym_u8] = ACTIONS(921), + [anon_sym_i8] = ACTIONS(921), + [anon_sym_u16] = ACTIONS(921), + [anon_sym_i16] = ACTIONS(921), + [anon_sym_u32] = ACTIONS(921), + [anon_sym_i32] = ACTIONS(921), + [anon_sym_u64] = ACTIONS(921), + [anon_sym_i64] = ACTIONS(921), + [anon_sym_u128] = ACTIONS(921), + [anon_sym_i128] = ACTIONS(921), + [anon_sym_isize] = ACTIONS(921), + [anon_sym_usize] = ACTIONS(921), + [anon_sym_f32] = ACTIONS(921), + [anon_sym_f64] = ACTIONS(921), + [anon_sym_bool] = ACTIONS(921), + [anon_sym_str] = ACTIONS(921), + [anon_sym_char] = ACTIONS(921), + [anon_sym_DASH] = ACTIONS(921), + [anon_sym_SLASH] = ACTIONS(921), + [anon_sym_PERCENT] = ACTIONS(921), + [anon_sym_CARET] = ACTIONS(921), + [anon_sym_BANG] = ACTIONS(921), + [anon_sym_AMP] = ACTIONS(921), + [anon_sym_PIPE] = ACTIONS(921), + [anon_sym_AMP_AMP] = ACTIONS(923), + [anon_sym_PIPE_PIPE] = ACTIONS(923), + [anon_sym_LT_LT] = ACTIONS(921), + [anon_sym_GT_GT] = ACTIONS(921), + [anon_sym_PLUS_EQ] = ACTIONS(923), + [anon_sym_DASH_EQ] = ACTIONS(923), + [anon_sym_STAR_EQ] = ACTIONS(923), + [anon_sym_SLASH_EQ] = ACTIONS(923), + [anon_sym_PERCENT_EQ] = ACTIONS(923), + [anon_sym_CARET_EQ] = ACTIONS(923), + [anon_sym_AMP_EQ] = ACTIONS(923), + [anon_sym_PIPE_EQ] = ACTIONS(923), + [anon_sym_LT_LT_EQ] = ACTIONS(923), + [anon_sym_GT_GT_EQ] = ACTIONS(923), + [anon_sym_EQ] = ACTIONS(921), + [anon_sym_EQ_EQ] = ACTIONS(923), + [anon_sym_BANG_EQ] = ACTIONS(923), + [anon_sym_GT] = ACTIONS(921), + [anon_sym_LT] = ACTIONS(921), + [anon_sym_GT_EQ] = ACTIONS(923), + [anon_sym_LT_EQ] = ACTIONS(923), + [anon_sym_AT] = ACTIONS(923), + [anon_sym__] = ACTIONS(921), + [anon_sym_DOT] = ACTIONS(921), + [anon_sym_DOT_DOT] = ACTIONS(921), + [anon_sym_DOT_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(923), + [anon_sym_COMMA] = ACTIONS(923), + [anon_sym_COLON_COLON] = ACTIONS(923), + [anon_sym_DASH_GT] = ACTIONS(923), + [anon_sym_POUND] = ACTIONS(923), + [anon_sym_SQUOTE] = ACTIONS(921), + [anon_sym_as] = ACTIONS(921), + [anon_sym_async] = ACTIONS(921), + [anon_sym_await] = ACTIONS(921), + [anon_sym_break] = ACTIONS(921), + [anon_sym_const] = ACTIONS(921), + [anon_sym_continue] = ACTIONS(921), + [anon_sym_default] = ACTIONS(921), + [anon_sym_enum] = ACTIONS(921), + [anon_sym_fn] = ACTIONS(921), + [anon_sym_for] = ACTIONS(921), + [anon_sym_gen] = ACTIONS(921), + [anon_sym_if] = ACTIONS(921), + [anon_sym_impl] = ACTIONS(921), + [anon_sym_let] = ACTIONS(921), + [anon_sym_loop] = ACTIONS(921), + [anon_sym_match] = ACTIONS(921), + [anon_sym_mod] = ACTIONS(921), + [anon_sym_pub] = ACTIONS(921), + [anon_sym_return] = ACTIONS(921), + [anon_sym_static] = ACTIONS(921), + [anon_sym_struct] = ACTIONS(921), + [anon_sym_trait] = ACTIONS(921), + [anon_sym_type] = ACTIONS(921), + [anon_sym_union] = ACTIONS(921), + [anon_sym_unsafe] = ACTIONS(921), + [anon_sym_use] = ACTIONS(921), + [anon_sym_where] = ACTIONS(921), + [anon_sym_while] = ACTIONS(921), + [sym_mutable_specifier] = ACTIONS(921), + [sym_integer_literal] = ACTIONS(923), + [aux_sym_string_literal_token1] = ACTIONS(923), + [sym_char_literal] = ACTIONS(923), + [anon_sym_true] = ACTIONS(921), + [anon_sym_false] = ACTIONS(921), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(921), + [sym_super] = ACTIONS(921), + [sym_crate] = ACTIONS(921), + [sym__raw_string_literal_start] = ACTIONS(923), + [sym_float_literal] = ACTIONS(923), + }, [STATE(207)] = { [sym_line_comment] = STATE(207), [sym_block_comment] = STATE(207), @@ -40575,8 +40503,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1039), }, [STATE(208)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1889), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(208), [sym_block_comment] = STATE(208), + [aux_sym_enum_variant_list_repeat1] = STATE(1014), + [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), + }, + [STATE(209)] = { + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), [sym_identifier] = ACTIONS(1041), [anon_sym_SEMI] = ACTIONS(1043), [anon_sym_LPAREN] = ACTIONS(1043), @@ -40689,362 +40732,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1043), [sym_float_literal] = ACTIONS(1043), }, - [STATE(209)] = { - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [sym_identifier] = ACTIONS(981), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_LPAREN] = ACTIONS(983), - [anon_sym_RPAREN] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(983), - [anon_sym_RBRACK] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(983), - [anon_sym_RBRACE] = ACTIONS(983), - [anon_sym_EQ_GT] = ACTIONS(983), - [anon_sym_COLON] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(981), - [anon_sym_STAR] = ACTIONS(981), - [anon_sym_QMARK] = ACTIONS(983), - [anon_sym_u8] = ACTIONS(981), - [anon_sym_i8] = ACTIONS(981), - [anon_sym_u16] = ACTIONS(981), - [anon_sym_i16] = ACTIONS(981), - [anon_sym_u32] = ACTIONS(981), - [anon_sym_i32] = ACTIONS(981), - [anon_sym_u64] = ACTIONS(981), - [anon_sym_i64] = ACTIONS(981), - [anon_sym_u128] = ACTIONS(981), - [anon_sym_i128] = ACTIONS(981), - [anon_sym_isize] = ACTIONS(981), - [anon_sym_usize] = ACTIONS(981), - [anon_sym_f32] = ACTIONS(981), - [anon_sym_f64] = ACTIONS(981), - [anon_sym_bool] = ACTIONS(981), - [anon_sym_str] = ACTIONS(981), - [anon_sym_char] = ACTIONS(981), - [anon_sym_DASH] = ACTIONS(981), - [anon_sym_SLASH] = ACTIONS(981), - [anon_sym_PERCENT] = ACTIONS(981), - [anon_sym_CARET] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(981), - [anon_sym_AMP] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(981), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [anon_sym_LT_LT] = ACTIONS(981), - [anon_sym_GT_GT] = ACTIONS(981), - [anon_sym_PLUS_EQ] = ACTIONS(983), - [anon_sym_DASH_EQ] = ACTIONS(983), - [anon_sym_STAR_EQ] = ACTIONS(983), - [anon_sym_SLASH_EQ] = ACTIONS(983), - [anon_sym_PERCENT_EQ] = ACTIONS(983), - [anon_sym_CARET_EQ] = ACTIONS(983), - [anon_sym_AMP_EQ] = ACTIONS(983), - [anon_sym_PIPE_EQ] = ACTIONS(983), - [anon_sym_LT_LT_EQ] = ACTIONS(983), - [anon_sym_GT_GT_EQ] = ACTIONS(983), - [anon_sym_EQ] = ACTIONS(981), - [anon_sym_EQ_EQ] = ACTIONS(983), - [anon_sym_BANG_EQ] = ACTIONS(983), - [anon_sym_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(981), - [anon_sym_GT_EQ] = ACTIONS(983), - [anon_sym_LT_EQ] = ACTIONS(983), - [anon_sym_AT] = ACTIONS(983), - [anon_sym__] = ACTIONS(981), - [anon_sym_DOT] = ACTIONS(981), - [anon_sym_DOT_DOT] = ACTIONS(981), - [anon_sym_DOT_DOT_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(983), - [anon_sym_COLON_COLON] = ACTIONS(983), - [anon_sym_DASH_GT] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(983), - [anon_sym_SQUOTE] = ACTIONS(981), - [anon_sym_as] = ACTIONS(981), - [anon_sym_async] = ACTIONS(981), - [anon_sym_await] = ACTIONS(981), - [anon_sym_break] = ACTIONS(981), - [anon_sym_const] = ACTIONS(981), - [anon_sym_continue] = ACTIONS(981), - [anon_sym_default] = ACTIONS(981), - [anon_sym_enum] = ACTIONS(981), - [anon_sym_fn] = ACTIONS(981), - [anon_sym_for] = ACTIONS(981), - [anon_sym_gen] = ACTIONS(981), - [anon_sym_if] = ACTIONS(981), - [anon_sym_impl] = ACTIONS(981), - [anon_sym_let] = ACTIONS(981), - [anon_sym_loop] = ACTIONS(981), - [anon_sym_match] = ACTIONS(981), - [anon_sym_mod] = ACTIONS(981), - [anon_sym_pub] = ACTIONS(981), - [anon_sym_return] = ACTIONS(981), - [anon_sym_static] = ACTIONS(981), - [anon_sym_struct] = ACTIONS(981), - [anon_sym_trait] = ACTIONS(981), - [anon_sym_type] = ACTIONS(981), - [anon_sym_union] = ACTIONS(981), - [anon_sym_unsafe] = ACTIONS(981), - [anon_sym_use] = ACTIONS(981), - [anon_sym_where] = ACTIONS(981), - [anon_sym_while] = ACTIONS(981), - [sym_mutable_specifier] = ACTIONS(981), - [sym_integer_literal] = ACTIONS(983), - [aux_sym_string_literal_token1] = ACTIONS(983), - [sym_char_literal] = ACTIONS(983), - [anon_sym_true] = ACTIONS(981), - [anon_sym_false] = ACTIONS(981), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(981), - [sym_super] = ACTIONS(981), - [sym_crate] = ACTIONS(981), - [sym__raw_string_literal_start] = ACTIONS(983), - [sym_float_literal] = ACTIONS(983), - }, [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), - [anon_sym_RPAREN] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_EQ_GT] = ACTIONS(1047), - [anon_sym_COLON] = ACTIONS(1045), - [anon_sym_DOLLAR] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), - [anon_sym_u64] = ACTIONS(1045), - [anon_sym_i64] = ACTIONS(1045), - [anon_sym_u128] = ACTIONS(1045), - [anon_sym_i128] = ACTIONS(1045), - [anon_sym_isize] = ACTIONS(1045), - [anon_sym_usize] = ACTIONS(1045), - [anon_sym_f32] = ACTIONS(1045), - [anon_sym_f64] = ACTIONS(1045), - [anon_sym_bool] = ACTIONS(1045), - [anon_sym_str] = ACTIONS(1045), - [anon_sym_char] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_PERCENT] = ACTIONS(1045), - [anon_sym_CARET] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_PIPE] = ACTIONS(1045), - [anon_sym_AMP_AMP] = ACTIONS(1047), - [anon_sym_PIPE_PIPE] = ACTIONS(1047), - [anon_sym_LT_LT] = ACTIONS(1045), - [anon_sym_GT_GT] = ACTIONS(1045), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_EQ] = ACTIONS(1045), - [anon_sym_EQ_EQ] = ACTIONS(1047), - [anon_sym_BANG_EQ] = ACTIONS(1047), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1047), - [anon_sym_LT_EQ] = ACTIONS(1047), - [anon_sym_AT] = ACTIONS(1047), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1047), - [anon_sym_DASH_GT] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_as] = ACTIONS(1045), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_await] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_const] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [anon_sym_fn] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_gen] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_impl] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(1045), - [anon_sym_loop] = ACTIONS(1045), - [anon_sym_match] = ACTIONS(1045), - [anon_sym_mod] = ACTIONS(1045), - [anon_sym_pub] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1045), - [anon_sym_trait] = ACTIONS(1045), - [anon_sym_type] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1045), - [anon_sym_unsafe] = ACTIONS(1045), - [anon_sym_use] = ACTIONS(1045), - [anon_sym_where] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [sym_mutable_specifier] = ACTIONS(1045), - [sym_integer_literal] = ACTIONS(1047), - [aux_sym_string_literal_token1] = ACTIONS(1047), - [sym_char_literal] = ACTIONS(1047), - [anon_sym_true] = ACTIONS(1045), - [anon_sym_false] = ACTIONS(1045), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), - [sym_crate] = ACTIONS(1045), - [sym__raw_string_literal_start] = ACTIONS(1047), - [sym_float_literal] = ACTIONS(1047), - }, - [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(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1902), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -41067,8 +40765,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -41080,11 +40778,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), [aux_sym_enum_variant_list_repeat1] = STATE(1014), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), @@ -41149,17 +40847,17 @@ 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)] = { + [STATE(211)] = { [sym_attribute_item] = STATE(1015), - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1604), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1644), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -41182,8 +40880,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -41195,11 +40893,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), [aux_sym_enum_variant_list_repeat1] = STATE(1014), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), @@ -41264,245 +40962,132 @@ 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_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), - [sym_identifier] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_EQ_GT] = ACTIONS(999), - [anon_sym_COLON] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(999), - [anon_sym_u8] = ACTIONS(997), - [anon_sym_i8] = ACTIONS(997), - [anon_sym_u16] = ACTIONS(997), - [anon_sym_i16] = ACTIONS(997), - [anon_sym_u32] = ACTIONS(997), - [anon_sym_i32] = ACTIONS(997), - [anon_sym_u64] = ACTIONS(997), - [anon_sym_i64] = ACTIONS(997), - [anon_sym_u128] = ACTIONS(997), - [anon_sym_i128] = ACTIONS(997), - [anon_sym_isize] = ACTIONS(997), - [anon_sym_usize] = ACTIONS(997), - [anon_sym_f32] = ACTIONS(997), - [anon_sym_f64] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(997), - [anon_sym_str] = ACTIONS(997), - [anon_sym_char] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_PERCENT] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_PIPE_PIPE] = ACTIONS(999), - [anon_sym_LT_LT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_AT] = ACTIONS(999), - [anon_sym__] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_COLON_COLON] = ACTIONS(999), - [anon_sym_DASH_GT] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_async] = ACTIONS(997), - [anon_sym_await] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_default] = ACTIONS(997), - [anon_sym_enum] = ACTIONS(997), - [anon_sym_fn] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_gen] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_impl] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_pub] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_static] = ACTIONS(997), - [anon_sym_struct] = ACTIONS(997), - [anon_sym_trait] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_union] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [sym_mutable_specifier] = ACTIONS(997), - [sym_integer_literal] = ACTIONS(999), - [aux_sym_string_literal_token1] = ACTIONS(999), - [sym_char_literal] = ACTIONS(999), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(997), - [sym_super] = ACTIONS(997), - [sym_crate] = ACTIONS(997), - [sym__raw_string_literal_start] = ACTIONS(999), - [sym_float_literal] = ACTIONS(999), - }, - [STATE(215)] = { - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1716), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_let_condition] = STATE(2530), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(931), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [STATE(212)] = { + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_EQ_GT] = ACTIONS(1047), + [anon_sym_COLON] = ACTIONS(1045), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), + [anon_sym_u64] = ACTIONS(1045), + [anon_sym_i64] = ACTIONS(1045), + [anon_sym_u128] = ACTIONS(1045), + [anon_sym_i128] = ACTIONS(1045), + [anon_sym_isize] = ACTIONS(1045), + [anon_sym_usize] = ACTIONS(1045), + [anon_sym_f32] = ACTIONS(1045), + [anon_sym_f64] = ACTIONS(1045), + [anon_sym_bool] = ACTIONS(1045), + [anon_sym_str] = ACTIONS(1045), + [anon_sym_char] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_STAR_EQ] = ACTIONS(1047), + [anon_sym_SLASH_EQ] = ACTIONS(1047), + [anon_sym_PERCENT_EQ] = ACTIONS(1047), + [anon_sym_CARET_EQ] = ACTIONS(1047), + [anon_sym_AMP_EQ] = ACTIONS(1047), + [anon_sym_PIPE_EQ] = ACTIONS(1047), + [anon_sym_LT_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_GT_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_AT] = ACTIONS(1047), + [anon_sym__] = ACTIONS(1045), + [anon_sym_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(1047), + [anon_sym_DASH_GT] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_await] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_default] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_fn] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_gen] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_impl] = ACTIONS(1045), + [anon_sym_let] = ACTIONS(1045), + [anon_sym_loop] = ACTIONS(1045), + [anon_sym_match] = ACTIONS(1045), + [anon_sym_mod] = ACTIONS(1045), + [anon_sym_pub] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1045), + [anon_sym_type] = ACTIONS(1045), + [anon_sym_union] = ACTIONS(1045), + [anon_sym_unsafe] = ACTIONS(1045), + [anon_sym_use] = ACTIONS(1045), + [anon_sym_where] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [sym_mutable_specifier] = ACTIONS(1045), + [sym_integer_literal] = ACTIONS(1047), + [aux_sym_string_literal_token1] = ACTIONS(1047), + [sym_char_literal] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(1045), + [sym_super] = ACTIONS(1045), + [sym_crate] = ACTIONS(1045), + [sym__raw_string_literal_start] = ACTIONS(1047), + [sym_float_literal] = ACTIONS(1047), }, - [STATE(216)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(213)] = { + [sym_attribute_item] = STATE(1015), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1808), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1612), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -41525,8 +41110,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -41536,13 +41121,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1452), + [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [aux_sym_enum_variant_list_repeat1] = STATE(1014), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41565,15 +41151,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(1053), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1055), + [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41607,130 +41192,131 @@ 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(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1667), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [aux_sym_tuple_expression_repeat1] = STATE(241), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1057), - [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), + [STATE(214)] = { + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [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(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(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym__raw_string_literal_start] = ACTIONS(1051), + [sym_float_literal] = ACTIONS(1051), }, - [STATE(218)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(215)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1631), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1630), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -41747,14 +41333,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2503), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -41764,18 +41351,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1452), + [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -41793,15 +41380,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), @@ -41811,6 +41396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(911), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -41835,130 +41421,16 @@ 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(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1529), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1466), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), - [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), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [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), - [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(220)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(216)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1520), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1691), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -41981,8 +41453,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -41992,13 +41464,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1488), + [sym_block] = STATE(1474), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -42026,10 +41498,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(1067), - [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym__] = ACTIONS(1055), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1069), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42063,130 +41535,16 @@ 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(221)] = { - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1466), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1065), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(222)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(217)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1855), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -42209,8 +41567,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -42220,18 +41578,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1488), + [sym_block] = STATE(1384), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(1059), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -42249,33 +41607,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1067), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1065), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1069), + [anon_sym_DASH_GT] = ACTIONS(1067), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [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_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42291,16 +41649,16 @@ 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(223)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(218)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1522), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -42323,8 +41681,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -42334,15 +41692,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1452), + [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [aux_sym_tuple_expression_repeat1] = STATE(219), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1069), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42363,15 +41723,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(1053), - [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42405,16 +41763,16 @@ 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(224)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(219)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1703), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -42437,8 +41795,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -42448,15 +41806,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1466), + [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [aux_sym_tuple_expression_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(1071), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_RPAREN] = ACTIONS(1077), + [anon_sym_LBRACK] = ACTIONS(1079), + [anon_sym_LBRACE] = ACTIONS(1082), + [anon_sym_STAR] = ACTIONS(1085), + [anon_sym_u8] = ACTIONS(1088), + [anon_sym_i8] = ACTIONS(1088), + [anon_sym_u16] = ACTIONS(1088), + [anon_sym_i16] = ACTIONS(1088), + [anon_sym_u32] = ACTIONS(1088), + [anon_sym_i32] = ACTIONS(1088), + [anon_sym_u64] = ACTIONS(1088), + [anon_sym_i64] = ACTIONS(1088), + [anon_sym_u128] = ACTIONS(1088), + [anon_sym_i128] = ACTIONS(1088), + [anon_sym_isize] = ACTIONS(1088), + [anon_sym_usize] = ACTIONS(1088), + [anon_sym_f32] = ACTIONS(1088), + [anon_sym_f64] = ACTIONS(1088), + [anon_sym_bool] = ACTIONS(1088), + [anon_sym_str] = ACTIONS(1088), + [anon_sym_char] = ACTIONS(1088), + [anon_sym_DASH] = ACTIONS(1085), + [anon_sym_BANG] = ACTIONS(1085), + [anon_sym_AMP] = ACTIONS(1091), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1097), + [anon_sym_DOT_DOT] = ACTIONS(1100), + [anon_sym_COLON_COLON] = ACTIONS(1103), + [anon_sym_SQUOTE] = ACTIONS(1106), + [anon_sym_async] = ACTIONS(1109), + [anon_sym_break] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1115), + [anon_sym_continue] = ACTIONS(1118), + [anon_sym_default] = ACTIONS(1121), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_gen] = ACTIONS(1127), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_loop] = ACTIONS(1133), + [anon_sym_match] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_static] = ACTIONS(1142), + [anon_sym_union] = ACTIONS(1121), + [anon_sym_unsafe] = ACTIONS(1145), + [anon_sym_while] = ACTIONS(1148), + [anon_sym_yield] = ACTIONS(1151), + [anon_sym_move] = ACTIONS(1154), + [anon_sym_try] = ACTIONS(1157), + [sym_integer_literal] = ACTIONS(1160), + [aux_sym_string_literal_token1] = ACTIONS(1163), + [sym_char_literal] = ACTIONS(1160), + [anon_sym_true] = ACTIONS(1166), + [anon_sym_false] = ACTIONS(1166), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1169), + [sym_super] = ACTIONS(1172), + [sym_crate] = ACTIONS(1172), + [sym_metavariable] = ACTIONS(1175), + [sym__raw_string_literal_start] = ACTIONS(1178), + [sym_float_literal] = ACTIONS(1160), + }, + [STATE(220)] = { + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1852), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [aux_sym_tuple_expression_repeat1] = STATE(222), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1181), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42477,15 +41951,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(1061), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42519,244 +41991,16 @@ 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(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1672), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_let_condition] = STATE(2530), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [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(1035), - [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(226)] = { - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1421), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1079), - [anon_sym_raw] = ACTIONS(1081), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(227)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(221)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1500), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -42779,8 +42023,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -42790,17 +42034,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), + [sym_block] = STATE(1444), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [aux_sym_tuple_expression_repeat1] = STATE(244), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1083), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42821,13 +42063,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(1183), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1187), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42861,16 +42105,16 @@ 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(228)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(222)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1667), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1656), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -42893,8 +42137,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -42906,15 +42150,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [aux_sym_tuple_expression_repeat1] = STATE(244), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [aux_sym_tuple_expression_repeat1] = STATE(219), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_RPAREN] = ACTIONS(1189), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42975,403 +42219,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(229)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1752), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1833), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1087), - [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(230)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1761), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1750), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1089), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1091), - [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(231)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_let_condition] = STATE(2530), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1033), - [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(1035), - [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(232)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1775), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1791), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), + [STATE(223)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1712), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1765), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(995), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43390,14 +42292,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(1029), - [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1093), - [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym__] = ACTIONS(1191), + [anon_sym_DOT_DOT] = ACTIONS(1193), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1095), + [anon_sym_DASH_GT] = ACTIONS(1195), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -43431,16 +42333,16 @@ 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(233)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(224)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1777), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -43463,8 +42365,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -43476,15 +42378,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [aux_sym_tuple_expression_repeat1] = STATE(244), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [aux_sym_tuple_expression_repeat1] = STATE(245), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1097), + [anon_sym_RPAREN] = ACTIONS(1197), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43545,16 +42447,16 @@ 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_bracketed_type] = STATE(3426), + [STATE(225)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1421), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1409), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -43577,8 +42479,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -43590,60 +42492,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [sym_identifier] = ACTIONS(339), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [sym_identifier] = ACTIONS(467), [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(905), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(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(477), [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(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1099), - [anon_sym_raw] = ACTIONS(1101), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [sym_mutable_specifier] = ACTIONS(1199), + [anon_sym_raw] = ACTIONS(1201), + [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), @@ -43652,23 +42554,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(235)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(226)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1777), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1666), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -43691,8 +42593,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -43702,17 +42604,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), + [sym_block] = STATE(1444), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [aux_sym_tuple_expression_repeat1] = STATE(227), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1097), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43733,13 +42633,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(1183), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1187), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -43773,16 +42675,16 @@ 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(236)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(227)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1590), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -43799,15 +42701,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), - [sym_let_condition] = STATE(2530), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -43817,18 +42718,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), + [sym_block] = STATE(1384), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -43846,13 +42747,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DASH_GT] = ACTIONS(1067), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), @@ -43862,7 +42765,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(357), [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(931), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(511), @@ -43887,16 +42789,16 @@ 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(237)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(228)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1633), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1606), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -43919,8 +42821,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -43930,18 +42832,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1466), + [sym_block] = STATE(1444), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -43960,14 +42862,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1061), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1065), + [anon_sym_DASH_GT] = ACTIONS(1187), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(505), @@ -44001,61 +42903,176 @@ 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(238)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1689), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), + [STATE(229)] = { + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1673), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1384), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [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), + [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(1067), + [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(230)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_let_condition] = STATE(2503), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(995), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -44073,12 +43090,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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT] = ACTIONS(1193), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -44089,6 +43106,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(1001), [anon_sym_loop] = ACTIONS(433), [anon_sym_match] = ACTIONS(435), [anon_sym_return] = ACTIONS(437), @@ -44096,8 +43114,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(1103), - [anon_sym_raw] = ACTIONS(1105), [anon_sym_yield] = ACTIONS(445), [anon_sym_move] = ACTIONS(447), [anon_sym_try] = ACTIONS(449), @@ -44115,16 +43131,244 @@ 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(239)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(231)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1868), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_let_condition] = STATE(2503), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(999), + [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(1001), + [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(232)] = { + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1444), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1183), + [anon_sym_DOT_DOT] = ACTIONS(1065), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DASH_GT] = ACTIONS(1187), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(233)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1688), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1409), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -44147,8 +43391,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -44158,13 +43402,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1488), + [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -44187,15 +43431,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(1067), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1069), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -44212,6 +43454,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(1203), + [anon_sym_raw] = ACTIONS(1205), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -44229,16 +43473,244 @@ 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(240)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(234)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1720), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [sym_mutable_specifier] = ACTIONS(1207), + [anon_sym_raw] = ACTIONS(1209), + [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(235)] = { + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1615), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1474), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1055), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DASH_GT] = ACTIONS(1057), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(236)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1421), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1514), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -44261,8 +43733,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -44272,62 +43744,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), + [sym_block] = STATE(1384), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [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_DOT_DOT] = ACTIONS(1075), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym__] = ACTIONS(1063), + [anon_sym_DOT_DOT] = ACTIONS(1185), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1067), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1107), - [anon_sym_raw] = ACTIONS(1109), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -44336,23 +43808,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(241)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(237)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1858), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -44375,8 +43847,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -44388,15 +43860,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [aux_sym_tuple_expression_repeat1] = STATE(244), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [aux_sym_tuple_expression_repeat1] = STATE(219), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44457,16 +43929,16 @@ 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(242)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(238)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1788), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -44489,8 +43961,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -44502,15 +43974,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), - [aux_sym_tuple_expression_repeat1] = STATE(233), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [aux_sym_tuple_expression_repeat1] = STATE(218), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1113), + [anon_sym_RPAREN] = ACTIONS(1211), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44571,16 +44043,130 @@ 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(243)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(239)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1709), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1655), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [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(995), + [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(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1213), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1215), + [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(240)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1766), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1409), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -44603,8 +44189,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -44614,18 +44200,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1488), + [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1059), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -44643,15 +44229,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1067), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1065), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1069), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(475), @@ -44668,6 +44252,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1217), + [anon_sym_raw] = ACTIONS(1219), [anon_sym_yield] = ACTIONS(485), [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), @@ -44685,16 +44271,16 @@ 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(244)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(241)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -44711,14 +44297,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), [sym_if_expression] = STATE(1435), + [sym_let_condition] = STATE(2503), [sym_match_expression] = STATE(1435), [sym_while_expression] = STATE(1435), [sym_loop_expression] = STATE(1435), [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -44730,85 +44317,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), - [aux_sym_tuple_expression_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1115), - [anon_sym_LPAREN] = ACTIONS(1118), - [anon_sym_RPAREN] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1126), - [anon_sym_STAR] = ACTIONS(1129), - [anon_sym_u8] = ACTIONS(1132), - [anon_sym_i8] = ACTIONS(1132), - [anon_sym_u16] = ACTIONS(1132), - [anon_sym_i16] = ACTIONS(1132), - [anon_sym_u32] = ACTIONS(1132), - [anon_sym_i32] = ACTIONS(1132), - [anon_sym_u64] = ACTIONS(1132), - [anon_sym_i64] = ACTIONS(1132), - [anon_sym_u128] = ACTIONS(1132), - [anon_sym_i128] = ACTIONS(1132), - [anon_sym_isize] = ACTIONS(1132), - [anon_sym_usize] = ACTIONS(1132), - [anon_sym_f32] = ACTIONS(1132), - [anon_sym_f64] = ACTIONS(1132), - [anon_sym_bool] = ACTIONS(1132), - [anon_sym_str] = ACTIONS(1132), - [anon_sym_char] = ACTIONS(1132), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_AMP] = ACTIONS(1135), - [anon_sym_PIPE] = ACTIONS(1138), - [anon_sym_LT] = ACTIONS(1141), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(1147), - [anon_sym_SQUOTE] = ACTIONS(1150), - [anon_sym_async] = ACTIONS(1153), - [anon_sym_break] = ACTIONS(1156), - [anon_sym_const] = ACTIONS(1159), - [anon_sym_continue] = ACTIONS(1162), - [anon_sym_default] = ACTIONS(1165), - [anon_sym_for] = ACTIONS(1168), - [anon_sym_gen] = ACTIONS(1171), - [anon_sym_if] = ACTIONS(1174), - [anon_sym_loop] = ACTIONS(1177), - [anon_sym_match] = ACTIONS(1180), - [anon_sym_return] = ACTIONS(1183), - [anon_sym_static] = ACTIONS(1186), - [anon_sym_union] = ACTIONS(1165), - [anon_sym_unsafe] = ACTIONS(1189), - [anon_sym_while] = ACTIONS(1192), - [anon_sym_yield] = ACTIONS(1195), - [anon_sym_move] = ACTIONS(1198), - [anon_sym_try] = ACTIONS(1201), - [sym_integer_literal] = ACTIONS(1204), - [aux_sym_string_literal_token1] = ACTIONS(1207), - [sym_char_literal] = ACTIONS(1204), - [anon_sym_true] = ACTIONS(1210), - [anon_sym_false] = ACTIONS(1210), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1213), - [sym_super] = ACTIONS(1216), - [sym_crate] = ACTIONS(1216), - [sym_metavariable] = ACTIONS(1219), - [sym__raw_string_literal_start] = ACTIONS(1222), - [sym_float_literal] = ACTIONS(1204), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(911), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [STATE(245)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(242)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1784), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -44831,8 +44417,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -44842,18 +44428,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1452), + [sym_block] = STATE(1474), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(245), - [sym_block_comment] = STATE(245), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1059), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -44872,14 +44458,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1053), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym__] = ACTIONS(1055), + [anon_sym_DOT_DOT] = ACTIONS(1065), [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1055), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(475), @@ -44913,16 +44499,16 @@ 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(246)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(243)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1708), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1508), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -44945,8 +44531,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -44956,17 +44542,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_async_block] = STATE(1435), [sym_gen_block] = STATE(1435), [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), + [sym_block] = STATE(1474), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(246), - [sym_block_comment] = STATE(246), - [aux_sym_tuple_expression_repeat1] = STATE(228), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1225), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44987,13 +44571,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(1055), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -45027,16 +44613,16 @@ 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(247)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(244)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1517), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -45059,8 +44645,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -45072,13 +44658,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [aux_sym_tuple_expression_repeat1] = STATE(237), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1221), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -45104,7 +44692,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(1063), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -45139,16 +44727,16 @@ 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(248)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(245)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1852), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -45171,8 +44759,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -45184,13 +44772,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(248), - [sym_block_comment] = STATE(248), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), + [aux_sym_tuple_expression_repeat1] = STATE(219), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1181), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -45251,16 +44841,354 @@ 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(246)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1739), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1223), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1225), + [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(247)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [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(248)] = { + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1581), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, [STATE(249)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -45283,8 +45211,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -45296,58 +45224,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(249), [sym_block_comment] = STATE(249), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(467), [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(1059), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [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(1065), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [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(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -45356,23 +45284,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(250)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1427), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -45395,8 +45323,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -45408,58 +45336,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(250), [sym_block_comment] = STATE(250), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(467), [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(1059), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [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(1065), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [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(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -45468,23 +45396,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(251)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1713), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -45507,8 +45435,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -45520,16 +45448,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(251), [sym_block_comment] = STATE(251), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(1059), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -45547,31 +45475,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(1065), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [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_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -45588,15 +45516,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(252)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1714), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -45619,8 +45547,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -45632,58 +45560,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(252), [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(467), [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(1059), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [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(1065), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [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(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -45692,23 +45620,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(253)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1697), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1715), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -45731,8 +45659,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -45744,58 +45672,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(253), [sym_block_comment] = STATE(253), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(467), [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(1059), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [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(1065), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [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(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -45804,23 +45732,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(254)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1819), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1719), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -45843,8 +45771,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -45856,58 +45784,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(254), [sym_block_comment] = STATE(254), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(467), [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(1059), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [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(1065), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [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(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -45916,23 +45844,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(255)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1721), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -45955,8 +45883,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -45968,58 +45896,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(467), [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(1059), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [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(1065), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [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(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [STATE(256)] = { + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1724), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1059), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1065), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(475), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(479), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -46028,23 +46068,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(256)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(257)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1409), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1726), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -46067,8 +46107,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -46080,58 +46120,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [sym_identifier] = ACTIONS(339), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [sym_identifier] = ACTIONS(467), [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(1059), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1065), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [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(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -46140,23 +46180,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(257)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(258)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1731), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -46179,8 +46219,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -46192,58 +46232,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(339), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [sym_identifier] = ACTIONS(467), [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(1059), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [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(1065), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [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(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -46252,23 +46292,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(258)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(259)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1642), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -46291,8 +46331,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -46304,58 +46344,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), - [sym_identifier] = ACTIONS(339), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [sym_identifier] = ACTIONS(467), [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(905), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [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(909), + [anon_sym_COLON_COLON] = ACTIONS(473), [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(477), [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(477), [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), @@ -46364,23 +46404,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(259)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(260)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1773), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1445), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -46403,8 +46443,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -46416,58 +46456,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [sym_identifier] = ACTIONS(339), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [sym_identifier] = ACTIONS(467), [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(1059), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [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(1065), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [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(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -46476,23 +46516,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(260)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(261)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1865), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -46508,35 +46548,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(487), - [sym_match_expression] = STATE(487), - [sym_while_expression] = STATE(487), - [sym_loop_expression] = STATE(487), - [sym_for_expression] = STATE(487), - [sym_const_block] = STATE(487), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3626), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(487), - [sym_async_block] = STATE(487), - [sym_gen_block] = STATE(487), - [sym_try_block] = STATE(487), - [sym_block] = STATE(487), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46563,24 +46603,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(1229), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1231), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_gen] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_loop] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1241), + [anon_sym_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(1243), - [anon_sym_while] = ACTIONS(1245), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1247), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -46595,16 +46635,16 @@ 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(261)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(262)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1878), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1573), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -46627,8 +46667,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -46640,58 +46680,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), - [sym_identifier] = ACTIONS(339), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [sym_identifier] = ACTIONS(467), [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(905), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [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(909), + [anon_sym_COLON_COLON] = ACTIONS(473), [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(477), [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(477), [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), @@ -46700,23 +46740,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(262)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(263)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1703), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -46739,8 +46779,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -46752,11 +46792,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46812,135 +46852,1255 @@ 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__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [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(264)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [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(265)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1785), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [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(266)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1676), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [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(267)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [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(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1678), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [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(269)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [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(270)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1680), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [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(271)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1681), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [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(272)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [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(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1683), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [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(263)] = { - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1700), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), - [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), + [STATE(274)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1684), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), [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(1193), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [STATE(264)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(275)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1563), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1732), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -46963,8 +48123,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -46976,16 +48136,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(1059), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -47003,31 +48163,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(1227), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [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_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -47043,16 +48203,128 @@ 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(3426), + [STATE(276)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1857), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [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(277)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1814), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -47075,8 +48347,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -47088,11 +48360,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47155,16 +48427,16 @@ 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(3426), + [STATE(278)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1729), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -47180,35 +48452,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), + [sym_if_expression] = STATE(477), + [sym_match_expression] = STATE(477), + [sym_while_expression] = STATE(477), + [sym_loop_expression] = STATE(477), + [sym_for_expression] = STATE(477), + [sym_const_block] = STATE(477), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), + [sym_closure_parameters] = STATE(221), [sym_label] = STATE(3585), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), + [sym_unsafe_block] = STATE(477), + [sym_async_block] = STATE(477), + [sym_gen_block] = STATE(477), + [sym_try_block] = STATE(477), + [sym_block] = STATE(477), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1229), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -47235,24 +48507,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(1231), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1233), [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(1235), + [anon_sym_gen] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_loop] = ACTIONS(1241), + [anon_sym_match] = ACTIONS(1243), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_unsafe] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1247), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1249), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -47267,16 +48539,16 @@ 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(3426), + [STATE(279)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -47299,8 +48571,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -47312,11 +48584,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47379,128 +48651,16 @@ 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(268)] = { - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1669), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(480), - [sym_match_expression] = STATE(480), - [sym_while_expression] = STATE(480), - [sym_loop_expression] = STATE(480), - [sym_for_expression] = STATE(480), - [sym_const_block] = STATE(480), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3626), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(480), - [sym_async_block] = STATE(480), - [sym_gen_block] = STATE(480), - [sym_try_block] = STATE(480), - [sym_block] = STATE(480), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_gen] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_loop] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1241), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1247), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(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(269)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(280)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1904), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -47523,8 +48683,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -47536,11 +48696,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47603,16 +48763,16 @@ 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(270)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(281)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1751), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -47635,8 +48795,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -47648,11 +48808,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47715,16 +48875,16 @@ 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(271)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(282)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1642), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -47747,8 +48907,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -47760,58 +48920,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), - [sym_identifier] = ACTIONS(339), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [sym_identifier] = ACTIONS(467), [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(905), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [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(1053), + [anon_sym_COLON_COLON] = ACTIONS(473), [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(477), [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(477), [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), @@ -47820,23 +48980,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(272)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(283)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1885), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1575), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -47852,79 +49012,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(487), - [sym_match_expression] = STATE(487), - [sym_while_expression] = STATE(487), - [sym_loop_expression] = STATE(487), - [sym_for_expression] = STATE(487), - [sym_const_block] = STATE(487), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3626), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(487), - [sym_async_block] = STATE(487), - [sym_gen_block] = STATE(487), - [sym_try_block] = STATE(487), - [sym_block] = STATE(487), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(339), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), + [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [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(909), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_gen] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_loop] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1241), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1247), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -47932,23 +49092,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(273)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(284)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1732), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -47971,8 +49131,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -47984,58 +49144,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(339), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [sym_identifier] = ACTIONS(467), [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(1059), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [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(1065), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [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(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -48044,135 +49204,247 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(274)] = { - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1891), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(480), - [sym_match_expression] = STATE(480), - [sym_while_expression] = STATE(480), - [sym_loop_expression] = STATE(480), - [sym_for_expression] = STATE(480), - [sym_const_block] = STATE(480), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3626), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(480), - [sym_async_block] = STATE(480), - [sym_gen_block] = STATE(480), - [sym_try_block] = STATE(480), - [sym_block] = STATE(480), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1227), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [STATE(285)] = { + [sym_else_clause] = STATE(414), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_macro_rules_BANG] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1251), + [anon_sym_u8] = ACTIONS(1253), + [anon_sym_i8] = ACTIONS(1253), + [anon_sym_u16] = ACTIONS(1253), + [anon_sym_i16] = ACTIONS(1253), + [anon_sym_u32] = ACTIONS(1253), + [anon_sym_i32] = ACTIONS(1253), + [anon_sym_u64] = ACTIONS(1253), + [anon_sym_i64] = ACTIONS(1253), + [anon_sym_u128] = ACTIONS(1253), + [anon_sym_i128] = ACTIONS(1253), + [anon_sym_isize] = ACTIONS(1253), + [anon_sym_usize] = ACTIONS(1253), + [anon_sym_f32] = ACTIONS(1253), + [anon_sym_f64] = ACTIONS(1253), + [anon_sym_bool] = ACTIONS(1253), + [anon_sym_str] = ACTIONS(1253), + [anon_sym_char] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1251), + [anon_sym_DASH_EQ] = ACTIONS(1251), + [anon_sym_STAR_EQ] = ACTIONS(1251), + [anon_sym_SLASH_EQ] = ACTIONS(1251), + [anon_sym_PERCENT_EQ] = ACTIONS(1251), + [anon_sym_CARET_EQ] = ACTIONS(1251), + [anon_sym_AMP_EQ] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1251), + [anon_sym_LT_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_GT_EQ] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1251), + [anon_sym_COLON_COLON] = ACTIONS(1251), + [anon_sym_POUND] = ACTIONS(1251), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(1253), + [anon_sym_async] = ACTIONS(1253), + [anon_sym_break] = ACTIONS(1253), + [anon_sym_const] = ACTIONS(1253), + [anon_sym_continue] = ACTIONS(1253), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_enum] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1253), + [anon_sym_for] = ACTIONS(1253), + [anon_sym_gen] = ACTIONS(1253), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_impl] = ACTIONS(1253), + [anon_sym_let] = ACTIONS(1253), + [anon_sym_loop] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1253), + [anon_sym_mod] = ACTIONS(1253), + [anon_sym_pub] = ACTIONS(1253), + [anon_sym_return] = ACTIONS(1253), + [anon_sym_static] = ACTIONS(1253), + [anon_sym_struct] = ACTIONS(1253), + [anon_sym_trait] = ACTIONS(1253), + [anon_sym_type] = ACTIONS(1253), + [anon_sym_union] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_use] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1253), + [anon_sym_extern] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1255), + [anon_sym_yield] = ACTIONS(1253), + [anon_sym_move] = ACTIONS(1253), + [anon_sym_try] = ACTIONS(1253), + [sym_integer_literal] = ACTIONS(1251), + [aux_sym_string_literal_token1] = ACTIONS(1251), + [sym_char_literal] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1253), + [anon_sym_false] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1253), + [sym_super] = ACTIONS(1253), + [sym_crate] = ACTIONS(1253), + [sym_metavariable] = ACTIONS(1251), + [sym__raw_string_literal_start] = ACTIONS(1251), + [sym_float_literal] = ACTIONS(1251), + }, + [STATE(286)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1685), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), [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(999), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1229), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1231), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1233), - [anon_sym_gen] = ACTIONS(1235), - [anon_sym_if] = ACTIONS(1237), - [anon_sym_loop] = ACTIONS(1239), - [anon_sym_match] = ACTIONS(1241), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1243), - [anon_sym_while] = ACTIONS(1245), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1247), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_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(275)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(287)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1896), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1797), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -48195,8 +49467,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -48208,11 +49480,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48275,61 +49547,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(276)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), + [STATE(288)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1685), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), [sym_identifier] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(495), [anon_sym_LBRACK] = ACTIONS(497), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(995), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -48347,12 +49619,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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT] = ACTIONS(1193), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -48387,16 +49659,16 @@ 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(277)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(289)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1659), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1386), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -48419,8 +49691,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -48432,16 +49704,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -48459,31 +49731,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -48499,16 +49771,16 @@ 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(3426), + [STATE(290)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1409), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -48531,8 +49803,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -48544,58 +49816,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_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(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), @@ -48604,23 +49876,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(279)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(291)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1617), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1791), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -48643,8 +49915,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -48656,58 +49928,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -48716,23 +49988,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(280)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(292)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1475), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -48755,8 +50027,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -48768,58 +50040,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [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(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -48828,23 +50100,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(281)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(293)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1620), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1820), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -48860,79 +50132,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), + [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(1435), - [sym_closure_parameters] = STATE(222), + [sym_closure_parameters] = STATE(221), [sym_label] = STATE(3585), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), + [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(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), + [anon_sym_async] = ACTIONS(1231), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1233), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1235), + [anon_sym_gen] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_loop] = ACTIONS(1241), + [anon_sym_match] = ACTIONS(1243), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1247), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1249), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -48940,23 +50212,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(282)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(294)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1624), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1861), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -48979,8 +50251,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -48992,58 +50264,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49052,23 +50324,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(283)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(295)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -49091,8 +50363,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -49104,58 +50376,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49164,23 +50436,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(284)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(296)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1838), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -49203,8 +50475,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -49216,58 +50488,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [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(1075), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49276,23 +50548,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(285)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(297)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1650), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1386), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -49315,8 +50587,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -49328,58 +50600,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1185), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49388,23 +50660,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(286)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(298)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1652), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -49427,8 +50699,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -49440,58 +50712,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49500,23 +50772,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(287)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(299)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1653), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1513), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -49539,8 +50811,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -49552,58 +50824,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1185), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49612,23 +50884,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(288)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(300)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1655), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1427), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -49651,8 +50923,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -49664,58 +50936,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1185), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49724,23 +50996,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(289)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(301)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1656), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1517), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -49763,8 +51035,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -49776,58 +51048,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1185), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49836,23 +51108,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(290)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(302)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), [sym__expression] = STATE(1519), - [sym_macro_invocation] = STATE(1430), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -49875,8 +51147,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -49888,11 +51160,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49920,7 +51192,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(1063), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49955,16 +51227,16 @@ 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(3426), + [STATE(303)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1415), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -49987,8 +51259,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -50000,58 +51272,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50060,23 +51332,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(292)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(304)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1877), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -50092,35 +51364,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), + [sym_if_expression] = STATE(477), + [sym_match_expression] = STATE(477), + [sym_while_expression] = STATE(477), + [sym_loop_expression] = STATE(477), + [sym_for_expression] = STATE(477), + [sym_const_block] = STATE(477), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), + [sym_closure_parameters] = STATE(221), [sym_label] = STATE(3585), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), + [sym_unsafe_block] = STATE(477), + [sym_async_block] = STATE(477), + [sym_gen_block] = STATE(477), + [sym_try_block] = STATE(477), + [sym_block] = STATE(477), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1229), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50147,24 +51419,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(1231), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1233), [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(1235), + [anon_sym_gen] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_loop] = ACTIONS(1241), + [anon_sym_match] = ACTIONS(1243), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_unsafe] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1247), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1249), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50179,16 +51451,16 @@ 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(293)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(305)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1508), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1887), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -50211,8 +51483,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -50224,11 +51496,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50256,7 +51528,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(1063), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50291,128 +51563,16 @@ 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(294)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1033), - [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(3426), + [STATE(306)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1475), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1522), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -50435,8 +51595,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -50448,11 +51608,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50480,7 +51640,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(1063), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50515,16 +51675,16 @@ 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(296)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(307)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1510), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1523), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -50547,8 +51707,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -50560,11 +51720,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50592,7 +51752,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(1063), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50627,16 +51787,16 @@ 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(3426), + [STATE(308)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1511), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1524), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -50659,8 +51819,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -50672,11 +51832,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50704,7 +51864,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(1063), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50739,16 +51899,16 @@ 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(3426), + [STATE(309)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1512), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1894), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -50764,35 +51924,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_tuple_expression] = STATE(1435), [sym_unit_expression] = STATE(1435), [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), + [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(1435), - [sym_closure_parameters] = STATE(220), + [sym_closure_parameters] = STATE(221), [sym_label] = STATE(3585), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), [sym_await_expression] = STATE(1435), [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), + [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(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [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(343), + [anon_sym_LBRACE] = ACTIONS(1229), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50816,27 +51976,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(1063), + [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(1231), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1233), [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(1235), + [anon_sym_gen] = ACTIONS(1237), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_loop] = ACTIONS(1241), + [anon_sym_match] = ACTIONS(1243), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_unsafe] = ACTIONS(1245), + [anon_sym_while] = ACTIONS(1247), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1249), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -50851,16 +52011,16 @@ 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(3426), + [STATE(310)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1513), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1893), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -50883,8 +52043,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -50896,11 +52056,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50928,7 +52088,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(1063), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50963,16 +52123,16 @@ 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(300)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(311)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1514), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -50995,8 +52155,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -51008,11 +52168,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51040,7 +52200,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(1063), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51075,16 +52235,16 @@ 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(301)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(312)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1515), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1386), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -51107,8 +52267,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -51120,58 +52280,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(339), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym_identifier] = ACTIONS(467), [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(1059), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1065), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(479), [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(481), + [anon_sym_static] = ACTIONS(483), + [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51180,23 +52340,23 @@ 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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(302)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(313)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1516), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1886), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -51219,8 +52379,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -51232,11 +52392,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51264,7 +52424,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(1063), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51299,16 +52459,128 @@ 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(303)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(314)] = { + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1657), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(995), + [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(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1193), + [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(315)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1518), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -51331,8 +52603,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -51344,11 +52616,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51376,7 +52648,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(1063), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51411,16 +52683,16 @@ 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(304)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(316)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1497), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1891), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -51443,8 +52715,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -51456,11 +52728,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51488,7 +52760,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(1063), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51523,128 +52795,16 @@ 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(305)] = { - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1409), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(306)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(317)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1519), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1506), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -51667,8 +52827,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -51680,11 +52840,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51712,7 +52872,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(1185), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -51747,16 +52907,16 @@ 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(307)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(318)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1504), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -51779,8 +52939,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -51792,58 +52952,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [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(1075), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1185), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51852,23 +53012,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(308)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(319)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1475), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1459), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -51891,8 +53051,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -51904,16 +53064,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -51931,31 +53091,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -51971,16 +53131,16 @@ 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(309)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(320)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1502), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -52003,8 +53163,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -52016,58 +53176,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [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(1071), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [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(1075), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1185), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52076,23 +53236,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(310)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(321)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1503), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -52115,8 +53275,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -52128,58 +53288,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(467), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [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(1071), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [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(1075), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1185), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52188,23 +53348,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [STATE(311)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(322)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1621), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -52227,8 +53387,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -52240,16 +53400,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -52267,31 +53427,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -52307,16 +53467,16 @@ 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(312)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(323)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1427), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -52339,8 +53499,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -52352,16 +53512,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -52379,12 +53539,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -52419,16 +53579,16 @@ 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(313)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(324)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1841), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1624), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -52451,8 +53611,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -52464,16 +53624,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -52491,31 +53651,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -52531,16 +53691,16 @@ 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(314)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(325)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1627), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -52563,8 +53723,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -52576,16 +53736,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -52603,31 +53763,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -52643,16 +53803,16 @@ 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(315)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(326)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1629), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -52675,8 +53835,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -52688,16 +53848,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -52715,31 +53875,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -52755,16 +53915,16 @@ 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(316)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(327)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1718), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -52787,8 +53947,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -52800,16 +53960,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1059), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -52827,12 +53987,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1065), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -52867,16 +54027,16 @@ 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(317)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(328)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1631), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -52899,8 +54059,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -52912,16 +54072,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -52939,12 +54099,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -52979,16 +54139,16 @@ 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(3426), + [STATE(329)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1415), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1632), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -53011,8 +54171,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -53024,16 +54184,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -53051,31 +54211,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -53091,16 +54251,16 @@ 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(319)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(330)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1633), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -53123,8 +54283,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -53136,1427 +54296,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [sym_identifier] = ACTIONS(339), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), + [sym_identifier] = ACTIONS(467), [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(320)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1846), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [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(321)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1661), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [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(322)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1726), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [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(323)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1662), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [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(324)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1666), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [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(325)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1671), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [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(326)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1672), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [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_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [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(327)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [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(328)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1674), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [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(329)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1675), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [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(330)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1683), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [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_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(331)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1684), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1635), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(331), [sym_block_comment] = STATE(331), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(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(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(332)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -54579,8 +54507,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -54592,16 +54520,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(332), [sym_block_comment] = STATE(332), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -54619,31 +54547,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -54660,127 +54588,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(333)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1459), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [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(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), + [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(1077), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1185), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [STATE(334)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1415), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1507), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -54803,8 +54731,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -54816,9 +54744,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(334), [sym_block_comment] = STATE(334), [sym_identifier] = ACTIONS(339), @@ -54848,7 +54776,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(1063), + [anon_sym_DOT_DOT] = ACTIONS(1185), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -54884,15 +54812,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(335)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1445), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -54915,8 +54843,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -54928,16 +54856,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(335), [sym_block_comment] = STATE(335), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -54955,12 +54883,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -54996,15 +54924,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(336)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1507), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -55027,8 +54955,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -55040,16 +54968,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [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(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(337)] = { + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1803), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -55067,31 +55107,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -55107,173 +55147,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(337)] = { - [sym_bracketed_type] = STATE(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), - [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(1029), - [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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1033), - [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(3548), - [sym_generic_function] = STATE(1857), - [sym_generic_type_with_turbofish] = STATE(2902), - [sym__expression_except_range] = STATE(1610), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(1682), - [sym_scoped_identifier] = STATE(1574), - [sym_scoped_type_identifier_in_expression_position] = STATE(3243), - [sym_range_expression] = STATE(1774), - [sym_unary_expression] = STATE(1857), - [sym_try_expression] = STATE(1857), - [sym_reference_expression] = STATE(1857), - [sym_binary_expression] = STATE(1857), - [sym_assignment_expression] = STATE(1857), - [sym_compound_assignment_expr] = STATE(1857), - [sym_type_cast_expression] = STATE(1857), - [sym_return_expression] = STATE(1857), - [sym_yield_expression] = STATE(1857), - [sym_call_expression] = STATE(1857), - [sym_array_expression] = STATE(1857), - [sym_parenthesized_expression] = STATE(1857), - [sym_tuple_expression] = STATE(1857), - [sym_unit_expression] = STATE(1857), - [sym_struct_expression] = STATE(1857), - [sym_if_expression] = STATE(1857), - [sym_match_expression] = STATE(1857), - [sym_while_expression] = STATE(1857), - [sym_loop_expression] = STATE(1857), - [sym_for_expression] = STATE(1857), - [sym_const_block] = STATE(1857), - [sym_closure_expression] = STATE(1857), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3632), - [sym_break_expression] = STATE(1857), - [sym_continue_expression] = STATE(1857), - [sym_index_expression] = STATE(1857), - [sym_await_expression] = STATE(1857), - [sym_field_expression] = STATE(1611), - [sym_unsafe_block] = STATE(1857), - [sym_async_block] = STATE(1857), - [sym_gen_block] = STATE(1857), - [sym_try_block] = STATE(1857), - [sym_block] = STATE(1857), - [sym__literal] = STATE(1857), - [sym_string_literal] = STATE(1735), - [sym_raw_string_literal] = STATE(1735), - [sym_boolean_literal] = STATE(1735), + [sym_bracketed_type] = STATE(3507), + [sym_generic_function] = STATE(1736), + [sym_generic_type_with_turbofish] = STATE(2890), + [sym__expression_except_range] = STATE(1591), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(1809), + [sym_scoped_identifier] = STATE(1584), + [sym_scoped_type_identifier_in_expression_position] = STATE(3085), + [sym_range_expression] = STATE(1853), + [sym_unary_expression] = STATE(1736), + [sym_try_expression] = STATE(1736), + [sym_reference_expression] = STATE(1736), + [sym_binary_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_compound_assignment_expr] = STATE(1736), + [sym_type_cast_expression] = STATE(1736), + [sym_return_expression] = STATE(1736), + [sym_yield_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_array_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), + [sym_tuple_expression] = STATE(1736), + [sym_unit_expression] = STATE(1736), + [sym_struct_expression] = STATE(1736), + [sym_if_expression] = STATE(1736), + [sym_match_expression] = STATE(1736), + [sym_while_expression] = STATE(1736), + [sym_loop_expression] = STATE(1736), + [sym_for_expression] = STATE(1736), + [sym_const_block] = STATE(1736), + [sym_closure_expression] = STATE(1736), + [sym_closure_parameters] = STATE(246), + [sym_label] = STATE(3591), + [sym_break_expression] = STATE(1736), + [sym_continue_expression] = STATE(1736), + [sym_index_expression] = STATE(1736), + [sym_await_expression] = STATE(1736), + [sym_field_expression] = STATE(1645), + [sym_unsafe_block] = STATE(1736), + [sym_async_block] = STATE(1736), + [sym_gen_block] = STATE(1736), + [sym_try_block] = STATE(1736), + [sym_block] = STATE(1736), + [sym__literal] = STATE(1736), + [sym_string_literal] = STATE(1701), + [sym_raw_string_literal] = STATE(1701), + [sym_boolean_literal] = STATE(1701), [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(1029), + [anon_sym_STAR] = ACTIONS(995), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -55291,12 +55219,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(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(995), + [anon_sym_AMP] = ACTIONS(997), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1077), + [anon_sym_DOT_DOT] = ACTIONS(999), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -55332,15 +55260,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [STATE(339)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1497), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1769), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -55363,8 +55291,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -55376,58 +55304,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(339), [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55436,23 +55364,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(340)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1581), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1652), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -55475,8 +55403,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -55488,16 +55416,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [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(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(341)] = { + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1733), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(1059), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -55515,31 +55555,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(1227), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [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_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55555,128 +55595,16 @@ 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(341)] = { - [sym_else_clause] = STATE(381), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), - [ts_builtin_sym_end] = ACTIONS(1251), - [sym_identifier] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_macro_rules_BANG] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_u8] = ACTIONS(1253), - [anon_sym_i8] = ACTIONS(1253), - [anon_sym_u16] = ACTIONS(1253), - [anon_sym_i16] = ACTIONS(1253), - [anon_sym_u32] = ACTIONS(1253), - [anon_sym_i32] = ACTIONS(1253), - [anon_sym_u64] = ACTIONS(1253), - [anon_sym_i64] = ACTIONS(1253), - [anon_sym_u128] = ACTIONS(1253), - [anon_sym_i128] = ACTIONS(1253), - [anon_sym_isize] = ACTIONS(1253), - [anon_sym_usize] = ACTIONS(1253), - [anon_sym_f32] = ACTIONS(1253), - [anon_sym_f64] = ACTIONS(1253), - [anon_sym_bool] = ACTIONS(1253), - [anon_sym_str] = ACTIONS(1253), - [anon_sym_char] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1251), - [anon_sym_PIPE_PIPE] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1253), - [anon_sym_GT_GT] = ACTIONS(1253), - [anon_sym_PLUS_EQ] = ACTIONS(1251), - [anon_sym_DASH_EQ] = ACTIONS(1251), - [anon_sym_STAR_EQ] = ACTIONS(1251), - [anon_sym_SLASH_EQ] = ACTIONS(1251), - [anon_sym_PERCENT_EQ] = ACTIONS(1251), - [anon_sym_CARET_EQ] = ACTIONS(1251), - [anon_sym_AMP_EQ] = ACTIONS(1251), - [anon_sym_PIPE_EQ] = ACTIONS(1251), - [anon_sym_LT_LT_EQ] = ACTIONS(1251), - [anon_sym_GT_GT_EQ] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(1251), - [anon_sym_POUND] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1253), - [anon_sym_as] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_enum] = ACTIONS(1253), - [anon_sym_fn] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_gen] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_impl] = ACTIONS(1253), - [anon_sym_let] = ACTIONS(1253), - [anon_sym_loop] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1253), - [anon_sym_pub] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1253), - [anon_sym_trait] = ACTIONS(1253), - [anon_sym_type] = ACTIONS(1253), - [anon_sym_union] = ACTIONS(1253), - [anon_sym_unsafe] = ACTIONS(1253), - [anon_sym_use] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_yield] = ACTIONS(1253), - [anon_sym_move] = ACTIONS(1253), - [anon_sym_try] = ACTIONS(1253), - [sym_integer_literal] = ACTIONS(1251), - [aux_sym_string_literal_token1] = ACTIONS(1251), - [sym_char_literal] = ACTIONS(1251), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1253), - [sym_super] = ACTIONS(1253), - [sym_crate] = ACTIONS(1253), - [sym_metavariable] = ACTIONS(1251), - [sym__raw_string_literal_start] = ACTIONS(1251), - [sym_float_literal] = ACTIONS(1251), - }, [STATE(342)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1743), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -55699,8 +55627,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -55712,9 +55640,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(342), [sym_block_comment] = STATE(342), [sym_identifier] = ACTIONS(339), @@ -55780,15 +55708,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(343)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1497), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -55811,8 +55739,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -55824,58 +55752,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(343), [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [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(1075), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55884,23 +55812,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [STATE(344)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -55923,8 +55851,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -55936,9 +55864,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(344), [sym_block_comment] = STATE(344), [sym_identifier] = ACTIONS(339), @@ -56004,127 +55932,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(345)] = { - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1690), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1249), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [STATE(346)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1430), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -56147,8 +55963,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -56160,11 +55976,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56227,16 +56043,128 @@ 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(346)] = { + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1570), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [sym_identifier] = ACTIONS(467), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_u8] = ACTIONS(469), + [anon_sym_i8] = ACTIONS(469), + [anon_sym_u16] = ACTIONS(469), + [anon_sym_i16] = ACTIONS(469), + [anon_sym_u32] = ACTIONS(469), + [anon_sym_i32] = ACTIONS(469), + [anon_sym_u64] = ACTIONS(469), + [anon_sym_i64] = ACTIONS(469), + [anon_sym_u128] = ACTIONS(469), + [anon_sym_i128] = ACTIONS(469), + [anon_sym_isize] = ACTIONS(469), + [anon_sym_usize] = ACTIONS(469), + [anon_sym_f32] = ACTIONS(469), + [anon_sym_f64] = ACTIONS(469), + [anon_sym_bool] = ACTIONS(469), + [anon_sym_str] = ACTIONS(469), + [anon_sym_char] = ACTIONS(469), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(505), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(507), + [anon_sym_default] = ACTIONS(477), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(509), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), + [anon_sym_union] = ACTIONS(477), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(515), + [anon_sym_move] = ACTIONS(517), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(489), + [sym_super] = ACTIONS(491), + [sym_crate] = ACTIONS(491), + [sym_metavariable] = ACTIONS(493), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, [STATE(347)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1884), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1747), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -56259,8 +56187,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -56272,9 +56200,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(347), [sym_block_comment] = STATE(347), [sym_identifier] = ACTIONS(339), @@ -56340,15 +56268,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(348)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1571), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1650), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -56371,8 +56299,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -56384,16 +56312,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(348), [sym_block_comment] = STATE(348), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(1059), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -56411,31 +56339,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(1227), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [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_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56452,15 +56380,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(349)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1892), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -56483,8 +56411,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -56496,9 +56424,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(349), [sym_block_comment] = STATE(349), [sym_identifier] = ACTIONS(339), @@ -56564,15 +56492,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(350)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -56595,8 +56523,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -56608,9 +56536,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(350), [sym_block_comment] = STATE(350), [sym_identifier] = ACTIONS(339), @@ -56676,15 +56604,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(351)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1758), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -56707,8 +56635,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -56720,9 +56648,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(351), [sym_block_comment] = STATE(351), [sym_identifier] = ACTIONS(339), @@ -56788,15 +56716,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(352)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1807), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -56819,8 +56747,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -56832,9 +56760,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(352), [sym_block_comment] = STATE(352), [sym_identifier] = ACTIONS(339), @@ -56900,15 +56828,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(353)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1889), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -56931,8 +56859,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -56944,9 +56872,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(353), [sym_block_comment] = STATE(353), [sym_identifier] = ACTIONS(339), @@ -57012,15 +56940,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(354)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1871), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -57043,8 +56971,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -57056,9 +56984,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(354), [sym_block_comment] = STATE(354), [sym_identifier] = ACTIONS(339), @@ -57124,15 +57052,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(355)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1890), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1574), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -57155,8 +57083,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -57168,128 +57096,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(355), [sym_block_comment] = STATE(355), - [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(356)] = { - [sym_bracketed_type] = STATE(3426), - [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1575), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), - [sym_unary_expression] = STATE(1435), - [sym_try_expression] = STATE(1435), - [sym_reference_expression] = STATE(1435), - [sym_binary_expression] = STATE(1435), - [sym_assignment_expression] = STATE(1435), - [sym_compound_assignment_expr] = STATE(1435), - [sym_type_cast_expression] = STATE(1435), - [sym_return_expression] = STATE(1435), - [sym_yield_expression] = STATE(1435), - [sym_call_expression] = STATE(1435), - [sym_array_expression] = STATE(1435), - [sym_parenthesized_expression] = STATE(1435), - [sym_tuple_expression] = STATE(1435), - [sym_unit_expression] = STATE(1435), - [sym_struct_expression] = STATE(1435), - [sym_if_expression] = STATE(1435), - [sym_match_expression] = STATE(1435), - [sym_while_expression] = STATE(1435), - [sym_loop_expression] = STATE(1435), - [sym_for_expression] = STATE(1435), - [sym_const_block] = STATE(1435), - [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1435), - [sym_continue_expression] = STATE(1435), - [sym_index_expression] = STATE(1435), - [sym_await_expression] = STATE(1435), - [sym_field_expression] = STATE(1368), - [sym_unsafe_block] = STATE(1435), - [sym_async_block] = STATE(1435), - [sym_gen_block] = STATE(1435), - [sym_try_block] = STATE(1435), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -57307,12 +57123,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -57347,16 +57163,16 @@ 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(357)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(356)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1665), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1768), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -57379,8 +57195,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -57392,11 +57208,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57459,16 +57275,16 @@ 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(358)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(357)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1892), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1877), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -57491,8 +57307,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -57504,11 +57320,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57571,16 +57387,16 @@ 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(359)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(358)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1893), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1878), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -57603,8 +57419,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -57616,11 +57432,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57683,16 +57499,16 @@ 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(360)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(359)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1894), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -57715,8 +57531,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -57728,11 +57544,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57795,16 +57611,16 @@ 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(361)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(360)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1895), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -57827,8 +57643,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -57840,11 +57656,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57907,16 +57723,16 @@ 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(362)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(361)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1778), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -57939,8 +57755,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -57952,16 +57768,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1059), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -57979,12 +57795,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1227), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -58019,16 +57835,16 @@ 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(363)] = { - [sym_bracketed_type] = STATE(3426), + [STATE(362)] = { + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1596), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1577), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -58051,8 +57867,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -58064,16 +57880,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -58091,12 +57907,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -58131,16 +57947,128 @@ 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(363)] = { + [sym_bracketed_type] = STATE(3600), + [sym_generic_function] = STATE(1435), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1445), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1478), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), + [sym_unary_expression] = STATE(1435), + [sym_try_expression] = STATE(1435), + [sym_reference_expression] = STATE(1435), + [sym_binary_expression] = STATE(1435), + [sym_assignment_expression] = STATE(1435), + [sym_compound_assignment_expr] = STATE(1435), + [sym_type_cast_expression] = STATE(1435), + [sym_return_expression] = STATE(1435), + [sym_yield_expression] = STATE(1435), + [sym_call_expression] = STATE(1435), + [sym_array_expression] = STATE(1435), + [sym_parenthesized_expression] = STATE(1435), + [sym_tuple_expression] = STATE(1435), + [sym_unit_expression] = STATE(1435), + [sym_struct_expression] = STATE(1435), + [sym_if_expression] = STATE(1435), + [sym_match_expression] = STATE(1435), + [sym_while_expression] = STATE(1435), + [sym_loop_expression] = STATE(1435), + [sym_for_expression] = STATE(1435), + [sym_const_block] = STATE(1435), + [sym_closure_expression] = STATE(1435), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), + [sym_break_expression] = STATE(1435), + [sym_continue_expression] = STATE(1435), + [sym_index_expression] = STATE(1435), + [sym_await_expression] = STATE(1435), + [sym_field_expression] = STATE(1368), + [sym_unsafe_block] = STATE(1435), + [sym_async_block] = STATE(1435), + [sym_gen_block] = STATE(1435), + [sym_try_block] = STATE(1435), + [sym_block] = STATE(1435), + [sym__literal] = STATE(1435), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [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(1185), + [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(364)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2887), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1898), - [sym_macro_invocation] = STATE(1430), + [sym_generic_type_with_turbofish] = STATE(2931), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1864), + [sym_macro_invocation] = STATE(1487), [sym_scoped_identifier] = STATE(1478), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -58163,8 +58091,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(221), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -58176,9 +58104,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(364), [sym_block_comment] = STATE(364), [sym_identifier] = ACTIONS(339), @@ -58244,15 +58172,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(365)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1582), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1578), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -58275,8 +58203,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -58288,16 +58216,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(365), [sym_block_comment] = STATE(365), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -58315,12 +58243,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -58356,15 +58284,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(366)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1711), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1459), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -58387,8 +58315,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -58400,16 +58328,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(366), [sym_block_comment] = STATE(366), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(1059), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -58427,12 +58355,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1065), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -58468,15 +58396,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(367)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1583), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1795), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -58499,8 +58427,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -58512,16 +58440,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(367), [sym_block_comment] = STATE(367), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(1059), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -58539,31 +58467,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(1059), + [anon_sym_BANG] = ACTIONS(1059), + [anon_sym_AMP] = ACTIONS(1061), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(1227), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(475), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), + [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(479), [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_return] = ACTIONS(481), + [anon_sym_static] = ACTIONS(483), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(485), + [anon_sym_move] = ACTIONS(487), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58580,15 +58508,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(368)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1584), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1580), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -58611,8 +58539,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(222), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -58624,16 +58552,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(368), [sym_block_comment] = STATE(368), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(925), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -58651,12 +58579,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(925), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_AMP] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(909), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -58692,15 +58620,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(369)] = { - [sym_bracketed_type] = STATE(3426), + [sym_bracketed_type] = STATE(3600), [sym_generic_function] = STATE(1435), - [sym_generic_type_with_turbofish] = STATE(2918), - [sym__expression_except_range] = STATE(1288), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(1430), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3323), - [sym_range_expression] = STATE(1474), + [sym_generic_type_with_turbofish] = STATE(2950), + [sym__expression_except_range] = STATE(1358), + [sym__expression] = STATE(1630), + [sym_macro_invocation] = STATE(1487), + [sym_scoped_identifier] = STATE(1554), + [sym_scoped_type_identifier_in_expression_position] = STATE(3146), + [sym_range_expression] = STATE(1467), [sym_unary_expression] = STATE(1435), [sym_try_expression] = STATE(1435), [sym_reference_expression] = STATE(1435), @@ -58723,8 +58651,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_for_expression] = STATE(1435), [sym_const_block] = STATE(1435), [sym_closure_expression] = STATE(1435), - [sym_closure_parameters] = STATE(243), - [sym_label] = STATE(3585), + [sym_closure_parameters] = STATE(228), + [sym_label] = STATE(3543), [sym_break_expression] = STATE(1435), [sym_continue_expression] = STATE(1435), [sym_index_expression] = STATE(1435), @@ -58736,16 +58664,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_try_block] = STATE(1435), [sym_block] = STATE(1435), [sym__literal] = STATE(1435), - [sym_string_literal] = STATE(1449), - [sym_raw_string_literal] = STATE(1449), - [sym_boolean_literal] = STATE(1449), + [sym_string_literal] = STATE(1424), + [sym_raw_string_literal] = STATE(1424), + [sym_boolean_literal] = STATE(1424), [sym_line_comment] = STATE(369), [sym_block_comment] = STATE(369), [sym_identifier] = ACTIONS(467), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1071), + [anon_sym_STAR] = ACTIONS(905), [anon_sym_u8] = ACTIONS(469), [anon_sym_i8] = ACTIONS(469), [anon_sym_u16] = ACTIONS(469), @@ -58763,31 +58691,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(469), [anon_sym_str] = ACTIONS(469), [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1071), - [anon_sym_BANG] = ACTIONS(1071), - [anon_sym_AMP] = ACTIONS(1073), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(907), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1053), [anon_sym_COLON_COLON] = ACTIONS(473), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(505), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(507), [anon_sym_default] = ACTIONS(477), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(509), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), + [anon_sym_return] = ACTIONS(511), + [anon_sym_static] = ACTIONS(513), [anon_sym_union] = ACTIONS(477), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [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), @@ -58804,171 +58732,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [STATE(370)] = { - [sym_attribute_item] = STATE(422), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(2806), - [sym_variadic_parameter] = STATE(2806), - [sym_parameter] = STATE(2806), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2723), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(370), [sym_block_comment] = STATE(370), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1279), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1285), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_macro_rules_BANG] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_u8] = ACTIONS(1259), + [anon_sym_i8] = ACTIONS(1259), + [anon_sym_u16] = ACTIONS(1259), + [anon_sym_i16] = ACTIONS(1259), + [anon_sym_u32] = ACTIONS(1259), + [anon_sym_i32] = ACTIONS(1259), + [anon_sym_u64] = ACTIONS(1259), + [anon_sym_i64] = ACTIONS(1259), + [anon_sym_u128] = ACTIONS(1259), + [anon_sym_i128] = ACTIONS(1259), + [anon_sym_isize] = ACTIONS(1259), + [anon_sym_usize] = ACTIONS(1259), + [anon_sym_f32] = ACTIONS(1259), + [anon_sym_f64] = ACTIONS(1259), + [anon_sym_bool] = ACTIONS(1259), + [anon_sym_str] = ACTIONS(1259), + [anon_sym_char] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_BANG] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_PLUS_EQ] = ACTIONS(1257), + [anon_sym_DASH_EQ] = ACTIONS(1257), + [anon_sym_STAR_EQ] = ACTIONS(1257), + [anon_sym_SLASH_EQ] = ACTIONS(1257), + [anon_sym_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_CARET_EQ] = ACTIONS(1257), + [anon_sym_AMP_EQ] = ACTIONS(1257), + [anon_sym_PIPE_EQ] = ACTIONS(1257), + [anon_sym_LT_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_GT_EQ] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1259), + [anon_sym_as] = ACTIONS(1259), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_fn] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1259), + [anon_sym_let] = ACTIONS(1259), + [anon_sym_loop] = ACTIONS(1259), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_mod] = ACTIONS(1259), + [anon_sym_pub] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_trait] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1259), + [anon_sym_use] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym_else] = ACTIONS(1259), + [anon_sym_yield] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_try] = ACTIONS(1259), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1257), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1259), + [sym_super] = ACTIONS(1259), + [sym_crate] = ACTIONS(1259), + [sym_metavariable] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1257), + [sym_float_literal] = ACTIONS(1257), }, [STATE(371)] = { - [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(2941), - [sym_variadic_parameter] = STATE(2941), - [sym_parameter] = STATE(2941), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2635), - [sym_bracketed_type] = STATE(3577), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3319), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2428), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2419), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3004), + [sym_variadic_parameter] = STATE(3004), + [sym_parameter] = STATE(3004), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2713), + [sym_bracketed_type] = STATE(3536), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2414), + [sym_scoped_identifier] = STATE(2122), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2406), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(371), [sym_block_comment] = STATE(371), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1333), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1273), + [anon_sym_i8] = ACTIONS(1273), + [anon_sym_u16] = ACTIONS(1273), + [anon_sym_i16] = ACTIONS(1273), + [anon_sym_u32] = ACTIONS(1273), + [anon_sym_i32] = ACTIONS(1273), + [anon_sym_u64] = ACTIONS(1273), + [anon_sym_i64] = ACTIONS(1273), + [anon_sym_u128] = ACTIONS(1273), + [anon_sym_i128] = ACTIONS(1273), + [anon_sym_isize] = ACTIONS(1273), + [anon_sym_usize] = ACTIONS(1273), + [anon_sym_f32] = ACTIONS(1273), + [anon_sym_f64] = ACTIONS(1273), + [anon_sym_bool] = ACTIONS(1273), + [anon_sym_str] = ACTIONS(1273), + [anon_sym_char] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COMMA] = ACTIONS(1289), + [anon_sym_COLON_COLON] = ACTIONS(1291), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1325), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(372)] = { + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_macro_rules_BANG] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_QMARK] = ACTIONS(1333), [anon_sym_u8] = ACTIONS(1335), [anon_sym_i8] = ACTIONS(1335), [anon_sym_u16] = ACTIONS(1335), @@ -58986,377 +58984,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1335), [anon_sym_str] = ACTIONS(1335), [anon_sym_char] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1339), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1341), - [anon_sym_COLON_COLON] = ACTIONS(1343), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1347), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1349), - [sym_super] = ACTIONS(1351), - [sym_crate] = ACTIONS(1351), - [sym_metavariable] = ACTIONS(1353), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(372)] = { - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), - [ts_builtin_sym_end] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_macro_rules_BANG] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_u8] = ACTIONS(1357), - [anon_sym_i8] = ACTIONS(1357), - [anon_sym_u16] = ACTIONS(1357), - [anon_sym_i16] = ACTIONS(1357), - [anon_sym_u32] = ACTIONS(1357), - [anon_sym_i32] = ACTIONS(1357), - [anon_sym_u64] = ACTIONS(1357), - [anon_sym_i64] = ACTIONS(1357), - [anon_sym_u128] = ACTIONS(1357), - [anon_sym_i128] = ACTIONS(1357), - [anon_sym_isize] = ACTIONS(1357), - [anon_sym_usize] = ACTIONS(1357), - [anon_sym_f32] = ACTIONS(1357), - [anon_sym_f64] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_str] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1355), - [anon_sym_PIPE_PIPE] = ACTIONS(1355), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1355), - [anon_sym_DASH_EQ] = ACTIONS(1355), - [anon_sym_STAR_EQ] = ACTIONS(1355), - [anon_sym_SLASH_EQ] = ACTIONS(1355), - [anon_sym_PERCENT_EQ] = ACTIONS(1355), - [anon_sym_CARET_EQ] = ACTIONS(1355), - [anon_sym_AMP_EQ] = ACTIONS(1355), - [anon_sym_PIPE_EQ] = ACTIONS(1355), - [anon_sym_LT_LT_EQ] = ACTIONS(1355), - [anon_sym_GT_GT_EQ] = ACTIONS(1355), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1355), - [anon_sym_BANG_EQ] = ACTIONS(1355), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(1355), - [anon_sym_LT_EQ] = ACTIONS(1355), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(1355), - [anon_sym_POUND] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_as] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [anon_sym_fn] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_gen] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_impl] = ACTIONS(1357), - [anon_sym_let] = ACTIONS(1357), - [anon_sym_loop] = ACTIONS(1357), - [anon_sym_match] = ACTIONS(1357), - [anon_sym_mod] = ACTIONS(1357), - [anon_sym_pub] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_trait] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_unsafe] = ACTIONS(1357), - [anon_sym_use] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1357), - [anon_sym_else] = ACTIONS(1357), - [anon_sym_yield] = ACTIONS(1357), - [anon_sym_move] = ACTIONS(1357), - [anon_sym_try] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1355), - [aux_sym_string_literal_token1] = ACTIONS(1355), - [sym_char_literal] = ACTIONS(1355), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1357), - [sym_super] = ACTIONS(1357), - [sym_crate] = ACTIONS(1357), - [sym_metavariable] = ACTIONS(1355), - [sym__raw_string_literal_start] = ACTIONS(1355), - [sym_float_literal] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(1335), + [anon_sym_PERCENT] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_BANG] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1335), + [anon_sym_GT_GT] = ACTIONS(1335), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1335), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(1333), + [anon_sym_POUND] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_as] = ACTIONS(1335), + [anon_sym_async] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_gen] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_let] = ACTIONS(1335), + [anon_sym_loop] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_mod] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_trait] = ACTIONS(1335), + [anon_sym_type] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1335), + [anon_sym_use] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym_else] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1335), + [anon_sym_move] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1335), + [sym_integer_literal] = ACTIONS(1333), + [aux_sym_string_literal_token1] = ACTIONS(1333), + [sym_char_literal] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1335), + [anon_sym_false] = ACTIONS(1335), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1335), + [sym_super] = ACTIONS(1335), + [sym_crate] = ACTIONS(1335), + [sym_metavariable] = ACTIONS(1333), + [sym__raw_string_literal_start] = ACTIONS(1333), + [sym_float_literal] = ACTIONS(1333), }, [STATE(373)] = { - [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(2941), - [sym_variadic_parameter] = STATE(2941), - [sym_parameter] = STATE(2941), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2635), - [sym_bracketed_type] = STATE(3577), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3319), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2428), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2419), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_attribute_item] = STATE(422), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(2889), + [sym_variadic_parameter] = STATE(2889), + [sym_parameter] = STATE(2889), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2605), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(373), [sym_block_comment] = STATE(373), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1335), - [anon_sym_i8] = ACTIONS(1335), - [anon_sym_u16] = ACTIONS(1335), - [anon_sym_i16] = ACTIONS(1335), - [anon_sym_u32] = ACTIONS(1335), - [anon_sym_i32] = ACTIONS(1335), - [anon_sym_u64] = ACTIONS(1335), - [anon_sym_i64] = ACTIONS(1335), - [anon_sym_u128] = ACTIONS(1335), - [anon_sym_i128] = ACTIONS(1335), - [anon_sym_isize] = ACTIONS(1335), - [anon_sym_usize] = ACTIONS(1335), - [anon_sym_f32] = ACTIONS(1335), - [anon_sym_f64] = ACTIONS(1335), - [anon_sym_bool] = ACTIONS(1335), - [anon_sym_str] = ACTIONS(1335), - [anon_sym_char] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1339), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1361), - [anon_sym_COLON_COLON] = ACTIONS(1343), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1347), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1349), - [sym_super] = ACTIONS(1351), - [sym_crate] = ACTIONS(1351), - [sym_metavariable] = ACTIONS(1353), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1347), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COMMA] = ACTIONS(1349), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(374)] = { + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3004), + [sym_variadic_parameter] = STATE(3004), + [sym_parameter] = STATE(3004), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2713), + [sym_bracketed_type] = STATE(3536), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2414), + [sym_scoped_identifier] = STATE(2122), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2406), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(374), [sym_block_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(1363), - [sym_identifier] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_macro_rules_BANG] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_RBRACE] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_u8] = ACTIONS(1365), - [anon_sym_i8] = ACTIONS(1365), - [anon_sym_u16] = ACTIONS(1365), - [anon_sym_i16] = ACTIONS(1365), - [anon_sym_u32] = ACTIONS(1365), - [anon_sym_i32] = ACTIONS(1365), - [anon_sym_u64] = ACTIONS(1365), - [anon_sym_i64] = ACTIONS(1365), - [anon_sym_u128] = ACTIONS(1365), - [anon_sym_i128] = ACTIONS(1365), - [anon_sym_isize] = ACTIONS(1365), - [anon_sym_usize] = ACTIONS(1365), - [anon_sym_f32] = ACTIONS(1365), - [anon_sym_f64] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_str] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_SLASH] = ACTIONS(1365), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_BANG] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1363), - [anon_sym_PIPE_PIPE] = ACTIONS(1363), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [anon_sym_PLUS_EQ] = ACTIONS(1363), - [anon_sym_DASH_EQ] = ACTIONS(1363), - [anon_sym_STAR_EQ] = ACTIONS(1363), - [anon_sym_SLASH_EQ] = ACTIONS(1363), - [anon_sym_PERCENT_EQ] = ACTIONS(1363), - [anon_sym_CARET_EQ] = ACTIONS(1363), - [anon_sym_AMP_EQ] = ACTIONS(1363), - [anon_sym_PIPE_EQ] = ACTIONS(1363), - [anon_sym_LT_LT_EQ] = ACTIONS(1363), - [anon_sym_GT_GT_EQ] = ACTIONS(1363), - [anon_sym_EQ] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1363), - [anon_sym_BANG_EQ] = ACTIONS(1363), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1363), - [anon_sym_LT_EQ] = ACTIONS(1363), - [anon_sym_DOT] = ACTIONS(1365), - [anon_sym_DOT_DOT] = ACTIONS(1365), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1363), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1363), - [anon_sym_COLON_COLON] = ACTIONS(1363), - [anon_sym_POUND] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_as] = ACTIONS(1365), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_default] = ACTIONS(1365), - [anon_sym_enum] = ACTIONS(1365), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_gen] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_impl] = ACTIONS(1365), - [anon_sym_let] = ACTIONS(1365), - [anon_sym_loop] = ACTIONS(1365), - [anon_sym_match] = ACTIONS(1365), - [anon_sym_mod] = ACTIONS(1365), - [anon_sym_pub] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_struct] = ACTIONS(1365), - [anon_sym_trait] = ACTIONS(1365), - [anon_sym_type] = ACTIONS(1365), - [anon_sym_union] = ACTIONS(1365), - [anon_sym_unsafe] = ACTIONS(1365), - [anon_sym_use] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_extern] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(1365), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_move] = ACTIONS(1365), - [anon_sym_try] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1363), - [aux_sym_string_literal_token1] = ACTIONS(1363), - [sym_char_literal] = ACTIONS(1363), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1365), - [sym_super] = ACTIONS(1365), - [sym_crate] = ACTIONS(1365), - [sym_metavariable] = ACTIONS(1363), - [sym__raw_string_literal_start] = ACTIONS(1363), - [sym_float_literal] = ACTIONS(1363), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_RPAREN] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1273), + [anon_sym_i8] = ACTIONS(1273), + [anon_sym_u16] = ACTIONS(1273), + [anon_sym_i16] = ACTIONS(1273), + [anon_sym_u32] = ACTIONS(1273), + [anon_sym_i32] = ACTIONS(1273), + [anon_sym_u64] = ACTIONS(1273), + [anon_sym_i64] = ACTIONS(1273), + [anon_sym_u128] = ACTIONS(1273), + [anon_sym_i128] = ACTIONS(1273), + [anon_sym_isize] = ACTIONS(1273), + [anon_sym_usize] = ACTIONS(1273), + [anon_sym_f32] = ACTIONS(1273), + [anon_sym_f64] = ACTIONS(1273), + [anon_sym_bool] = ACTIONS(1273), + [anon_sym_str] = ACTIONS(1273), + [anon_sym_char] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_COLON_COLON] = ACTIONS(1291), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1325), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(375)] = { [sym_line_comment] = STATE(375), @@ -59471,225 +59399,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(376)] = { [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(2803), - [sym_variadic_parameter] = STATE(2803), - [sym_parameter] = STATE(2803), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2562), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3004), + [sym_variadic_parameter] = STATE(3004), + [sym_parameter] = STATE(3004), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2713), + [sym_bracketed_type] = STATE(3536), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2414), + [sym_scoped_identifier] = STATE(2122), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2406), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(376), [sym_block_comment] = STATE(376), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), [anon_sym_RPAREN] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1373), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COMMA] = ACTIONS(1375), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1273), + [anon_sym_i8] = ACTIONS(1273), + [anon_sym_u16] = ACTIONS(1273), + [anon_sym_i16] = ACTIONS(1273), + [anon_sym_u32] = ACTIONS(1273), + [anon_sym_i32] = ACTIONS(1273), + [anon_sym_u64] = ACTIONS(1273), + [anon_sym_i64] = ACTIONS(1273), + [anon_sym_u128] = ACTIONS(1273), + [anon_sym_i128] = ACTIONS(1273), + [anon_sym_isize] = ACTIONS(1273), + [anon_sym_usize] = ACTIONS(1273), + [anon_sym_f32] = ACTIONS(1273), + [anon_sym_f64] = ACTIONS(1273), + [anon_sym_bool] = ACTIONS(1273), + [anon_sym_str] = ACTIONS(1273), + [anon_sym_char] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COMMA] = ACTIONS(1373), + [anon_sym_COLON_COLON] = ACTIONS(1291), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1325), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(377)] = { [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(2941), - [sym_variadic_parameter] = STATE(2941), - [sym_parameter] = STATE(2941), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2635), - [sym_bracketed_type] = STATE(3577), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3319), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2428), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2419), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(2764), + [sym_variadic_parameter] = STATE(2764), + [sym_parameter] = STATE(2764), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2511), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(377), [sym_block_comment] = STATE(377), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_RPAREN] = ACTIONS(1377), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1335), - [anon_sym_i8] = ACTIONS(1335), - [anon_sym_u16] = ACTIONS(1335), - [anon_sym_i16] = ACTIONS(1335), - [anon_sym_u32] = ACTIONS(1335), - [anon_sym_i32] = ACTIONS(1335), - [anon_sym_u64] = ACTIONS(1335), - [anon_sym_i64] = ACTIONS(1335), - [anon_sym_u128] = ACTIONS(1335), - [anon_sym_i128] = ACTIONS(1335), - [anon_sym_isize] = ACTIONS(1335), - [anon_sym_usize] = ACTIONS(1335), - [anon_sym_f32] = ACTIONS(1335), - [anon_sym_f64] = ACTIONS(1335), - [anon_sym_bool] = ACTIONS(1335), - [anon_sym_str] = ACTIONS(1335), - [anon_sym_char] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1337), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1339), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), [anon_sym_COMMA] = ACTIONS(1379), - [anon_sym_COLON_COLON] = ACTIONS(1343), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1347), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1349), - [sym_super] = ACTIONS(1351), - [sym_crate] = ACTIONS(1351), - [sym_metavariable] = ACTIONS(1353), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(378)] = { [sym_line_comment] = STATE(378), @@ -59914,225 +59842,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1385), }, [STATE(380)] = { - [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(2941), - [sym_variadic_parameter] = STATE(2941), - [sym_parameter] = STATE(2941), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2635), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_attribute_item] = STATE(423), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3004), + [sym_variadic_parameter] = STATE(3004), + [sym_parameter] = STATE(3004), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2713), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(380), [sym_block_comment] = STATE(380), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1391), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), [anon_sym_COMMA] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(381)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3242), + [sym_variadic_parameter] = STATE(3242), + [sym_parameter] = STATE(3242), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(381), [sym_block_comment] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_identifier] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_macro_rules_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1395), - [anon_sym_u8] = ACTIONS(1397), - [anon_sym_i8] = ACTIONS(1397), - [anon_sym_u16] = ACTIONS(1397), - [anon_sym_i16] = ACTIONS(1397), - [anon_sym_u32] = ACTIONS(1397), - [anon_sym_i32] = ACTIONS(1397), - [anon_sym_u64] = ACTIONS(1397), - [anon_sym_i64] = ACTIONS(1397), - [anon_sym_u128] = ACTIONS(1397), - [anon_sym_i128] = ACTIONS(1397), - [anon_sym_isize] = ACTIONS(1397), - [anon_sym_usize] = ACTIONS(1397), - [anon_sym_f32] = ACTIONS(1397), - [anon_sym_f64] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_str] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_LT_LT] = ACTIONS(1397), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_PLUS_EQ] = ACTIONS(1395), - [anon_sym_DASH_EQ] = ACTIONS(1395), - [anon_sym_STAR_EQ] = ACTIONS(1395), - [anon_sym_SLASH_EQ] = ACTIONS(1395), - [anon_sym_PERCENT_EQ] = ACTIONS(1395), - [anon_sym_CARET_EQ] = ACTIONS(1395), - [anon_sym_AMP_EQ] = ACTIONS(1395), - [anon_sym_PIPE_EQ] = ACTIONS(1395), - [anon_sym_LT_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1395), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_fn] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_gen] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_impl] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_pub] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_struct] = ACTIONS(1397), - [anon_sym_trait] = ACTIONS(1397), - [anon_sym_type] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1397), - [anon_sym_move] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1395), - [aux_sym_string_literal_token1] = ACTIONS(1395), - [sym_char_literal] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_crate] = ACTIONS(1397), - [sym_metavariable] = ACTIONS(1395), - [sym__raw_string_literal_start] = ACTIONS(1395), - [sym_float_literal] = ACTIONS(1395), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(382)] = { [sym_line_comment] = STATE(382), @@ -60355,448 +60283,2318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1403), }, [STATE(384)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3242), + [sym_variadic_parameter] = STATE(3242), + [sym_parameter] = STATE(3242), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(384), [sym_block_comment] = STATE(384), - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_identifier] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_macro_rules_BANG] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_QMARK] = ACTIONS(1407), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u128] = ACTIONS(1409), - [anon_sym_i128] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_str] = ACTIONS(1409), - [anon_sym_char] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1409), - [anon_sym_PERCENT] = ACTIONS(1409), - [anon_sym_CARET] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE] = ACTIONS(1409), - [anon_sym_AMP_AMP] = ACTIONS(1407), - [anon_sym_PIPE_PIPE] = ACTIONS(1407), - [anon_sym_LT_LT] = ACTIONS(1409), - [anon_sym_GT_GT] = ACTIONS(1409), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_EQ] = ACTIONS(1409), - [anon_sym_EQ_EQ] = ACTIONS(1407), - [anon_sym_BANG_EQ] = ACTIONS(1407), - [anon_sym_GT] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1409), - [anon_sym_GT_EQ] = ACTIONS(1407), - [anon_sym_LT_EQ] = ACTIONS(1407), - [anon_sym_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1407), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1407), - [anon_sym_POUND] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_as] = ACTIONS(1409), - [anon_sym_async] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_fn] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_gen] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_impl] = ACTIONS(1409), - [anon_sym_let] = ACTIONS(1409), - [anon_sym_loop] = ACTIONS(1409), - [anon_sym_match] = ACTIONS(1409), - [anon_sym_mod] = ACTIONS(1409), - [anon_sym_pub] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_trait] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1409), - [anon_sym_use] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym_yield] = ACTIONS(1409), - [anon_sym_move] = ACTIONS(1409), - [anon_sym_try] = ACTIONS(1409), - [sym_integer_literal] = ACTIONS(1407), - [aux_sym_string_literal_token1] = ACTIONS(1407), - [sym_char_literal] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1409), - [sym_super] = ACTIONS(1409), - [sym_crate] = ACTIONS(1409), - [sym_metavariable] = ACTIONS(1407), - [sym__raw_string_literal_start] = ACTIONS(1407), - [sym_float_literal] = ACTIONS(1407), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(385)] = { [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(3228), - [sym_variadic_parameter] = STATE(3228), - [sym_parameter] = STATE(3228), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2903), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3242), + [sym_variadic_parameter] = STATE(3242), + [sym_parameter] = STATE(3242), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(385), [sym_block_comment] = STATE(385), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1409), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(386)] = { [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(3228), - [sym_variadic_parameter] = STATE(3228), - [sym_parameter] = STATE(3228), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2903), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3242), + [sym_variadic_parameter] = STATE(3242), + [sym_parameter] = STATE(3242), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(386), [sym_block_comment] = STATE(386), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1415), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(387)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3242), + [sym_variadic_parameter] = STATE(3242), + [sym_parameter] = STATE(3242), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(387), [sym_block_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(1417), - [sym_identifier] = ACTIONS(1419), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_macro_rules_BANG] = ACTIONS(1417), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_RBRACE] = ACTIONS(1417), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(388)] = { + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), + [ts_builtin_sym_end] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_macro_rules_BANG] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), + [anon_sym_u64] = ACTIONS(1045), + [anon_sym_i64] = ACTIONS(1045), + [anon_sym_u128] = ACTIONS(1045), + [anon_sym_i128] = ACTIONS(1045), + [anon_sym_isize] = ACTIONS(1045), + [anon_sym_usize] = ACTIONS(1045), + [anon_sym_f32] = ACTIONS(1045), + [anon_sym_f64] = ACTIONS(1045), + [anon_sym_bool] = ACTIONS(1045), + [anon_sym_str] = ACTIONS(1045), + [anon_sym_char] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_STAR_EQ] = ACTIONS(1047), + [anon_sym_SLASH_EQ] = ACTIONS(1047), + [anon_sym_PERCENT_EQ] = ACTIONS(1047), + [anon_sym_CARET_EQ] = ACTIONS(1047), + [anon_sym_AMP_EQ] = ACTIONS(1047), + [anon_sym_PIPE_EQ] = ACTIONS(1047), + [anon_sym_LT_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_GT_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_default] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_fn] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_gen] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_impl] = ACTIONS(1045), + [anon_sym_let] = ACTIONS(1045), + [anon_sym_loop] = ACTIONS(1045), + [anon_sym_match] = ACTIONS(1045), + [anon_sym_mod] = ACTIONS(1045), + [anon_sym_pub] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1045), + [anon_sym_type] = ACTIONS(1045), + [anon_sym_union] = ACTIONS(1045), + [anon_sym_unsafe] = ACTIONS(1045), + [anon_sym_use] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_extern] = ACTIONS(1045), + [anon_sym_yield] = ACTIONS(1045), + [anon_sym_move] = ACTIONS(1045), + [anon_sym_try] = ACTIONS(1045), + [sym_integer_literal] = ACTIONS(1047), + [aux_sym_string_literal_token1] = ACTIONS(1047), + [sym_char_literal] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1045), + [sym_super] = ACTIONS(1045), + [sym_crate] = ACTIONS(1045), + [sym_metavariable] = ACTIONS(1047), + [sym__raw_string_literal_start] = ACTIONS(1047), + [sym_float_literal] = ACTIONS(1047), + }, + [STATE(389)] = { + [sym_line_comment] = STATE(389), + [sym_block_comment] = STATE(389), + [ts_builtin_sym_end] = ACTIONS(1415), + [sym_identifier] = ACTIONS(1417), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_macro_rules_BANG] = ACTIONS(1415), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_QMARK] = ACTIONS(1421), + [anon_sym_u8] = ACTIONS(1417), + [anon_sym_i8] = ACTIONS(1417), + [anon_sym_u16] = ACTIONS(1417), + [anon_sym_i16] = ACTIONS(1417), + [anon_sym_u32] = ACTIONS(1417), + [anon_sym_i32] = ACTIONS(1417), + [anon_sym_u64] = ACTIONS(1417), + [anon_sym_i64] = ACTIONS(1417), + [anon_sym_u128] = ACTIONS(1417), + [anon_sym_i128] = ACTIONS(1417), + [anon_sym_isize] = ACTIONS(1417), + [anon_sym_usize] = ACTIONS(1417), + [anon_sym_f32] = ACTIONS(1417), + [anon_sym_f64] = ACTIONS(1417), + [anon_sym_bool] = ACTIONS(1417), + [anon_sym_str] = ACTIONS(1417), + [anon_sym_char] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_PIPE] = ACTIONS(1417), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_LT_LT] = ACTIONS(1419), + [anon_sym_GT_GT] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1421), + [anon_sym_DASH_EQ] = ACTIONS(1421), + [anon_sym_STAR_EQ] = ACTIONS(1421), + [anon_sym_SLASH_EQ] = ACTIONS(1421), + [anon_sym_PERCENT_EQ] = ACTIONS(1421), + [anon_sym_CARET_EQ] = ACTIONS(1421), + [anon_sym_AMP_EQ] = ACTIONS(1421), + [anon_sym_PIPE_EQ] = ACTIONS(1421), + [anon_sym_LT_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_EQ] = ACTIONS(1421), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), + [anon_sym_COLON_COLON] = ACTIONS(1415), + [anon_sym_POUND] = ACTIONS(1415), + [anon_sym_SQUOTE] = ACTIONS(1417), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_break] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_continue] = ACTIONS(1417), + [anon_sym_default] = ACTIONS(1417), + [anon_sym_enum] = ACTIONS(1417), + [anon_sym_fn] = ACTIONS(1417), + [anon_sym_for] = ACTIONS(1417), + [anon_sym_gen] = ACTIONS(1417), + [anon_sym_if] = ACTIONS(1417), + [anon_sym_impl] = ACTIONS(1417), + [anon_sym_let] = ACTIONS(1417), + [anon_sym_loop] = ACTIONS(1417), + [anon_sym_match] = ACTIONS(1417), + [anon_sym_mod] = ACTIONS(1417), + [anon_sym_pub] = ACTIONS(1417), + [anon_sym_return] = ACTIONS(1417), + [anon_sym_static] = ACTIONS(1417), + [anon_sym_struct] = ACTIONS(1417), + [anon_sym_trait] = ACTIONS(1417), + [anon_sym_type] = ACTIONS(1417), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_unsafe] = ACTIONS(1417), + [anon_sym_use] = ACTIONS(1417), + [anon_sym_while] = ACTIONS(1417), + [anon_sym_extern] = ACTIONS(1417), + [anon_sym_yield] = ACTIONS(1417), + [anon_sym_move] = ACTIONS(1417), + [anon_sym_try] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1415), + [aux_sym_string_literal_token1] = ACTIONS(1415), + [sym_char_literal] = ACTIONS(1415), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1417), + [sym_crate] = ACTIONS(1417), + [sym_metavariable] = ACTIONS(1415), + [sym__raw_string_literal_start] = ACTIONS(1415), + [sym_float_literal] = ACTIONS(1415), + }, + [STATE(390)] = { + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), + [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_PLUS] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_QMARK] = 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(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PERCENT] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_BANG] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_PIPE_PIPE] = ACTIONS(1423), + [anon_sym_LT_LT] = ACTIONS(1425), + [anon_sym_GT_GT] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1423), + [anon_sym_DASH_EQ] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1423), + [anon_sym_SLASH_EQ] = ACTIONS(1423), + [anon_sym_PERCENT_EQ] = ACTIONS(1423), + [anon_sym_CARET_EQ] = ACTIONS(1423), + [anon_sym_AMP_EQ] = ACTIONS(1423), + [anon_sym_PIPE_EQ] = ACTIONS(1423), + [anon_sym_LT_LT_EQ] = ACTIONS(1423), + [anon_sym_GT_GT_EQ] = ACTIONS(1423), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1423), + [anon_sym_BANG_EQ] = ACTIONS(1423), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_LT] = ACTIONS(1425), + [anon_sym_GT_EQ] = ACTIONS(1423), + [anon_sym_LT_EQ] = ACTIONS(1423), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1423), + [anon_sym_COLON_COLON] = ACTIONS(1423), + [anon_sym_POUND] = ACTIONS(1423), + [anon_sym_SQUOTE] = ACTIONS(1425), + [anon_sym_as] = 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(391)] = { + [sym_line_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [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_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_QMARK] = 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(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_BANG] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1427), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1429), + [anon_sym_PLUS_EQ] = ACTIONS(1427), + [anon_sym_DASH_EQ] = ACTIONS(1427), + [anon_sym_STAR_EQ] = ACTIONS(1427), + [anon_sym_SLASH_EQ] = ACTIONS(1427), + [anon_sym_PERCENT_EQ] = ACTIONS(1427), + [anon_sym_CARET_EQ] = ACTIONS(1427), + [anon_sym_AMP_EQ] = ACTIONS(1427), + [anon_sym_PIPE_EQ] = ACTIONS(1427), + [anon_sym_LT_LT_EQ] = ACTIONS(1427), + [anon_sym_GT_GT_EQ] = ACTIONS(1427), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1427), + [anon_sym_LT_EQ] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1427), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_POUND] = ACTIONS(1427), + [anon_sym_SQUOTE] = ACTIONS(1429), + [anon_sym_as] = 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(392)] = { + [sym_line_comment] = STATE(392), + [sym_block_comment] = STATE(392), + [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_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_BANG] = 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_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_COLON_COLON] = ACTIONS(1431), + [anon_sym_POUND] = ACTIONS(1431), + [anon_sym_SQUOTE] = ACTIONS(1433), + [anon_sym_as] = 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(393)] = { + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), + [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_PLUS] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_QMARK] = 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(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PERCENT] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_LT_LT] = ACTIONS(1437), + [anon_sym_GT_GT] = ACTIONS(1437), + [anon_sym_PLUS_EQ] = ACTIONS(1435), + [anon_sym_DASH_EQ] = ACTIONS(1435), + [anon_sym_STAR_EQ] = ACTIONS(1435), + [anon_sym_SLASH_EQ] = ACTIONS(1435), + [anon_sym_PERCENT_EQ] = ACTIONS(1435), + [anon_sym_CARET_EQ] = ACTIONS(1435), + [anon_sym_AMP_EQ] = ACTIONS(1435), + [anon_sym_PIPE_EQ] = ACTIONS(1435), + [anon_sym_LT_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1435), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_SQUOTE] = ACTIONS(1437), + [anon_sym_as] = 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(394)] = { + [sym_line_comment] = STATE(394), + [sym_block_comment] = STATE(394), + [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(1443), + [sym_identifier] = ACTIONS(1445), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_macro_rules_BANG] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_QMARK] = ACTIONS(1443), + [anon_sym_u8] = ACTIONS(1445), + [anon_sym_i8] = ACTIONS(1445), + [anon_sym_u16] = ACTIONS(1445), + [anon_sym_i16] = ACTIONS(1445), + [anon_sym_u32] = ACTIONS(1445), + [anon_sym_i32] = ACTIONS(1445), + [anon_sym_u64] = ACTIONS(1445), + [anon_sym_i64] = ACTIONS(1445), + [anon_sym_u128] = ACTIONS(1445), + [anon_sym_i128] = ACTIONS(1445), + [anon_sym_isize] = ACTIONS(1445), + [anon_sym_usize] = ACTIONS(1445), + [anon_sym_f32] = ACTIONS(1445), + [anon_sym_f64] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_str] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_PERCENT] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1445), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_PIPE_PIPE] = ACTIONS(1443), + [anon_sym_LT_LT] = ACTIONS(1445), + [anon_sym_GT_GT] = ACTIONS(1445), + [anon_sym_PLUS_EQ] = ACTIONS(1443), + [anon_sym_DASH_EQ] = ACTIONS(1443), + [anon_sym_STAR_EQ] = ACTIONS(1443), + [anon_sym_SLASH_EQ] = ACTIONS(1443), + [anon_sym_PERCENT_EQ] = ACTIONS(1443), + [anon_sym_CARET_EQ] = ACTIONS(1443), + [anon_sym_AMP_EQ] = ACTIONS(1443), + [anon_sym_PIPE_EQ] = ACTIONS(1443), + [anon_sym_LT_LT_EQ] = ACTIONS(1443), + [anon_sym_GT_GT_EQ] = ACTIONS(1443), + [anon_sym_EQ] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1443), + [anon_sym_BANG_EQ] = ACTIONS(1443), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1445), + [anon_sym_GT_EQ] = ACTIONS(1443), + [anon_sym_LT_EQ] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1443), + [anon_sym_COLON_COLON] = ACTIONS(1443), + [anon_sym_POUND] = ACTIONS(1443), + [anon_sym_SQUOTE] = ACTIONS(1445), + [anon_sym_as] = ACTIONS(1445), + [anon_sym_async] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_enum] = ACTIONS(1445), + [anon_sym_fn] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_gen] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_impl] = ACTIONS(1445), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_loop] = ACTIONS(1445), + [anon_sym_match] = ACTIONS(1445), + [anon_sym_mod] = ACTIONS(1445), + [anon_sym_pub] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_struct] = ACTIONS(1445), + [anon_sym_trait] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_union] = ACTIONS(1445), + [anon_sym_unsafe] = ACTIONS(1445), + [anon_sym_use] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_extern] = ACTIONS(1445), + [anon_sym_yield] = ACTIONS(1445), + [anon_sym_move] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [aux_sym_string_literal_token1] = ACTIONS(1443), + [sym_char_literal] = ACTIONS(1443), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1445), + [sym_super] = ACTIONS(1445), + [sym_crate] = ACTIONS(1445), + [sym_metavariable] = ACTIONS(1443), + [sym__raw_string_literal_start] = ACTIONS(1443), + [sym_float_literal] = ACTIONS(1443), + }, + [STATE(396)] = { + [sym_line_comment] = STATE(396), + [sym_block_comment] = STATE(396), + [ts_builtin_sym_end] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_macro_rules_BANG] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_QMARK] = ACTIONS(1447), + [anon_sym_u8] = ACTIONS(1449), + [anon_sym_i8] = ACTIONS(1449), + [anon_sym_u16] = ACTIONS(1449), + [anon_sym_i16] = ACTIONS(1449), + [anon_sym_u32] = ACTIONS(1449), + [anon_sym_i32] = ACTIONS(1449), + [anon_sym_u64] = ACTIONS(1449), + [anon_sym_i64] = ACTIONS(1449), + [anon_sym_u128] = ACTIONS(1449), + [anon_sym_i128] = ACTIONS(1449), + [anon_sym_isize] = ACTIONS(1449), + [anon_sym_usize] = ACTIONS(1449), + [anon_sym_f32] = ACTIONS(1449), + [anon_sym_f64] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_str] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PERCENT] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_PLUS_EQ] = ACTIONS(1447), + [anon_sym_DASH_EQ] = ACTIONS(1447), + [anon_sym_STAR_EQ] = ACTIONS(1447), + [anon_sym_SLASH_EQ] = ACTIONS(1447), + [anon_sym_PERCENT_EQ] = ACTIONS(1447), + [anon_sym_CARET_EQ] = ACTIONS(1447), + [anon_sym_AMP_EQ] = ACTIONS(1447), + [anon_sym_PIPE_EQ] = ACTIONS(1447), + [anon_sym_LT_LT_EQ] = ACTIONS(1447), + [anon_sym_GT_GT_EQ] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1447), + [anon_sym_COLON_COLON] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(1447), + [anon_sym_SQUOTE] = ACTIONS(1449), + [anon_sym_as] = ACTIONS(1449), + [anon_sym_async] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_default] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_fn] = ACTIONS(1449), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_gen] = ACTIONS(1449), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_impl] = ACTIONS(1449), + [anon_sym_let] = ACTIONS(1449), + [anon_sym_loop] = ACTIONS(1449), + [anon_sym_match] = ACTIONS(1449), + [anon_sym_mod] = ACTIONS(1449), + [anon_sym_pub] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_struct] = ACTIONS(1449), + [anon_sym_trait] = ACTIONS(1449), + [anon_sym_type] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1449), + [anon_sym_unsafe] = ACTIONS(1449), + [anon_sym_use] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_extern] = ACTIONS(1449), + [anon_sym_yield] = ACTIONS(1449), + [anon_sym_move] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1447), + [aux_sym_string_literal_token1] = ACTIONS(1447), + [sym_char_literal] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1449), + [sym_super] = ACTIONS(1449), + [sym_crate] = ACTIONS(1449), + [sym_metavariable] = ACTIONS(1447), + [sym__raw_string_literal_start] = ACTIONS(1447), + [sym_float_literal] = ACTIONS(1447), + }, + [STATE(397)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3242), + [sym_variadic_parameter] = STATE(3242), + [sym_parameter] = STATE(3242), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(397), + [sym_block_comment] = STATE(397), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(398)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3242), + [sym_variadic_parameter] = STATE(3242), + [sym_parameter] = STATE(3242), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(398), + [sym_block_comment] = STATE(398), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(399)] = { + [sym_line_comment] = STATE(399), + [sym_block_comment] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_macro_rules_BANG] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1455), + [anon_sym_u8] = ACTIONS(1457), + [anon_sym_i8] = ACTIONS(1457), + [anon_sym_u16] = ACTIONS(1457), + [anon_sym_i16] = ACTIONS(1457), + [anon_sym_u32] = ACTIONS(1457), + [anon_sym_i32] = ACTIONS(1457), + [anon_sym_u64] = ACTIONS(1457), + [anon_sym_i64] = ACTIONS(1457), + [anon_sym_u128] = ACTIONS(1457), + [anon_sym_i128] = ACTIONS(1457), + [anon_sym_isize] = ACTIONS(1457), + [anon_sym_usize] = ACTIONS(1457), + [anon_sym_f32] = ACTIONS(1457), + [anon_sym_f64] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_str] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_SLASH] = ACTIONS(1457), + [anon_sym_PERCENT] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_BANG] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_PIPE_PIPE] = ACTIONS(1455), + [anon_sym_LT_LT] = ACTIONS(1457), + [anon_sym_GT_GT] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1455), + [anon_sym_DASH_EQ] = ACTIONS(1455), + [anon_sym_STAR_EQ] = ACTIONS(1455), + [anon_sym_SLASH_EQ] = ACTIONS(1455), + [anon_sym_PERCENT_EQ] = ACTIONS(1455), + [anon_sym_CARET_EQ] = ACTIONS(1455), + [anon_sym_AMP_EQ] = ACTIONS(1455), + [anon_sym_PIPE_EQ] = ACTIONS(1455), + [anon_sym_LT_LT_EQ] = ACTIONS(1455), + [anon_sym_GT_GT_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_SQUOTE] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(1457), + [anon_sym_async] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [anon_sym_fn] = ACTIONS(1457), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_gen] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_impl] = ACTIONS(1457), + [anon_sym_let] = ACTIONS(1457), + [anon_sym_loop] = ACTIONS(1457), + [anon_sym_match] = ACTIONS(1457), + [anon_sym_mod] = ACTIONS(1457), + [anon_sym_pub] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_struct] = ACTIONS(1457), + [anon_sym_trait] = ACTIONS(1457), + [anon_sym_type] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1457), + [anon_sym_unsafe] = ACTIONS(1457), + [anon_sym_use] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_extern] = ACTIONS(1457), + [anon_sym_yield] = ACTIONS(1457), + [anon_sym_move] = ACTIONS(1457), + [anon_sym_try] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1455), + [aux_sym_string_literal_token1] = ACTIONS(1455), + [sym_char_literal] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1457), + [sym_super] = ACTIONS(1457), + [sym_crate] = ACTIONS(1457), + [sym_metavariable] = ACTIONS(1455), + [sym__raw_string_literal_start] = ACTIONS(1455), + [sym_float_literal] = ACTIONS(1455), + }, + [STATE(400)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3242), + [sym_variadic_parameter] = STATE(3242), + [sym_parameter] = STATE(3242), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(400), + [sym_block_comment] = STATE(400), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(401)] = { + [sym_line_comment] = STATE(401), + [sym_block_comment] = STATE(401), + [ts_builtin_sym_end] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_macro_rules_BANG] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_QMARK] = ACTIONS(1417), - [anon_sym_u8] = ACTIONS(1419), - [anon_sym_i8] = ACTIONS(1419), - [anon_sym_u16] = ACTIONS(1419), - [anon_sym_i16] = ACTIONS(1419), - [anon_sym_u32] = ACTIONS(1419), - [anon_sym_i32] = ACTIONS(1419), - [anon_sym_u64] = ACTIONS(1419), - [anon_sym_i64] = ACTIONS(1419), - [anon_sym_u128] = ACTIONS(1419), - [anon_sym_i128] = ACTIONS(1419), - [anon_sym_isize] = ACTIONS(1419), - [anon_sym_usize] = ACTIONS(1419), - [anon_sym_f32] = ACTIONS(1419), - [anon_sym_f64] = ACTIONS(1419), - [anon_sym_bool] = ACTIONS(1419), - [anon_sym_str] = ACTIONS(1419), - [anon_sym_char] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1421), + [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(1419), [anon_sym_SLASH] = ACTIONS(1419), [anon_sym_PERCENT] = ACTIONS(1419), [anon_sym_CARET] = ACTIONS(1419), - [anon_sym_BANG] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1463), [anon_sym_AMP] = ACTIONS(1419), [anon_sym_PIPE] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(1417), - [anon_sym_PIPE_PIPE] = ACTIONS(1417), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), [anon_sym_LT_LT] = ACTIONS(1419), [anon_sym_GT_GT] = ACTIONS(1419), - [anon_sym_PLUS_EQ] = ACTIONS(1417), - [anon_sym_DASH_EQ] = ACTIONS(1417), - [anon_sym_STAR_EQ] = ACTIONS(1417), - [anon_sym_SLASH_EQ] = ACTIONS(1417), - [anon_sym_PERCENT_EQ] = ACTIONS(1417), - [anon_sym_CARET_EQ] = ACTIONS(1417), - [anon_sym_AMP_EQ] = ACTIONS(1417), - [anon_sym_PIPE_EQ] = ACTIONS(1417), - [anon_sym_LT_LT_EQ] = ACTIONS(1417), - [anon_sym_GT_GT_EQ] = ACTIONS(1417), + [anon_sym_PLUS_EQ] = ACTIONS(1421), + [anon_sym_DASH_EQ] = ACTIONS(1421), + [anon_sym_STAR_EQ] = ACTIONS(1421), + [anon_sym_SLASH_EQ] = ACTIONS(1421), + [anon_sym_PERCENT_EQ] = ACTIONS(1421), + [anon_sym_CARET_EQ] = ACTIONS(1421), + [anon_sym_AMP_EQ] = ACTIONS(1421), + [anon_sym_PIPE_EQ] = ACTIONS(1421), + [anon_sym_LT_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_EQ] = ACTIONS(1421), [anon_sym_EQ] = ACTIONS(1419), - [anon_sym_EQ_EQ] = ACTIONS(1417), - [anon_sym_BANG_EQ] = ACTIONS(1417), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), [anon_sym_GT] = ACTIONS(1419), [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT_EQ] = ACTIONS(1417), - [anon_sym_LT_EQ] = ACTIONS(1417), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), [anon_sym_DOT] = ACTIONS(1419), [anon_sym_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1417), - [anon_sym_COLON_COLON] = ACTIONS(1417), - [anon_sym_POUND] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), + [anon_sym_COLON_COLON] = ACTIONS(1461), + [anon_sym_POUND] = ACTIONS(1461), + [anon_sym_SQUOTE] = ACTIONS(1463), [anon_sym_as] = ACTIONS(1419), - [anon_sym_async] = ACTIONS(1419), - [anon_sym_break] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_continue] = ACTIONS(1419), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_enum] = ACTIONS(1419), - [anon_sym_fn] = ACTIONS(1419), - [anon_sym_for] = ACTIONS(1419), - [anon_sym_gen] = ACTIONS(1419), - [anon_sym_if] = ACTIONS(1419), - [anon_sym_impl] = ACTIONS(1419), - [anon_sym_let] = ACTIONS(1419), - [anon_sym_loop] = ACTIONS(1419), - [anon_sym_match] = ACTIONS(1419), - [anon_sym_mod] = ACTIONS(1419), - [anon_sym_pub] = ACTIONS(1419), - [anon_sym_return] = ACTIONS(1419), - [anon_sym_static] = ACTIONS(1419), - [anon_sym_struct] = ACTIONS(1419), - [anon_sym_trait] = ACTIONS(1419), - [anon_sym_type] = ACTIONS(1419), - [anon_sym_union] = ACTIONS(1419), - [anon_sym_unsafe] = ACTIONS(1419), - [anon_sym_use] = ACTIONS(1419), - [anon_sym_while] = ACTIONS(1419), - [anon_sym_extern] = ACTIONS(1419), - [anon_sym_yield] = ACTIONS(1419), - [anon_sym_move] = ACTIONS(1419), - [anon_sym_try] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [aux_sym_string_literal_token1] = ACTIONS(1417), - [sym_char_literal] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1419), - [anon_sym_false] = ACTIONS(1419), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1419), - [sym_super] = ACTIONS(1419), - [sym_crate] = ACTIONS(1419), - [sym_metavariable] = ACTIONS(1417), - [sym__raw_string_literal_start] = ACTIONS(1417), - [sym_float_literal] = ACTIONS(1417), + [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(388)] = { - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), + [STATE(402)] = { + [sym_line_comment] = STATE(402), + [sym_block_comment] = STATE(402), + [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(403)] = { + [sym_line_comment] = STATE(403), + [sym_block_comment] = STATE(403), + [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(404)] = { + [sym_line_comment] = STATE(404), + [sym_block_comment] = STATE(404), + [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(405)] = { + [sym_line_comment] = STATE(405), + [sym_block_comment] = STATE(405), [ts_builtin_sym_end] = ACTIONS(1051), [sym_identifier] = ACTIONS(1049), [anon_sym_SEMI] = ACTIONS(1051), @@ -60904,2095 +62702,225 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1051), [sym_float_literal] = ACTIONS(1051), }, - [STATE(389)] = { - [sym_line_comment] = STATE(389), - [sym_block_comment] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(1421), - [sym_identifier] = ACTIONS(1423), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_macro_rules_BANG] = ACTIONS(1421), - [anon_sym_LPAREN] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_RBRACE] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_QMARK] = ACTIONS(1421), - [anon_sym_u8] = ACTIONS(1423), - [anon_sym_i8] = ACTIONS(1423), - [anon_sym_u16] = ACTIONS(1423), - [anon_sym_i16] = ACTIONS(1423), - [anon_sym_u32] = ACTIONS(1423), - [anon_sym_i32] = ACTIONS(1423), - [anon_sym_u64] = ACTIONS(1423), - [anon_sym_i64] = ACTIONS(1423), - [anon_sym_u128] = ACTIONS(1423), - [anon_sym_i128] = ACTIONS(1423), - [anon_sym_isize] = ACTIONS(1423), - [anon_sym_usize] = ACTIONS(1423), - [anon_sym_f32] = ACTIONS(1423), - [anon_sym_f64] = ACTIONS(1423), - [anon_sym_bool] = ACTIONS(1423), - [anon_sym_str] = ACTIONS(1423), - [anon_sym_char] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1423), - [anon_sym_PERCENT] = ACTIONS(1423), - [anon_sym_CARET] = ACTIONS(1423), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_AMP_AMP] = ACTIONS(1421), - [anon_sym_PIPE_PIPE] = ACTIONS(1421), - [anon_sym_LT_LT] = ACTIONS(1423), - [anon_sym_GT_GT] = ACTIONS(1423), - [anon_sym_PLUS_EQ] = ACTIONS(1421), - [anon_sym_DASH_EQ] = ACTIONS(1421), - [anon_sym_STAR_EQ] = ACTIONS(1421), - [anon_sym_SLASH_EQ] = ACTIONS(1421), - [anon_sym_PERCENT_EQ] = ACTIONS(1421), - [anon_sym_CARET_EQ] = ACTIONS(1421), - [anon_sym_AMP_EQ] = ACTIONS(1421), - [anon_sym_PIPE_EQ] = ACTIONS(1421), - [anon_sym_LT_LT_EQ] = ACTIONS(1421), - [anon_sym_GT_GT_EQ] = ACTIONS(1421), - [anon_sym_EQ] = ACTIONS(1423), - [anon_sym_EQ_EQ] = ACTIONS(1421), - [anon_sym_BANG_EQ] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1423), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1421), - [anon_sym_DOT] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1421), - [anon_sym_POUND] = ACTIONS(1421), - [anon_sym_SQUOTE] = ACTIONS(1423), - [anon_sym_as] = ACTIONS(1423), - [anon_sym_async] = ACTIONS(1423), - [anon_sym_break] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [anon_sym_continue] = ACTIONS(1423), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_enum] = ACTIONS(1423), - [anon_sym_fn] = ACTIONS(1423), - [anon_sym_for] = ACTIONS(1423), - [anon_sym_gen] = ACTIONS(1423), - [anon_sym_if] = ACTIONS(1423), - [anon_sym_impl] = ACTIONS(1423), - [anon_sym_let] = ACTIONS(1423), - [anon_sym_loop] = ACTIONS(1423), - [anon_sym_match] = ACTIONS(1423), - [anon_sym_mod] = ACTIONS(1423), - [anon_sym_pub] = ACTIONS(1423), - [anon_sym_return] = ACTIONS(1423), - [anon_sym_static] = ACTIONS(1423), - [anon_sym_struct] = ACTIONS(1423), - [anon_sym_trait] = ACTIONS(1423), - [anon_sym_type] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1423), - [anon_sym_unsafe] = ACTIONS(1423), - [anon_sym_use] = ACTIONS(1423), - [anon_sym_while] = ACTIONS(1423), - [anon_sym_extern] = ACTIONS(1423), - [anon_sym_yield] = ACTIONS(1423), - [anon_sym_move] = ACTIONS(1423), - [anon_sym_try] = ACTIONS(1423), - [sym_integer_literal] = ACTIONS(1421), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1421), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1423), - [sym_super] = ACTIONS(1423), - [sym_crate] = ACTIONS(1423), - [sym_metavariable] = ACTIONS(1421), - [sym__raw_string_literal_start] = ACTIONS(1421), - [sym_float_literal] = ACTIONS(1421), - }, - [STATE(390)] = { - [sym_line_comment] = STATE(390), - [sym_block_comment] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(1425), - [sym_identifier] = ACTIONS(1427), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_macro_rules_BANG] = ACTIONS(1425), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_RBRACE] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_QMARK] = ACTIONS(1425), - [anon_sym_u8] = ACTIONS(1427), - [anon_sym_i8] = ACTIONS(1427), - [anon_sym_u16] = ACTIONS(1427), - [anon_sym_i16] = ACTIONS(1427), - [anon_sym_u32] = ACTIONS(1427), - [anon_sym_i32] = ACTIONS(1427), - [anon_sym_u64] = ACTIONS(1427), - [anon_sym_i64] = ACTIONS(1427), - [anon_sym_u128] = ACTIONS(1427), - [anon_sym_i128] = ACTIONS(1427), - [anon_sym_isize] = ACTIONS(1427), - [anon_sym_usize] = ACTIONS(1427), - [anon_sym_f32] = ACTIONS(1427), - [anon_sym_f64] = ACTIONS(1427), - [anon_sym_bool] = ACTIONS(1427), - [anon_sym_str] = ACTIONS(1427), - [anon_sym_char] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1427), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_CARET] = ACTIONS(1427), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1425), - [anon_sym_PIPE_PIPE] = ACTIONS(1425), - [anon_sym_LT_LT] = ACTIONS(1427), - [anon_sym_GT_GT] = ACTIONS(1427), - [anon_sym_PLUS_EQ] = ACTIONS(1425), - [anon_sym_DASH_EQ] = ACTIONS(1425), - [anon_sym_STAR_EQ] = ACTIONS(1425), - [anon_sym_SLASH_EQ] = ACTIONS(1425), - [anon_sym_PERCENT_EQ] = ACTIONS(1425), - [anon_sym_CARET_EQ] = ACTIONS(1425), - [anon_sym_AMP_EQ] = ACTIONS(1425), - [anon_sym_PIPE_EQ] = ACTIONS(1425), - [anon_sym_LT_LT_EQ] = ACTIONS(1425), - [anon_sym_GT_GT_EQ] = ACTIONS(1425), - [anon_sym_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1425), - [anon_sym_BANG_EQ] = ACTIONS(1425), - [anon_sym_GT] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1425), - [anon_sym_LT_EQ] = ACTIONS(1425), - [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1425), - [anon_sym_POUND] = ACTIONS(1425), - [anon_sym_SQUOTE] = ACTIONS(1427), - [anon_sym_as] = ACTIONS(1427), - [anon_sym_async] = ACTIONS(1427), - [anon_sym_break] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_continue] = ACTIONS(1427), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_enum] = ACTIONS(1427), - [anon_sym_fn] = ACTIONS(1427), - [anon_sym_for] = ACTIONS(1427), - [anon_sym_gen] = ACTIONS(1427), - [anon_sym_if] = ACTIONS(1427), - [anon_sym_impl] = ACTIONS(1427), - [anon_sym_let] = ACTIONS(1427), - [anon_sym_loop] = ACTIONS(1427), - [anon_sym_match] = ACTIONS(1427), - [anon_sym_mod] = ACTIONS(1427), - [anon_sym_pub] = ACTIONS(1427), - [anon_sym_return] = ACTIONS(1427), - [anon_sym_static] = ACTIONS(1427), - [anon_sym_struct] = ACTIONS(1427), - [anon_sym_trait] = ACTIONS(1427), - [anon_sym_type] = ACTIONS(1427), - [anon_sym_union] = ACTIONS(1427), - [anon_sym_unsafe] = ACTIONS(1427), - [anon_sym_use] = ACTIONS(1427), - [anon_sym_while] = ACTIONS(1427), - [anon_sym_extern] = ACTIONS(1427), - [anon_sym_yield] = ACTIONS(1427), - [anon_sym_move] = ACTIONS(1427), - [anon_sym_try] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1425), - [aux_sym_string_literal_token1] = ACTIONS(1425), - [sym_char_literal] = ACTIONS(1425), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_crate] = ACTIONS(1427), - [sym_metavariable] = ACTIONS(1425), - [sym__raw_string_literal_start] = ACTIONS(1425), - [sym_float_literal] = ACTIONS(1425), - }, - [STATE(391)] = { - [sym_line_comment] = STATE(391), - [sym_block_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1429), - [sym_identifier] = ACTIONS(1431), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_macro_rules_BANG] = ACTIONS(1429), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_LBRACK] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1429), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_QMARK] = ACTIONS(1429), - [anon_sym_u8] = ACTIONS(1431), - [anon_sym_i8] = ACTIONS(1431), - [anon_sym_u16] = ACTIONS(1431), - [anon_sym_i16] = ACTIONS(1431), - [anon_sym_u32] = ACTIONS(1431), - [anon_sym_i32] = ACTIONS(1431), - [anon_sym_u64] = ACTIONS(1431), - [anon_sym_i64] = ACTIONS(1431), - [anon_sym_u128] = ACTIONS(1431), - [anon_sym_i128] = ACTIONS(1431), - [anon_sym_isize] = ACTIONS(1431), - [anon_sym_usize] = ACTIONS(1431), - [anon_sym_f32] = ACTIONS(1431), - [anon_sym_f64] = ACTIONS(1431), - [anon_sym_bool] = ACTIONS(1431), - [anon_sym_str] = ACTIONS(1431), - [anon_sym_char] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1431), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1429), - [anon_sym_PIPE_PIPE] = ACTIONS(1429), - [anon_sym_LT_LT] = ACTIONS(1431), - [anon_sym_GT_GT] = ACTIONS(1431), - [anon_sym_PLUS_EQ] = ACTIONS(1429), - [anon_sym_DASH_EQ] = ACTIONS(1429), - [anon_sym_STAR_EQ] = ACTIONS(1429), - [anon_sym_SLASH_EQ] = ACTIONS(1429), - [anon_sym_PERCENT_EQ] = ACTIONS(1429), - [anon_sym_CARET_EQ] = ACTIONS(1429), - [anon_sym_AMP_EQ] = ACTIONS(1429), - [anon_sym_PIPE_EQ] = ACTIONS(1429), - [anon_sym_LT_LT_EQ] = ACTIONS(1429), - [anon_sym_GT_GT_EQ] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT_EQ] = ACTIONS(1429), - [anon_sym_LT_EQ] = ACTIONS(1429), - [anon_sym_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1429), - [anon_sym_COLON_COLON] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(1429), - [anon_sym_SQUOTE] = ACTIONS(1431), - [anon_sym_as] = ACTIONS(1431), - [anon_sym_async] = ACTIONS(1431), - [anon_sym_break] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_continue] = ACTIONS(1431), - [anon_sym_default] = ACTIONS(1431), - [anon_sym_enum] = ACTIONS(1431), - [anon_sym_fn] = ACTIONS(1431), - [anon_sym_for] = ACTIONS(1431), - [anon_sym_gen] = ACTIONS(1431), - [anon_sym_if] = ACTIONS(1431), - [anon_sym_impl] = ACTIONS(1431), - [anon_sym_let] = ACTIONS(1431), - [anon_sym_loop] = ACTIONS(1431), - [anon_sym_match] = ACTIONS(1431), - [anon_sym_mod] = ACTIONS(1431), - [anon_sym_pub] = ACTIONS(1431), - [anon_sym_return] = ACTIONS(1431), - [anon_sym_static] = ACTIONS(1431), - [anon_sym_struct] = ACTIONS(1431), - [anon_sym_trait] = ACTIONS(1431), - [anon_sym_type] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1431), - [anon_sym_unsafe] = ACTIONS(1431), - [anon_sym_use] = ACTIONS(1431), - [anon_sym_while] = ACTIONS(1431), - [anon_sym_extern] = ACTIONS(1431), - [anon_sym_yield] = ACTIONS(1431), - [anon_sym_move] = ACTIONS(1431), - [anon_sym_try] = ACTIONS(1431), - [sym_integer_literal] = ACTIONS(1429), - [aux_sym_string_literal_token1] = ACTIONS(1429), - [sym_char_literal] = ACTIONS(1429), - [anon_sym_true] = ACTIONS(1431), - [anon_sym_false] = ACTIONS(1431), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1431), - [sym_super] = ACTIONS(1431), - [sym_crate] = ACTIONS(1431), - [sym_metavariable] = ACTIONS(1429), - [sym__raw_string_literal_start] = ACTIONS(1429), - [sym_float_literal] = ACTIONS(1429), - }, - [STATE(392)] = { - [sym_line_comment] = STATE(392), - [sym_block_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1433), - [sym_identifier] = ACTIONS(1435), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_macro_rules_BANG] = ACTIONS(1433), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1433), - [anon_sym_u8] = ACTIONS(1435), - [anon_sym_i8] = ACTIONS(1435), - [anon_sym_u16] = ACTIONS(1435), - [anon_sym_i16] = ACTIONS(1435), - [anon_sym_u32] = ACTIONS(1435), - [anon_sym_i32] = ACTIONS(1435), - [anon_sym_u64] = ACTIONS(1435), - [anon_sym_i64] = ACTIONS(1435), - [anon_sym_u128] = ACTIONS(1435), - [anon_sym_i128] = ACTIONS(1435), - [anon_sym_isize] = ACTIONS(1435), - [anon_sym_usize] = ACTIONS(1435), - [anon_sym_f32] = ACTIONS(1435), - [anon_sym_f64] = ACTIONS(1435), - [anon_sym_bool] = ACTIONS(1435), - [anon_sym_str] = ACTIONS(1435), - [anon_sym_char] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1435), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1433), - [anon_sym_PIPE_PIPE] = ACTIONS(1433), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1435), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_CARET_EQ] = ACTIONS(1433), - [anon_sym_AMP_EQ] = ACTIONS(1433), - [anon_sym_PIPE_EQ] = ACTIONS(1433), - [anon_sym_LT_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_GT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1433), - [anon_sym_BANG_EQ] = ACTIONS(1433), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym_DOT] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), - [anon_sym_COLON_COLON] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1433), - [anon_sym_SQUOTE] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_async] = ACTIONS(1435), - [anon_sym_break] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_continue] = ACTIONS(1435), - [anon_sym_default] = ACTIONS(1435), - [anon_sym_enum] = ACTIONS(1435), - [anon_sym_fn] = ACTIONS(1435), - [anon_sym_for] = ACTIONS(1435), - [anon_sym_gen] = ACTIONS(1435), - [anon_sym_if] = ACTIONS(1435), - [anon_sym_impl] = ACTIONS(1435), - [anon_sym_let] = ACTIONS(1435), - [anon_sym_loop] = ACTIONS(1435), - [anon_sym_match] = ACTIONS(1435), - [anon_sym_mod] = ACTIONS(1435), - [anon_sym_pub] = ACTIONS(1435), - [anon_sym_return] = ACTIONS(1435), - [anon_sym_static] = ACTIONS(1435), - [anon_sym_struct] = ACTIONS(1435), - [anon_sym_trait] = ACTIONS(1435), - [anon_sym_type] = ACTIONS(1435), - [anon_sym_union] = ACTIONS(1435), - [anon_sym_unsafe] = ACTIONS(1435), - [anon_sym_use] = ACTIONS(1435), - [anon_sym_while] = ACTIONS(1435), - [anon_sym_extern] = ACTIONS(1435), - [anon_sym_yield] = ACTIONS(1435), - [anon_sym_move] = ACTIONS(1435), - [anon_sym_try] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1433), - [aux_sym_string_literal_token1] = ACTIONS(1433), - [sym_char_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(1435), - [anon_sym_false] = ACTIONS(1435), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1435), - [sym_super] = ACTIONS(1435), - [sym_crate] = ACTIONS(1435), - [sym_metavariable] = ACTIONS(1433), - [sym__raw_string_literal_start] = ACTIONS(1433), - [sym_float_literal] = ACTIONS(1433), - }, - [STATE(393)] = { - [sym_line_comment] = STATE(393), - [sym_block_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(1437), - [sym_identifier] = ACTIONS(1439), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_macro_rules_BANG] = ACTIONS(1437), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_u8] = ACTIONS(1439), - [anon_sym_i8] = ACTIONS(1439), - [anon_sym_u16] = ACTIONS(1439), - [anon_sym_i16] = ACTIONS(1439), - [anon_sym_u32] = ACTIONS(1439), - [anon_sym_i32] = ACTIONS(1439), - [anon_sym_u64] = ACTIONS(1439), - [anon_sym_i64] = ACTIONS(1439), - [anon_sym_u128] = ACTIONS(1439), - [anon_sym_i128] = ACTIONS(1439), - [anon_sym_isize] = ACTIONS(1439), - [anon_sym_usize] = ACTIONS(1439), - [anon_sym_f32] = ACTIONS(1439), - [anon_sym_f64] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_str] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_PERCENT] = ACTIONS(1439), - [anon_sym_CARET] = ACTIONS(1439), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PIPE] = ACTIONS(1439), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_PIPE_PIPE] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_PLUS_EQ] = ACTIONS(1437), - [anon_sym_DASH_EQ] = ACTIONS(1437), - [anon_sym_STAR_EQ] = ACTIONS(1437), - [anon_sym_SLASH_EQ] = ACTIONS(1437), - [anon_sym_PERCENT_EQ] = ACTIONS(1437), - [anon_sym_CARET_EQ] = ACTIONS(1437), - [anon_sym_AMP_EQ] = ACTIONS(1437), - [anon_sym_PIPE_EQ] = ACTIONS(1437), - [anon_sym_LT_LT_EQ] = ACTIONS(1437), - [anon_sym_GT_GT_EQ] = ACTIONS(1437), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_EQ_EQ] = ACTIONS(1437), - [anon_sym_BANG_EQ] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1439), - [anon_sym_GT_EQ] = ACTIONS(1437), - [anon_sym_LT_EQ] = ACTIONS(1437), - [anon_sym_DOT] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), - [anon_sym_COLON_COLON] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1437), - [anon_sym_SQUOTE] = ACTIONS(1439), - [anon_sym_as] = ACTIONS(1439), - [anon_sym_async] = ACTIONS(1439), - [anon_sym_break] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_continue] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1439), - [anon_sym_enum] = ACTIONS(1439), - [anon_sym_fn] = ACTIONS(1439), - [anon_sym_for] = ACTIONS(1439), - [anon_sym_gen] = ACTIONS(1439), - [anon_sym_if] = ACTIONS(1439), - [anon_sym_impl] = ACTIONS(1439), - [anon_sym_let] = ACTIONS(1439), - [anon_sym_loop] = ACTIONS(1439), - [anon_sym_match] = ACTIONS(1439), - [anon_sym_mod] = ACTIONS(1439), - [anon_sym_pub] = ACTIONS(1439), - [anon_sym_return] = ACTIONS(1439), - [anon_sym_static] = ACTIONS(1439), - [anon_sym_struct] = ACTIONS(1439), - [anon_sym_trait] = ACTIONS(1439), - [anon_sym_type] = ACTIONS(1439), - [anon_sym_union] = ACTIONS(1439), - [anon_sym_unsafe] = ACTIONS(1439), - [anon_sym_use] = ACTIONS(1439), - [anon_sym_while] = ACTIONS(1439), - [anon_sym_extern] = ACTIONS(1439), - [anon_sym_yield] = ACTIONS(1439), - [anon_sym_move] = ACTIONS(1439), - [anon_sym_try] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1437), - [aux_sym_string_literal_token1] = ACTIONS(1437), - [sym_char_literal] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1439), - [sym_super] = ACTIONS(1439), - [sym_crate] = ACTIONS(1439), - [sym_metavariable] = ACTIONS(1437), - [sym__raw_string_literal_start] = ACTIONS(1437), - [sym_float_literal] = ACTIONS(1437), - }, - [STATE(394)] = { - [sym_line_comment] = STATE(394), - [sym_block_comment] = STATE(394), - [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(395)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(3228), - [sym_variadic_parameter] = STATE(3228), - [sym_parameter] = STATE(3228), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2903), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(395), - [sym_block_comment] = STATE(395), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(396)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(3228), - [sym_variadic_parameter] = STATE(3228), - [sym_parameter] = STATE(3228), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2903), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(396), - [sym_block_comment] = STATE(396), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(397)] = { - [sym_line_comment] = STATE(397), - [sym_block_comment] = STATE(397), - [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(398)] = { - [sym_line_comment] = STATE(398), - [sym_block_comment] = STATE(398), - [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(399)] = { - [sym_line_comment] = STATE(399), - [sym_block_comment] = STATE(399), - [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(400)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(3228), - [sym_variadic_parameter] = STATE(3228), - [sym_parameter] = STATE(3228), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2903), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(400), - [sym_block_comment] = STATE(400), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(401)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(3228), - [sym_variadic_parameter] = STATE(3228), - [sym_parameter] = STATE(3228), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2903), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(401), - [sym_block_comment] = STATE(401), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(402)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(3228), - [sym_variadic_parameter] = STATE(3228), - [sym_parameter] = STATE(3228), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2903), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(402), - [sym_block_comment] = STATE(402), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(403)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(3228), - [sym_variadic_parameter] = STATE(3228), - [sym_parameter] = STATE(3228), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2903), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(403), - [sym_block_comment] = STATE(403), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(404)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(3228), - [sym_variadic_parameter] = STATE(3228), - [sym_parameter] = STATE(3228), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2903), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(404), - [sym_block_comment] = STATE(404), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_RPAREN] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(405)] = { - [sym_line_comment] = STATE(405), - [sym_block_comment] = STATE(405), - [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(406)] = { [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [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), + [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(407)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3242), + [sym_variadic_parameter] = STATE(3242), + [sym_parameter] = STATE(3242), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [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), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(408)] = { [sym_line_comment] = STATE(408), @@ -63005,9 +62933,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1483), [anon_sym_LBRACE] = ACTIONS(1483), [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1487), + [anon_sym_PLUS] = ACTIONS(1485), [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(1489), + [anon_sym_QMARK] = ACTIONS(1483), [anon_sym_u8] = ACTIONS(1485), [anon_sym_i8] = ACTIONS(1485), [anon_sym_u16] = ACTIONS(1485), @@ -63026,41 +62954,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1485), [anon_sym_char] = ACTIONS(1485), [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), + [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(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1489), - [anon_sym_DASH_EQ] = ACTIONS(1489), - [anon_sym_STAR_EQ] = ACTIONS(1489), - [anon_sym_SLASH_EQ] = ACTIONS(1489), - [anon_sym_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_CARET_EQ] = ACTIONS(1489), - [anon_sym_AMP_EQ] = ACTIONS(1489), - [anon_sym_PIPE_EQ] = ACTIONS(1489), - [anon_sym_LT_LT_EQ] = ACTIONS(1489), - [anon_sym_GT_GT_EQ] = ACTIONS(1489), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1487), + [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(1489), - [anon_sym_LT_EQ] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(1487), + [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(1489), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [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(1487), + [anon_sym_as] = ACTIONS(1485), [anon_sym_async] = ACTIONS(1485), [anon_sym_break] = ACTIONS(1485), [anon_sym_const] = ACTIONS(1485), @@ -63107,6 +63035,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(409)] = { [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), + [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(410)] = { + [sym_line_comment] = STATE(410), + [sym_block_comment] = STATE(410), [ts_builtin_sym_end] = ACTIONS(1491), [sym_identifier] = ACTIONS(1493), [anon_sym_SEMI] = ACTIONS(1491), @@ -63214,9 +63252,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(411)] = { + [sym_line_comment] = STATE(411), + [sym_block_comment] = STATE(411), [ts_builtin_sym_end] = ACTIONS(1495), [sym_identifier] = ACTIONS(1497), [anon_sym_SEMI] = ACTIONS(1495), @@ -63324,116 +63362,6 @@ 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), - [ts_builtin_sym_end] = ACTIONS(1047), - [sym_identifier] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_macro_rules_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), - [anon_sym_u64] = ACTIONS(1045), - [anon_sym_i64] = ACTIONS(1045), - [anon_sym_u128] = ACTIONS(1045), - [anon_sym_i128] = ACTIONS(1045), - [anon_sym_isize] = ACTIONS(1045), - [anon_sym_usize] = ACTIONS(1045), - [anon_sym_f32] = ACTIONS(1045), - [anon_sym_f64] = ACTIONS(1045), - [anon_sym_bool] = ACTIONS(1045), - [anon_sym_str] = ACTIONS(1045), - [anon_sym_char] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_PERCENT] = ACTIONS(1045), - [anon_sym_CARET] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_PIPE] = ACTIONS(1045), - [anon_sym_AMP_AMP] = ACTIONS(1047), - [anon_sym_PIPE_PIPE] = ACTIONS(1047), - [anon_sym_LT_LT] = ACTIONS(1045), - [anon_sym_GT_GT] = ACTIONS(1045), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_EQ] = ACTIONS(1045), - [anon_sym_EQ_EQ] = ACTIONS(1047), - [anon_sym_BANG_EQ] = ACTIONS(1047), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1047), - [anon_sym_LT_EQ] = ACTIONS(1047), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_as] = ACTIONS(1045), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_const] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [anon_sym_fn] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_gen] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_impl] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(1045), - [anon_sym_loop] = ACTIONS(1045), - [anon_sym_match] = ACTIONS(1045), - [anon_sym_mod] = ACTIONS(1045), - [anon_sym_pub] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1045), - [anon_sym_trait] = ACTIONS(1045), - [anon_sym_type] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1045), - [anon_sym_unsafe] = ACTIONS(1045), - [anon_sym_use] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_extern] = ACTIONS(1045), - [anon_sym_yield] = ACTIONS(1045), - [anon_sym_move] = ACTIONS(1045), - [anon_sym_try] = ACTIONS(1045), - [sym_integer_literal] = ACTIONS(1047), - [aux_sym_string_literal_token1] = ACTIONS(1047), - [sym_char_literal] = ACTIONS(1047), - [anon_sym_true] = ACTIONS(1045), - [anon_sym_false] = ACTIONS(1045), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), - [sym_crate] = ACTIONS(1045), - [sym_metavariable] = ACTIONS(1047), - [sym__raw_string_literal_start] = ACTIONS(1047), - [sym_float_literal] = ACTIONS(1047), - }, [STATE(412)] = { [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), @@ -63659,15 +63587,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_block_comment] = STATE(414), [ts_builtin_sym_end] = ACTIONS(1507), [sym_identifier] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1489), + [anon_sym_SEMI] = ACTIONS(1507), [anon_sym_macro_rules_BANG] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1507), [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1489), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_QMARK] = ACTIONS(1507), [anon_sym_u8] = ACTIONS(1509), [anon_sym_i8] = ACTIONS(1509), [anon_sym_u16] = ACTIONS(1509), @@ -63685,42 +63613,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1509), [anon_sym_str] = ACTIONS(1509), [anon_sym_char] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PERCENT] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1489), - [anon_sym_DASH_EQ] = ACTIONS(1489), - [anon_sym_STAR_EQ] = ACTIONS(1489), - [anon_sym_SLASH_EQ] = ACTIONS(1489), - [anon_sym_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_CARET_EQ] = ACTIONS(1489), - [anon_sym_AMP_EQ] = ACTIONS(1489), - [anon_sym_PIPE_EQ] = ACTIONS(1489), - [anon_sym_LT_LT_EQ] = ACTIONS(1489), - [anon_sym_GT_GT_EQ] = ACTIONS(1489), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_GT_EQ] = ACTIONS(1489), - [anon_sym_LT_EQ] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1509), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), [anon_sym_COLON_COLON] = ACTIONS(1507), [anon_sym_POUND] = ACTIONS(1507), [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_as] = ACTIONS(1487), + [anon_sym_as] = ACTIONS(1509), [anon_sym_async] = ACTIONS(1509), [anon_sym_break] = ACTIONS(1509), [anon_sym_const] = ACTIONS(1509), @@ -63765,1029 +63693,1029 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1507), }, [STATE(415)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2731), - [sym_bracketed_type] = STATE(3577), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3319), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2428), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym_closure_expression] = STATE(2891), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2625), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2556), + [sym_bracketed_type] = STATE(3536), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2414), + [sym_scoped_identifier] = STATE(2122), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym_closure_expression] = STATE(2880), + [sym_closure_parameters] = STATE(226), + [sym__pattern] = STATE(2569), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), [anon_sym_RPAREN] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1335), - [anon_sym_i8] = ACTIONS(1335), - [anon_sym_u16] = ACTIONS(1335), - [anon_sym_i16] = ACTIONS(1335), - [anon_sym_u32] = ACTIONS(1335), - [anon_sym_i32] = ACTIONS(1335), - [anon_sym_u64] = ACTIONS(1335), - [anon_sym_i64] = ACTIONS(1335), - [anon_sym_u128] = ACTIONS(1335), - [anon_sym_i128] = ACTIONS(1335), - [anon_sym_isize] = ACTIONS(1335), - [anon_sym_usize] = ACTIONS(1335), - [anon_sym_f32] = ACTIONS(1335), - [anon_sym_f64] = ACTIONS(1335), - [anon_sym_bool] = ACTIONS(1335), - [anon_sym_str] = ACTIONS(1335), - [anon_sym_char] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1273), + [anon_sym_i8] = ACTIONS(1273), + [anon_sym_u16] = ACTIONS(1273), + [anon_sym_i16] = ACTIONS(1273), + [anon_sym_u32] = ACTIONS(1273), + [anon_sym_i32] = ACTIONS(1273), + [anon_sym_u64] = ACTIONS(1273), + [anon_sym_i64] = ACTIONS(1273), + [anon_sym_u128] = ACTIONS(1273), + [anon_sym_i128] = ACTIONS(1273), + [anon_sym_isize] = ACTIONS(1273), + [anon_sym_usize] = ACTIONS(1273), + [anon_sym_f32] = ACTIONS(1273), + [anon_sym_f64] = ACTIONS(1273), + [anon_sym_bool] = ACTIONS(1273), + [anon_sym_str] = ACTIONS(1273), + [anon_sym_char] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1513), [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1347), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_COLON_COLON] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1351), - [sym_super] = ACTIONS(1351), - [sym_crate] = ACTIONS(1351), - [sym_metavariable] = ACTIONS(1353), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(1327), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(416)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2731), - [sym_bracketed_type] = STATE(3577), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3319), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2428), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym_closure_expression] = STATE(2891), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2625), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2556), + [sym_bracketed_type] = STATE(3536), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2414), + [sym_scoped_identifier] = STATE(2122), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym_closure_expression] = STATE(2880), + [sym_closure_parameters] = STATE(226), + [sym__pattern] = STATE(2569), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), [anon_sym_RPAREN] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1335), - [anon_sym_i8] = ACTIONS(1335), - [anon_sym_u16] = ACTIONS(1335), - [anon_sym_i16] = ACTIONS(1335), - [anon_sym_u32] = ACTIONS(1335), - [anon_sym_i32] = ACTIONS(1335), - [anon_sym_u64] = ACTIONS(1335), - [anon_sym_i64] = ACTIONS(1335), - [anon_sym_u128] = ACTIONS(1335), - [anon_sym_i128] = ACTIONS(1335), - [anon_sym_isize] = ACTIONS(1335), - [anon_sym_usize] = ACTIONS(1335), - [anon_sym_f32] = ACTIONS(1335), - [anon_sym_f64] = ACTIONS(1335), - [anon_sym_bool] = ACTIONS(1335), - [anon_sym_str] = ACTIONS(1335), - [anon_sym_char] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1273), + [anon_sym_i8] = ACTIONS(1273), + [anon_sym_u16] = ACTIONS(1273), + [anon_sym_i16] = ACTIONS(1273), + [anon_sym_u32] = ACTIONS(1273), + [anon_sym_i32] = ACTIONS(1273), + [anon_sym_u64] = ACTIONS(1273), + [anon_sym_i64] = ACTIONS(1273), + [anon_sym_u128] = ACTIONS(1273), + [anon_sym_i128] = ACTIONS(1273), + [anon_sym_isize] = ACTIONS(1273), + [anon_sym_usize] = ACTIONS(1273), + [anon_sym_f32] = ACTIONS(1273), + [anon_sym_f64] = ACTIONS(1273), + [anon_sym_bool] = ACTIONS(1273), + [anon_sym_str] = ACTIONS(1273), + [anon_sym_char] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1513), [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1347), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_COLON_COLON] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1351), - [sym_super] = ACTIONS(1351), - [sym_crate] = ACTIONS(1351), - [sym_metavariable] = ACTIONS(1353), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(1327), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(417)] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(3228), - [sym_variadic_parameter] = STATE(3228), - [sym_parameter] = STATE(3228), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2903), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_POUND] = ACTIONS(1289), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_identifier] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1421), + [anon_sym_macro_rules_BANG] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1421), + [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(1419), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1419), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_LT_LT] = ACTIONS(1419), + [anon_sym_GT_GT] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1421), + [anon_sym_DASH_EQ] = ACTIONS(1421), + [anon_sym_STAR_EQ] = ACTIONS(1421), + [anon_sym_SLASH_EQ] = ACTIONS(1421), + [anon_sym_PERCENT_EQ] = ACTIONS(1421), + [anon_sym_CARET_EQ] = ACTIONS(1421), + [anon_sym_AMP_EQ] = ACTIONS(1421), + [anon_sym_PIPE_EQ] = ACTIONS(1421), + [anon_sym_LT_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_EQ] = ACTIONS(1421), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), + [anon_sym_COLON_COLON] = ACTIONS(1461), + [anon_sym_POUND] = ACTIONS(1461), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_as] = ACTIONS(1419), + [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(418)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2731), - [sym_bracketed_type] = STATE(3577), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3319), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2428), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym_closure_expression] = STATE(2891), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2625), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2556), + [sym_bracketed_type] = STATE(3536), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2414), + [sym_scoped_identifier] = STATE(2122), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym_closure_expression] = STATE(2880), + [sym_closure_parameters] = STATE(226), + [sym__pattern] = STATE(2569), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1331), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), [anon_sym_RPAREN] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1335), - [anon_sym_i8] = ACTIONS(1335), - [anon_sym_u16] = ACTIONS(1335), - [anon_sym_i16] = ACTIONS(1335), - [anon_sym_u32] = ACTIONS(1335), - [anon_sym_i32] = ACTIONS(1335), - [anon_sym_u64] = ACTIONS(1335), - [anon_sym_i64] = ACTIONS(1335), - [anon_sym_u128] = ACTIONS(1335), - [anon_sym_i128] = ACTIONS(1335), - [anon_sym_isize] = ACTIONS(1335), - [anon_sym_usize] = ACTIONS(1335), - [anon_sym_f32] = ACTIONS(1335), - [anon_sym_f64] = ACTIONS(1335), - [anon_sym_bool] = ACTIONS(1335), - [anon_sym_str] = ACTIONS(1335), - [anon_sym_char] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1273), + [anon_sym_i8] = ACTIONS(1273), + [anon_sym_u16] = ACTIONS(1273), + [anon_sym_i16] = ACTIONS(1273), + [anon_sym_u32] = ACTIONS(1273), + [anon_sym_i32] = ACTIONS(1273), + [anon_sym_u64] = ACTIONS(1273), + [anon_sym_i64] = ACTIONS(1273), + [anon_sym_u128] = ACTIONS(1273), + [anon_sym_i128] = ACTIONS(1273), + [anon_sym_isize] = ACTIONS(1273), + [anon_sym_usize] = ACTIONS(1273), + [anon_sym_f32] = ACTIONS(1273), + [anon_sym_f64] = ACTIONS(1273), + [anon_sym_bool] = ACTIONS(1273), + [anon_sym_str] = ACTIONS(1273), + [anon_sym_char] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1513), [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1347), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_COLON_COLON] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1351), - [sym_super] = ACTIONS(1351), - [sym_crate] = ACTIONS(1351), - [sym_metavariable] = ACTIONS(1353), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(1327), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(419)] = { + [sym_attribute_item] = STATE(420), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3242), + [sym_variadic_parameter] = STATE(3242), + [sym_parameter] = STATE(3242), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2759), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [sym_identifier] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_macro_rules_BANG] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1489), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1489), - [anon_sym_DASH_EQ] = ACTIONS(1489), - [anon_sym_STAR_EQ] = ACTIONS(1489), - [anon_sym_SLASH_EQ] = ACTIONS(1489), - [anon_sym_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_CARET_EQ] = ACTIONS(1489), - [anon_sym_AMP_EQ] = ACTIONS(1489), - [anon_sym_PIPE_EQ] = ACTIONS(1489), - [anon_sym_LT_LT_EQ] = ACTIONS(1489), - [anon_sym_GT_GT_EQ] = ACTIONS(1489), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_GT_EQ] = ACTIONS(1489), - [anon_sym_LT_EQ] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_as] = ACTIONS(1487), - [anon_sym_async] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_gen] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_impl] = ACTIONS(1509), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_loop] = ACTIONS(1509), - [anon_sym_match] = ACTIONS(1509), - [anon_sym_mod] = ACTIONS(1509), - [anon_sym_pub] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_trait] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_unsafe] = ACTIONS(1509), - [anon_sym_use] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_extern] = ACTIONS(1509), - [anon_sym_yield] = ACTIONS(1509), - [anon_sym_move] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1507), - [aux_sym_string_literal_token1] = ACTIONS(1507), - [sym_char_literal] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1397), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_crate] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym__raw_string_literal_start] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(420)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(3089), - [sym_variadic_parameter] = STATE(3089), - [sym_parameter] = STATE(3089), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3020), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(3217), + [sym_variadic_parameter] = STATE(3217), + [sym_parameter] = STATE(3217), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2843), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(421)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(3065), - [sym_variadic_parameter] = STATE(3065), - [sym_parameter] = STATE(3065), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2602), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(2805), + [sym_variadic_parameter] = STATE(2805), + [sym_parameter] = STATE(2805), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2537), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(422)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(2907), - [sym_variadic_parameter] = STATE(2907), - [sym_parameter] = STATE(2907), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2548), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(2901), + [sym_variadic_parameter] = STATE(2901), + [sym_parameter] = STATE(2901), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2613), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(423)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_self_parameter] = STATE(2823), - [sym_variadic_parameter] = STATE(2823), - [sym_parameter] = STATE(2823), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(2965), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3315), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_self_parameter] = STATE(2936), + [sym_variadic_parameter] = STATE(2936), + [sym_parameter] = STATE(2936), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2653), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3005), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3267), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1313), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1321), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1317), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(424)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3034), - [sym_bracketed_type] = STATE(3578), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3322), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2496), - [sym_scoped_identifier] = STATE(2179), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2632), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2847), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3275), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2396), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2638), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1267), [anon_sym_RBRACK] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1547), [anon_sym_i8] = ACTIONS(1547), [anon_sym_u16] = ACTIONS(1547), @@ -64805,93 +64733,711 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1547), [anon_sym_str] = ACTIONS(1547), [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COMMA] = ACTIONS(1551), [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1559), [sym_super] = ACTIONS(1559), [sym_crate] = ACTIONS(1559), [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(425)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2012), - [sym_bracketed_type] = STATE(3578), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(3536), [sym_lifetime] = STATE(841), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3322), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2496), - [sym_scoped_identifier] = STATE(2179), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2119), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2414), + [sym_scoped_identifier] = STATE(2122), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2109), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1273), + [anon_sym_i8] = ACTIONS(1273), + [anon_sym_u16] = ACTIONS(1273), + [anon_sym_i16] = ACTIONS(1273), + [anon_sym_u32] = ACTIONS(1273), + [anon_sym_i32] = ACTIONS(1273), + [anon_sym_u64] = ACTIONS(1273), + [anon_sym_i64] = ACTIONS(1273), + [anon_sym_u128] = ACTIONS(1273), + [anon_sym_i128] = ACTIONS(1273), + [anon_sym_isize] = ACTIONS(1273), + [anon_sym_usize] = ACTIONS(1273), + [anon_sym_f32] = ACTIONS(1273), + [anon_sym_f64] = ACTIONS(1273), + [anon_sym_bool] = ACTIONS(1273), + [anon_sym_str] = ACTIONS(1273), + [anon_sym_char] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1563), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1565), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(426)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1984), + [sym_bracketed_type] = STATE(3536), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2414), + [sym_scoped_identifier] = STATE(2122), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2099), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(426), + [sym_block_comment] = STATE(426), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1273), + [anon_sym_i8] = ACTIONS(1273), + [anon_sym_u16] = ACTIONS(1273), + [anon_sym_i16] = ACTIONS(1273), + [anon_sym_u32] = ACTIONS(1273), + [anon_sym_i32] = ACTIONS(1273), + [anon_sym_u64] = ACTIONS(1273), + [anon_sym_i64] = ACTIONS(1273), + [anon_sym_u128] = ACTIONS(1273), + [anon_sym_i128] = ACTIONS(1273), + [anon_sym_isize] = ACTIONS(1273), + [anon_sym_usize] = ACTIONS(1273), + [anon_sym_f32] = ACTIONS(1273), + [anon_sym_f64] = ACTIONS(1273), + [anon_sym_bool] = ACTIONS(1273), + [anon_sym_str] = ACTIONS(1273), + [anon_sym_char] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1567), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(427)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1984), + [sym_bracketed_type] = STATE(3536), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2414), + [sym_scoped_identifier] = STATE(2122), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2099), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(427), + [sym_block_comment] = STATE(427), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1273), + [anon_sym_i8] = ACTIONS(1273), + [anon_sym_u16] = ACTIONS(1273), + [anon_sym_i16] = ACTIONS(1273), + [anon_sym_u32] = ACTIONS(1273), + [anon_sym_i32] = ACTIONS(1273), + [anon_sym_u64] = ACTIONS(1273), + [anon_sym_i64] = ACTIONS(1273), + [anon_sym_u128] = ACTIONS(1273), + [anon_sym_i128] = ACTIONS(1273), + [anon_sym_isize] = ACTIONS(1273), + [anon_sym_usize] = ACTIONS(1273), + [anon_sym_f32] = ACTIONS(1273), + [anon_sym_f64] = ACTIONS(1273), + [anon_sym_bool] = ACTIONS(1273), + [anon_sym_str] = ACTIONS(1273), + [anon_sym_char] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1327), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(428)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(845), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2109), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(428), + [sym_block_comment] = STATE(428), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1571), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1359), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(429)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1984), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2099), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(429), + [sym_block_comment] = STATE(429), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1359), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(430)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(3536), + [sym_lifetime] = STATE(845), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3031), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2414), + [sym_scoped_identifier] = STATE(2122), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2109), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(430), + [sym_block_comment] = STATE(430), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1273), + [anon_sym_i8] = ACTIONS(1273), + [anon_sym_u16] = ACTIONS(1273), + [anon_sym_i16] = ACTIONS(1273), + [anon_sym_u32] = ACTIONS(1273), + [anon_sym_i32] = ACTIONS(1273), + [anon_sym_u64] = ACTIONS(1273), + [anon_sym_i64] = ACTIONS(1273), + [anon_sym_u128] = ACTIONS(1273), + [anon_sym_i128] = ACTIONS(1273), + [anon_sym_isize] = ACTIONS(1273), + [anon_sym_usize] = ACTIONS(1273), + [anon_sym_f32] = ACTIONS(1273), + [anon_sym_f64] = ACTIONS(1273), + [anon_sym_bool] = ACTIONS(1273), + [anon_sym_str] = ACTIONS(1273), + [anon_sym_char] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1291), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1307), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1307), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1573), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1327), + [sym_super] = ACTIONS(1327), + [sym_crate] = ACTIONS(1327), + [sym_metavariable] = ACTIONS(1329), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(431)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1984), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3275), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2396), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2099), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(431), + [sym_block_comment] = STATE(431), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1547), [anon_sym_i8] = ACTIONS(1547), [anon_sym_u16] = ACTIONS(1547), @@ -64909,195 +65455,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1547), [anon_sym_str] = ACTIONS(1547), [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1563), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1559), [sym_super] = ACTIONS(1559), [sym_crate] = ACTIONS(1559), [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, - [STATE(426)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1994), - [sym_bracketed_type] = STATE(3577), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3319), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2428), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2146), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [STATE(432)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(841), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2109), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(426), - [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1335), - [anon_sym_i8] = ACTIONS(1335), - [anon_sym_u16] = ACTIONS(1335), - [anon_sym_i16] = ACTIONS(1335), - [anon_sym_u32] = ACTIONS(1335), - [anon_sym_i32] = ACTIONS(1335), - [anon_sym_u64] = ACTIONS(1335), - [anon_sym_i64] = ACTIONS(1335), - [anon_sym_u128] = ACTIONS(1335), - [anon_sym_i128] = ACTIONS(1335), - [anon_sym_isize] = ACTIONS(1335), - [anon_sym_usize] = ACTIONS(1335), - [anon_sym_f32] = ACTIONS(1335), - [anon_sym_f64] = ACTIONS(1335), - [anon_sym_bool] = ACTIONS(1335), - [anon_sym_str] = ACTIONS(1335), - [anon_sym_char] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(432), + [sym_block_comment] = STATE(432), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1347), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1575), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1577), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(433)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1984), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3195), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2494), + [sym_scoped_identifier] = STATE(2205), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2099), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(433), + [sym_block_comment] = STATE(433), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(1337), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1343), + [anon_sym_i8] = ACTIONS(1343), + [anon_sym_u16] = ACTIONS(1343), + [anon_sym_i16] = ACTIONS(1343), + [anon_sym_u32] = ACTIONS(1343), + [anon_sym_i32] = ACTIONS(1343), + [anon_sym_u64] = ACTIONS(1343), + [anon_sym_i64] = ACTIONS(1343), + [anon_sym_u128] = ACTIONS(1343), + [anon_sym_i128] = ACTIONS(1343), + [anon_sym_isize] = ACTIONS(1343), + [anon_sym_usize] = ACTIONS(1343), + [anon_sym_f32] = ACTIONS(1343), + [anon_sym_f64] = ACTIONS(1343), + [anon_sym_bool] = ACTIONS(1343), + [anon_sym_str] = ACTIONS(1343), + [anon_sym_char] = ACTIONS(1343), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1351), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), + [anon_sym_default] = ACTIONS(1353), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1355), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1355), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1565), - [sym_super] = ACTIONS(1351), - [sym_crate] = ACTIONS(1351), - [sym_metavariable] = ACTIONS(1353), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(1579), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, - [STATE(427)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1994), - [sym_bracketed_type] = STATE(3578), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3322), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2496), - [sym_scoped_identifier] = STATE(2179), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2146), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [STATE(434)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(3537), + [sym_lifetime] = STATE(845), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3275), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2396), + [sym_scoped_identifier] = STATE(2163), + [sym_scoped_type_identifier] = STATE(2125), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2109), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(427), - [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(434), + [sym_block_comment] = STATE(434), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1547), [anon_sym_i8] = ACTIONS(1547), [anon_sym_u16] = ACTIONS(1547), @@ -65115,762 +65764,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1547), [anon_sym_str] = ACTIONS(1547), [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), + [anon_sym_SQUOTE] = ACTIONS(1295), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1299), [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_ref] = ACTIONS(1313), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1559), [sym_super] = ACTIONS(1559), [sym_crate] = ACTIONS(1559), [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(428)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2012), - [sym_bracketed_type] = STATE(3577), - [sym_lifetime] = STATE(841), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3319), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2428), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2119), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(428), - [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1335), - [anon_sym_i8] = ACTIONS(1335), - [anon_sym_u16] = ACTIONS(1335), - [anon_sym_i16] = ACTIONS(1335), - [anon_sym_u32] = ACTIONS(1335), - [anon_sym_i32] = ACTIONS(1335), - [anon_sym_u64] = ACTIONS(1335), - [anon_sym_i64] = ACTIONS(1335), - [anon_sym_u128] = ACTIONS(1335), - [anon_sym_i128] = ACTIONS(1335), - [anon_sym_isize] = ACTIONS(1335), - [anon_sym_usize] = ACTIONS(1335), - [anon_sym_f32] = ACTIONS(1335), - [anon_sym_f64] = ACTIONS(1335), - [anon_sym_bool] = ACTIONS(1335), - [anon_sym_str] = ACTIONS(1335), - [anon_sym_char] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1347), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1567), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1351), - [sym_super] = ACTIONS(1351), - [sym_crate] = ACTIONS(1351), - [sym_metavariable] = ACTIONS(1353), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(429)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1994), - [sym_bracketed_type] = STATE(3577), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3319), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2428), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2146), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(429), - [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1335), - [anon_sym_i8] = ACTIONS(1335), - [anon_sym_u16] = ACTIONS(1335), - [anon_sym_i16] = ACTIONS(1335), - [anon_sym_u32] = ACTIONS(1335), - [anon_sym_i32] = ACTIONS(1335), - [anon_sym_u64] = ACTIONS(1335), - [anon_sym_i64] = ACTIONS(1335), - [anon_sym_u128] = ACTIONS(1335), - [anon_sym_i128] = ACTIONS(1335), - [anon_sym_isize] = ACTIONS(1335), - [anon_sym_usize] = ACTIONS(1335), - [anon_sym_f32] = ACTIONS(1335), - [anon_sym_f64] = ACTIONS(1335), - [anon_sym_bool] = ACTIONS(1335), - [anon_sym_str] = ACTIONS(1335), - [anon_sym_char] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1347), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1351), - [sym_super] = ACTIONS(1351), - [sym_crate] = ACTIONS(1351), - [sym_metavariable] = ACTIONS(1353), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(430)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1994), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2146), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(430), - [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1323), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(431)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1994), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2146), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(431), - [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1571), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(432)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2012), - [sym_bracketed_type] = STATE(3577), - [sym_lifetime] = STATE(842), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3319), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2428), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2119), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(432), - [sym_block_comment] = STATE(432), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1329), - [anon_sym_LPAREN] = ACTIONS(1331), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1335), - [anon_sym_i8] = ACTIONS(1335), - [anon_sym_u16] = ACTIONS(1335), - [anon_sym_i16] = ACTIONS(1335), - [anon_sym_u32] = ACTIONS(1335), - [anon_sym_i32] = ACTIONS(1335), - [anon_sym_u64] = ACTIONS(1335), - [anon_sym_i64] = ACTIONS(1335), - [anon_sym_u128] = ACTIONS(1335), - [anon_sym_i128] = ACTIONS(1335), - [anon_sym_isize] = ACTIONS(1335), - [anon_sym_usize] = ACTIONS(1335), - [anon_sym_f32] = ACTIONS(1335), - [anon_sym_f64] = ACTIONS(1335), - [anon_sym_bool] = ACTIONS(1335), - [anon_sym_str] = ACTIONS(1335), - [anon_sym_char] = ACTIONS(1335), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1343), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1345), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1347), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1347), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1573), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1575), - [sym_super] = ACTIONS(1351), - [sym_crate] = ACTIONS(1351), - [sym_metavariable] = ACTIONS(1353), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(433)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2012), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(841), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2119), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(433), - [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1577), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1323), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(434)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2012), - [sym_bracketed_type] = STATE(3570), - [sym_lifetime] = STATE(842), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3235), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(2467), - [sym_scoped_identifier] = STATE(2243), - [sym_scoped_type_identifier] = STATE(2102), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2119), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(434), - [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(1263), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1269), - [anon_sym_i8] = ACTIONS(1269), - [anon_sym_u16] = ACTIONS(1269), - [anon_sym_i16] = ACTIONS(1269), - [anon_sym_u32] = ACTIONS(1269), - [anon_sym_i32] = ACTIONS(1269), - [anon_sym_u64] = ACTIONS(1269), - [anon_sym_i64] = ACTIONS(1269), - [anon_sym_u128] = ACTIONS(1269), - [anon_sym_i128] = ACTIONS(1269), - [anon_sym_isize] = ACTIONS(1269), - [anon_sym_usize] = ACTIONS(1269), - [anon_sym_f32] = ACTIONS(1269), - [anon_sym_f64] = ACTIONS(1269), - [anon_sym_bool] = ACTIONS(1269), - [anon_sym_str] = ACTIONS(1269), - [anon_sym_char] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1287), - [anon_sym_SQUOTE] = ACTIONS(1291), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1295), - [anon_sym_default] = ACTIONS(1297), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1303), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1303), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_ref] = ACTIONS(1309), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(1579), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1581), - [sym_super] = ACTIONS(1323), - [sym_crate] = ACTIONS(1323), - [sym_metavariable] = ACTIONS(1325), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(435)] = { [sym_line_comment] = STATE(435), @@ -66070,31 +65998,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1585), }, [STATE(437)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2116), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2135), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), [sym_identifier] = ACTIONS(1587), @@ -66144,7 +66072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1587), [anon_sym_unsafe] = ACTIONS(1587), [anon_sym_while] = ACTIONS(1587), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_yield] = ACTIONS(1587), [anon_sym_move] = ACTIONS(1587), @@ -66164,31 +66092,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1589), }, [STATE(438)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2120), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2116), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), [sym_identifier] = ACTIONS(1591), @@ -66238,7 +66166,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1591), [anon_sym_unsafe] = ACTIONS(1591), [anon_sym_while] = ACTIONS(1591), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_yield] = ACTIONS(1591), [anon_sym_move] = ACTIONS(1591), @@ -66258,44 +66186,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1593), }, [STATE(439)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2481), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2485), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2612), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2612), - [sym__literal] = STATE(2612), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2404), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2557), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2557), + [sym__literal] = STATE(2557), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66313,76 +66241,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1607), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(440)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2481), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2485), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2612), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2612), - [sym__literal] = STATE(2612), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2404), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2557), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2557), + [sym__literal] = STATE(2557), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66400,76 +66328,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1623), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(441)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2481), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2485), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2612), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2612), - [sym__literal] = STATE(2612), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2404), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2557), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2557), + [sym__literal] = STATE(2557), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66487,76 +66415,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1625), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(442)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2481), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2485), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2612), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2612), - [sym__literal] = STATE(2612), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2404), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2557), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2557), + [sym__literal] = STATE(2557), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66574,76 +66502,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1627), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(443)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2481), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2485), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2612), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2612), - [sym__literal] = STATE(2612), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2404), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2557), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2557), + [sym__literal] = STATE(2557), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66661,76 +66589,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1629), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(444)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2481), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2485), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2612), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2612), - [sym__literal] = STATE(2612), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2404), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2557), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2557), + [sym__literal] = STATE(2557), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66748,76 +66676,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1631), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(445)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2481), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2485), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2612), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2612), - [sym__literal] = STATE(2612), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2404), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2557), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2557), + [sym__literal] = STATE(2557), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66835,76 +66763,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1633), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(446)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2481), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2485), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2612), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2612), - [sym__literal] = STATE(2612), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2404), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2557), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2557), + [sym__literal] = STATE(2557), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66922,76 +66850,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1635), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(447)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2481), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2485), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2612), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2612), - [sym__literal] = STATE(2612), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2404), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2557), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2557), + [sym__literal] = STATE(2557), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67009,76 +66937,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1637), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(448)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2481), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2485), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2612), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2612), - [sym__literal] = STATE(2612), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2404), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2557), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2557), + [sym__literal] = STATE(2557), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67096,76 +67024,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1639), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(449)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2481), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2485), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2612), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2612), - [sym__literal] = STATE(2612), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2404), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2557), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2557), + [sym__literal] = STATE(2557), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67183,76 +67111,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1641), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(450)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2481), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2485), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2612), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2612), - [sym__literal] = STATE(2612), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2404), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2557), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2557), + [sym__literal] = STATE(2557), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67270,76 +67198,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1643), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(451)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2364), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2391), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2512), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2512), - [sym__literal] = STATE(2512), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2497), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2404), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2557), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2557), + [sym__literal] = STATE(2557), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67357,75 +67285,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(452)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2481), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2485), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2612), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2612), - [sym__literal] = STATE(2612), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2311), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2332), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2470), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2470), + [sym__literal] = STATE(2470), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67443,75 +67371,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(453)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2341), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2316), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2484), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2484), - [sym__literal] = STATE(2484), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2385), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2301), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2433), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2433), + [sym__literal] = STATE(2433), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67529,75 +67457,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(454)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2346), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2362), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2508), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2508), - [sym__literal] = STATE(2508), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2364), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2376), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2478), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2478), + [sym__literal] = STATE(2478), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67615,75 +67543,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(455)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2335), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2336), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_type_binding] = STATE(2476), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_label] = STATE(3629), - [sym_block] = STATE(2476), - [sym__literal] = STATE(2476), - [sym_string_literal] = STATE(2805), - [sym_raw_string_literal] = STATE(2805), - [sym_boolean_literal] = STATE(2805), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2344), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2345), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_type_binding] = STATE(2462), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_label] = STATE(3588), + [sym_block] = STATE(2462), + [sym__literal] = STATE(2462), + [sym_string_literal] = STATE(2989), + [sym_raw_string_literal] = STATE(2989), + [sym_boolean_literal] = STATE(2989), [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67701,38 +67629,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1317), + [aux_sym_string_literal_token1] = ACTIONS(1321), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1327), + [sym__raw_string_literal_start] = ACTIONS(1331), [sym_float_literal] = ACTIONS(1617), }, [STATE(456)] = { - [sym_else_clause] = STATE(488), + [sym_else_clause] = STATE(483), [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), [sym_identifier] = ACTIONS(1253), @@ -67817,40 +67745,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1251), }, [STATE(457)] = { - [sym_attribute_item] = STATE(1423), - [sym_inner_attribute_item] = STATE(1423), - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_match_arm] = STATE(1424), - [sym_last_match_arm] = STATE(3428), - [sym_match_pattern] = STATE(3490), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2885), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [aux_sym_match_block_repeat1] = STATE(489), - [aux_sym_match_arm_repeat1] = STATE(771), + [sym_identifier] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1367), + [anon_sym_LBRACK] = ACTIONS(1367), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_STAR] = ACTIONS(1369), + [anon_sym_QMARK] = ACTIONS(1367), + [anon_sym_u8] = ACTIONS(1369), + [anon_sym_i8] = ACTIONS(1369), + [anon_sym_u16] = ACTIONS(1369), + [anon_sym_i16] = ACTIONS(1369), + [anon_sym_u32] = ACTIONS(1369), + [anon_sym_i32] = ACTIONS(1369), + [anon_sym_u64] = ACTIONS(1369), + [anon_sym_i64] = ACTIONS(1369), + [anon_sym_u128] = ACTIONS(1369), + [anon_sym_i128] = ACTIONS(1369), + [anon_sym_isize] = ACTIONS(1369), + [anon_sym_usize] = ACTIONS(1369), + [anon_sym_f32] = ACTIONS(1369), + [anon_sym_f64] = ACTIONS(1369), + [anon_sym_bool] = ACTIONS(1369), + [anon_sym_str] = ACTIONS(1369), + [anon_sym_char] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1369), + [anon_sym_PERCENT] = ACTIONS(1369), + [anon_sym_CARET] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1369), + [anon_sym_PIPE] = ACTIONS(1369), + [anon_sym_AMP_AMP] = ACTIONS(1367), + [anon_sym_PIPE_PIPE] = ACTIONS(1367), + [anon_sym_LT_LT] = ACTIONS(1369), + [anon_sym_GT_GT] = ACTIONS(1369), + [anon_sym_PLUS_EQ] = ACTIONS(1367), + [anon_sym_DASH_EQ] = ACTIONS(1367), + [anon_sym_STAR_EQ] = ACTIONS(1367), + [anon_sym_SLASH_EQ] = ACTIONS(1367), + [anon_sym_PERCENT_EQ] = ACTIONS(1367), + [anon_sym_CARET_EQ] = ACTIONS(1367), + [anon_sym_AMP_EQ] = ACTIONS(1367), + [anon_sym_PIPE_EQ] = ACTIONS(1367), + [anon_sym_LT_LT_EQ] = ACTIONS(1367), + [anon_sym_GT_GT_EQ] = ACTIONS(1367), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_EQ_EQ] = ACTIONS(1367), + [anon_sym_BANG_EQ] = ACTIONS(1367), + [anon_sym_GT] = ACTIONS(1369), + [anon_sym_LT] = ACTIONS(1369), + [anon_sym_GT_EQ] = ACTIONS(1367), + [anon_sym_LT_EQ] = ACTIONS(1367), + [anon_sym__] = ACTIONS(1369), + [anon_sym_DOT] = ACTIONS(1369), + [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1367), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), + [anon_sym_COMMA] = ACTIONS(1367), + [anon_sym_COLON_COLON] = ACTIONS(1367), + [anon_sym_POUND] = ACTIONS(1367), + [anon_sym_as] = ACTIONS(1369), + [anon_sym_const] = ACTIONS(1369), + [anon_sym_default] = ACTIONS(1369), + [anon_sym_gen] = ACTIONS(1369), + [anon_sym_union] = ACTIONS(1369), + [anon_sym_ref] = ACTIONS(1369), + [anon_sym_else] = ACTIONS(1369), + [sym_mutable_specifier] = ACTIONS(1369), + [sym_integer_literal] = ACTIONS(1367), + [aux_sym_string_literal_token1] = ACTIONS(1367), + [sym_char_literal] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(1369), + [anon_sym_false] = ACTIONS(1369), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1369), + [sym_super] = ACTIONS(1369), + [sym_crate] = ACTIONS(1369), + [sym_metavariable] = ACTIONS(1367), + [sym__raw_string_literal_start] = ACTIONS(1367), + [sym_float_literal] = ACTIONS(1367), + }, + [STATE(458)] = { + [sym_attribute_item] = STATE(1469), + [sym_inner_attribute_item] = STATE(1469), + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_match_arm] = STATE(1470), + [sym_last_match_arm] = STATE(3440), + [sym_match_pattern] = STATE(3364), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2837), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), + [sym_line_comment] = STATE(458), + [sym_block_comment] = STATE(458), + [aux_sym_match_block_repeat1] = STATE(466), + [aux_sym_match_arm_repeat1] = STATE(768), [sym_identifier] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1649), [anon_sym_LBRACK] = ACTIONS(1651), @@ -67900,125 +67912,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, - [STATE(458)] = { - [sym_line_comment] = STATE(458), - [sym_block_comment] = STATE(458), - [sym_identifier] = ACTIONS(1357), - [anon_sym_LPAREN] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_u8] = ACTIONS(1357), - [anon_sym_i8] = ACTIONS(1357), - [anon_sym_u16] = ACTIONS(1357), - [anon_sym_i16] = ACTIONS(1357), - [anon_sym_u32] = ACTIONS(1357), - [anon_sym_i32] = ACTIONS(1357), - [anon_sym_u64] = ACTIONS(1357), - [anon_sym_i64] = ACTIONS(1357), - [anon_sym_u128] = ACTIONS(1357), - [anon_sym_i128] = ACTIONS(1357), - [anon_sym_isize] = ACTIONS(1357), - [anon_sym_usize] = ACTIONS(1357), - [anon_sym_f32] = ACTIONS(1357), - [anon_sym_f64] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_str] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1355), - [anon_sym_PIPE_PIPE] = ACTIONS(1355), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1355), - [anon_sym_DASH_EQ] = ACTIONS(1355), - [anon_sym_STAR_EQ] = ACTIONS(1355), - [anon_sym_SLASH_EQ] = ACTIONS(1355), - [anon_sym_PERCENT_EQ] = ACTIONS(1355), - [anon_sym_CARET_EQ] = ACTIONS(1355), - [anon_sym_AMP_EQ] = ACTIONS(1355), - [anon_sym_PIPE_EQ] = ACTIONS(1355), - [anon_sym_LT_LT_EQ] = ACTIONS(1355), - [anon_sym_GT_GT_EQ] = ACTIONS(1355), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1355), - [anon_sym_BANG_EQ] = ACTIONS(1355), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(1355), - [anon_sym_LT_EQ] = ACTIONS(1355), - [anon_sym__] = ACTIONS(1357), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1355), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1355), - [anon_sym_COMMA] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(1355), - [anon_sym_POUND] = ACTIONS(1355), - [anon_sym_as] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_gen] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_ref] = ACTIONS(1357), - [anon_sym_else] = ACTIONS(1357), - [sym_mutable_specifier] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1355), - [aux_sym_string_literal_token1] = ACTIONS(1355), - [sym_char_literal] = ACTIONS(1355), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1357), - [sym_super] = ACTIONS(1357), - [sym_crate] = ACTIONS(1357), - [sym_metavariable] = ACTIONS(1355), - [sym__raw_string_literal_start] = ACTIONS(1355), - [sym_float_literal] = ACTIONS(1355), - }, [STATE(459)] = { - [sym_attribute_item] = STATE(1423), - [sym_inner_attribute_item] = STATE(1423), - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_match_arm] = STATE(1424), - [sym_last_match_arm] = STATE(3430), - [sym_match_pattern] = STATE(3490), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2885), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), + [sym_attribute_item] = STATE(1469), + [sym_inner_attribute_item] = STATE(1469), + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_match_arm] = STATE(1470), + [sym_last_match_arm] = STATE(3362), + [sym_match_pattern] = STATE(3364), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2837), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [aux_sym_match_block_repeat1] = STATE(470), - [aux_sym_match_arm_repeat1] = STATE(771), + [aux_sym_match_block_repeat1] = STATE(488), + [aux_sym_match_arm_repeat1] = STATE(768), [sym_identifier] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1649), [anon_sym_LBRACK] = ACTIONS(1651), @@ -68071,206 +67999,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(460)] = { [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [sym_identifier] = ACTIONS(1365), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1363), - [anon_sym_RBRACE] = ACTIONS(1363), - [anon_sym_PLUS] = ACTIONS(1365), - [anon_sym_STAR] = ACTIONS(1365), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_u8] = ACTIONS(1365), - [anon_sym_i8] = ACTIONS(1365), - [anon_sym_u16] = ACTIONS(1365), - [anon_sym_i16] = ACTIONS(1365), - [anon_sym_u32] = ACTIONS(1365), - [anon_sym_i32] = ACTIONS(1365), - [anon_sym_u64] = ACTIONS(1365), - [anon_sym_i64] = ACTIONS(1365), - [anon_sym_u128] = ACTIONS(1365), - [anon_sym_i128] = ACTIONS(1365), - [anon_sym_isize] = ACTIONS(1365), - [anon_sym_usize] = ACTIONS(1365), - [anon_sym_f32] = ACTIONS(1365), - [anon_sym_f64] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_str] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1365), - [anon_sym_SLASH] = ACTIONS(1365), - [anon_sym_PERCENT] = ACTIONS(1365), - [anon_sym_CARET] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1365), - [anon_sym_AMP_AMP] = ACTIONS(1363), - [anon_sym_PIPE_PIPE] = ACTIONS(1363), - [anon_sym_LT_LT] = ACTIONS(1365), - [anon_sym_GT_GT] = ACTIONS(1365), - [anon_sym_PLUS_EQ] = ACTIONS(1363), - [anon_sym_DASH_EQ] = ACTIONS(1363), - [anon_sym_STAR_EQ] = ACTIONS(1363), - [anon_sym_SLASH_EQ] = ACTIONS(1363), - [anon_sym_PERCENT_EQ] = ACTIONS(1363), - [anon_sym_CARET_EQ] = ACTIONS(1363), - [anon_sym_AMP_EQ] = ACTIONS(1363), - [anon_sym_PIPE_EQ] = ACTIONS(1363), - [anon_sym_LT_LT_EQ] = ACTIONS(1363), - [anon_sym_GT_GT_EQ] = ACTIONS(1363), - [anon_sym_EQ] = ACTIONS(1365), - [anon_sym_EQ_EQ] = ACTIONS(1363), - [anon_sym_BANG_EQ] = ACTIONS(1363), - [anon_sym_GT] = ACTIONS(1365), - [anon_sym_LT] = ACTIONS(1365), - [anon_sym_GT_EQ] = ACTIONS(1363), - [anon_sym_LT_EQ] = ACTIONS(1363), - [anon_sym__] = ACTIONS(1365), - [anon_sym_DOT] = ACTIONS(1365), - [anon_sym_DOT_DOT] = ACTIONS(1365), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1363), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1363), - [anon_sym_COMMA] = ACTIONS(1363), - [anon_sym_COLON_COLON] = ACTIONS(1363), - [anon_sym_POUND] = ACTIONS(1363), - [anon_sym_as] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_default] = ACTIONS(1365), - [anon_sym_gen] = ACTIONS(1365), - [anon_sym_union] = ACTIONS(1365), - [anon_sym_ref] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(1365), - [sym_mutable_specifier] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1363), - [aux_sym_string_literal_token1] = ACTIONS(1363), - [sym_char_literal] = ACTIONS(1363), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1365), - [sym_super] = ACTIONS(1365), - [sym_crate] = ACTIONS(1365), - [sym_metavariable] = ACTIONS(1363), - [sym__raw_string_literal_start] = ACTIONS(1363), - [sym_float_literal] = ACTIONS(1363), - }, - [STATE(461)] = { - [sym_line_comment] = STATE(461), - [sym_block_comment] = STATE(461), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1367), - [anon_sym_RBRACE] = ACTIONS(1367), - [anon_sym_PLUS] = ACTIONS(1369), - [anon_sym_STAR] = ACTIONS(1369), - [anon_sym_QMARK] = ACTIONS(1367), - [anon_sym_u8] = ACTIONS(1369), - [anon_sym_i8] = ACTIONS(1369), - [anon_sym_u16] = ACTIONS(1369), - [anon_sym_i16] = ACTIONS(1369), - [anon_sym_u32] = ACTIONS(1369), - [anon_sym_i32] = ACTIONS(1369), - [anon_sym_u64] = ACTIONS(1369), - [anon_sym_i64] = ACTIONS(1369), - [anon_sym_u128] = ACTIONS(1369), - [anon_sym_i128] = ACTIONS(1369), - [anon_sym_isize] = ACTIONS(1369), - [anon_sym_usize] = ACTIONS(1369), - [anon_sym_f32] = ACTIONS(1369), - [anon_sym_f64] = ACTIONS(1369), - [anon_sym_bool] = ACTIONS(1369), - [anon_sym_str] = ACTIONS(1369), - [anon_sym_char] = ACTIONS(1369), - [anon_sym_DASH] = ACTIONS(1369), - [anon_sym_SLASH] = ACTIONS(1369), - [anon_sym_PERCENT] = ACTIONS(1369), - [anon_sym_CARET] = ACTIONS(1369), - [anon_sym_AMP] = ACTIONS(1369), - [anon_sym_PIPE] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [anon_sym_LT_LT] = ACTIONS(1369), - [anon_sym_GT_GT] = ACTIONS(1369), - [anon_sym_PLUS_EQ] = ACTIONS(1367), - [anon_sym_DASH_EQ] = ACTIONS(1367), - [anon_sym_STAR_EQ] = ACTIONS(1367), - [anon_sym_SLASH_EQ] = ACTIONS(1367), - [anon_sym_PERCENT_EQ] = ACTIONS(1367), - [anon_sym_CARET_EQ] = ACTIONS(1367), - [anon_sym_AMP_EQ] = ACTIONS(1367), - [anon_sym_PIPE_EQ] = ACTIONS(1367), - [anon_sym_LT_LT_EQ] = ACTIONS(1367), - [anon_sym_GT_GT_EQ] = ACTIONS(1367), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_EQ_EQ] = ACTIONS(1367), - [anon_sym_BANG_EQ] = ACTIONS(1367), - [anon_sym_GT] = ACTIONS(1369), - [anon_sym_LT] = ACTIONS(1369), - [anon_sym_GT_EQ] = ACTIONS(1367), - [anon_sym_LT_EQ] = ACTIONS(1367), - [anon_sym__] = ACTIONS(1369), - [anon_sym_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT] = ACTIONS(1369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1367), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1367), - [anon_sym_POUND] = ACTIONS(1367), - [anon_sym_as] = ACTIONS(1369), - [anon_sym_const] = ACTIONS(1369), - [anon_sym_default] = ACTIONS(1369), - [anon_sym_gen] = ACTIONS(1369), - [anon_sym_union] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_else] = ACTIONS(1369), - [sym_mutable_specifier] = ACTIONS(1369), - [sym_integer_literal] = ACTIONS(1367), - [aux_sym_string_literal_token1] = ACTIONS(1367), - [sym_char_literal] = ACTIONS(1367), - [anon_sym_true] = ACTIONS(1369), - [anon_sym_false] = ACTIONS(1369), + [sym_identifier] = ACTIONS(1383), + [anon_sym_LPAREN] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1383), + [anon_sym_QMARK] = ACTIONS(1381), + [anon_sym_u8] = ACTIONS(1383), + [anon_sym_i8] = ACTIONS(1383), + [anon_sym_u16] = ACTIONS(1383), + [anon_sym_i16] = ACTIONS(1383), + [anon_sym_u32] = ACTIONS(1383), + [anon_sym_i32] = ACTIONS(1383), + [anon_sym_u64] = ACTIONS(1383), + [anon_sym_i64] = ACTIONS(1383), + [anon_sym_u128] = ACTIONS(1383), + [anon_sym_i128] = ACTIONS(1383), + [anon_sym_isize] = ACTIONS(1383), + [anon_sym_usize] = ACTIONS(1383), + [anon_sym_f32] = ACTIONS(1383), + [anon_sym_f64] = ACTIONS(1383), + [anon_sym_bool] = ACTIONS(1383), + [anon_sym_str] = ACTIONS(1383), + [anon_sym_char] = ACTIONS(1383), + [anon_sym_DASH] = ACTIONS(1383), + [anon_sym_SLASH] = ACTIONS(1383), + [anon_sym_PERCENT] = ACTIONS(1383), + [anon_sym_CARET] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_AMP_AMP] = ACTIONS(1381), + [anon_sym_PIPE_PIPE] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1383), + [anon_sym_GT_GT] = ACTIONS(1383), + [anon_sym_PLUS_EQ] = ACTIONS(1381), + [anon_sym_DASH_EQ] = ACTIONS(1381), + [anon_sym_STAR_EQ] = ACTIONS(1381), + [anon_sym_SLASH_EQ] = ACTIONS(1381), + [anon_sym_PERCENT_EQ] = ACTIONS(1381), + [anon_sym_CARET_EQ] = ACTIONS(1381), + [anon_sym_AMP_EQ] = ACTIONS(1381), + [anon_sym_PIPE_EQ] = ACTIONS(1381), + [anon_sym_LT_LT_EQ] = ACTIONS(1381), + [anon_sym_GT_GT_EQ] = ACTIONS(1381), + [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_EQ_EQ] = ACTIONS(1381), + [anon_sym_BANG_EQ] = ACTIONS(1381), + [anon_sym_GT] = ACTIONS(1383), + [anon_sym_LT] = ACTIONS(1383), + [anon_sym_GT_EQ] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1381), + [anon_sym__] = ACTIONS(1383), + [anon_sym_DOT] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1381), + [anon_sym_COMMA] = ACTIONS(1381), + [anon_sym_COLON_COLON] = ACTIONS(1381), + [anon_sym_POUND] = ACTIONS(1381), + [anon_sym_as] = ACTIONS(1383), + [anon_sym_const] = ACTIONS(1383), + [anon_sym_default] = ACTIONS(1383), + [anon_sym_gen] = ACTIONS(1383), + [anon_sym_union] = ACTIONS(1383), + [anon_sym_ref] = ACTIONS(1383), + [anon_sym_else] = ACTIONS(1383), + [sym_mutable_specifier] = ACTIONS(1383), + [sym_integer_literal] = ACTIONS(1381), + [aux_sym_string_literal_token1] = ACTIONS(1381), + [sym_char_literal] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(1383), + [anon_sym_false] = ACTIONS(1383), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1369), - [sym_super] = ACTIONS(1369), - [sym_crate] = ACTIONS(1369), - [sym_metavariable] = ACTIONS(1367), - [sym__raw_string_literal_start] = ACTIONS(1367), - [sym_float_literal] = ACTIONS(1367), + [sym_self] = ACTIONS(1383), + [sym_super] = ACTIONS(1383), + [sym_crate] = ACTIONS(1383), + [sym_metavariable] = ACTIONS(1381), + [sym__raw_string_literal_start] = ACTIONS(1381), + [sym_float_literal] = ACTIONS(1381), }, - [STATE(462)] = { - [sym_attribute_item] = STATE(1423), - [sym_inner_attribute_item] = STATE(1423), - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_match_arm] = STATE(1424), - [sym_last_match_arm] = STATE(3497), - [sym_match_pattern] = STATE(3490), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2885), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), - [sym_line_comment] = STATE(462), - [sym_block_comment] = STATE(462), - [aux_sym_match_block_repeat1] = STATE(484), - [aux_sym_match_arm_repeat1] = STATE(771), + [STATE(461)] = { + [sym_attribute_item] = STATE(1469), + [sym_inner_attribute_item] = STATE(1469), + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_match_arm] = STATE(1470), + [sym_last_match_arm] = STATE(3470), + [sym_match_pattern] = STATE(3364), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2837), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), + [sym_line_comment] = STATE(461), + [sym_block_comment] = STATE(461), + [aux_sym_match_block_repeat1] = STATE(486), + [aux_sym_match_arm_repeat1] = STATE(768), [sym_identifier] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1649), [anon_sym_LBRACK] = ACTIONS(1651), @@ -68320,89 +68164,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, + [STATE(462)] = { + [sym_line_comment] = STATE(462), + [sym_block_comment] = STATE(462), + [sym_identifier] = ACTIONS(1335), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_PLUS] = ACTIONS(1335), + [anon_sym_STAR] = ACTIONS(1335), + [anon_sym_QMARK] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1335), + [anon_sym_SLASH] = ACTIONS(1335), + [anon_sym_PERCENT] = ACTIONS(1335), + [anon_sym_CARET] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), + [anon_sym_PIPE] = ACTIONS(1335), + [anon_sym_AMP_AMP] = ACTIONS(1333), + [anon_sym_PIPE_PIPE] = ACTIONS(1333), + [anon_sym_LT_LT] = ACTIONS(1335), + [anon_sym_GT_GT] = ACTIONS(1335), + [anon_sym_PLUS_EQ] = ACTIONS(1333), + [anon_sym_DASH_EQ] = ACTIONS(1333), + [anon_sym_STAR_EQ] = ACTIONS(1333), + [anon_sym_SLASH_EQ] = ACTIONS(1333), + [anon_sym_PERCENT_EQ] = ACTIONS(1333), + [anon_sym_CARET_EQ] = ACTIONS(1333), + [anon_sym_AMP_EQ] = ACTIONS(1333), + [anon_sym_PIPE_EQ] = ACTIONS(1333), + [anon_sym_LT_LT_EQ] = ACTIONS(1333), + [anon_sym_GT_GT_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1335), + [anon_sym_EQ_EQ] = ACTIONS(1333), + [anon_sym_BANG_EQ] = ACTIONS(1333), + [anon_sym_GT] = ACTIONS(1335), + [anon_sym_LT] = ACTIONS(1335), + [anon_sym_GT_EQ] = ACTIONS(1333), + [anon_sym_LT_EQ] = ACTIONS(1333), + [anon_sym__] = ACTIONS(1335), + [anon_sym_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT] = ACTIONS(1335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1333), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(1333), + [anon_sym_POUND] = ACTIONS(1333), + [anon_sym_as] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_gen] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_ref] = ACTIONS(1335), + [anon_sym_else] = ACTIONS(1335), + [sym_mutable_specifier] = ACTIONS(1335), + [sym_integer_literal] = ACTIONS(1333), + [aux_sym_string_literal_token1] = ACTIONS(1333), + [sym_char_literal] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1335), + [anon_sym_false] = ACTIONS(1335), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1335), + [sym_super] = ACTIONS(1335), + [sym_crate] = ACTIONS(1335), + [sym_metavariable] = ACTIONS(1333), + [sym__raw_string_literal_start] = ACTIONS(1333), + [sym_float_literal] = ACTIONS(1333), + }, [STATE(463)] = { - [sym_attribute_item] = STATE(1423), - [sym_inner_attribute_item] = STATE(1423), - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_match_arm] = STATE(1424), - [sym_last_match_arm] = STATE(3475), - [sym_match_pattern] = STATE(3490), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2885), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(463), [sym_block_comment] = STATE(463), - [aux_sym_match_block_repeat1] = STATE(468), - [aux_sym_match_arm_repeat1] = STATE(771), - [sym_identifier] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_u8] = ACTIONS(1655), - [anon_sym_i8] = ACTIONS(1655), - [anon_sym_u16] = ACTIONS(1655), - [anon_sym_i16] = ACTIONS(1655), - [anon_sym_u32] = ACTIONS(1655), - [anon_sym_i32] = ACTIONS(1655), - [anon_sym_u64] = ACTIONS(1655), - [anon_sym_i64] = ACTIONS(1655), - [anon_sym_u128] = ACTIONS(1655), - [anon_sym_i128] = ACTIONS(1655), - [anon_sym_isize] = ACTIONS(1655), - [anon_sym_usize] = ACTIONS(1655), - [anon_sym_f32] = ACTIONS(1655), - [anon_sym_f64] = ACTIONS(1655), - [anon_sym_bool] = ACTIONS(1655), - [anon_sym_str] = ACTIONS(1655), - [anon_sym_char] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(1669), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [sym_identifier] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_u8] = ACTIONS(1259), + [anon_sym_i8] = ACTIONS(1259), + [anon_sym_u16] = ACTIONS(1259), + [anon_sym_i16] = ACTIONS(1259), + [anon_sym_u32] = ACTIONS(1259), + [anon_sym_i32] = ACTIONS(1259), + [anon_sym_u64] = ACTIONS(1259), + [anon_sym_i64] = ACTIONS(1259), + [anon_sym_u128] = ACTIONS(1259), + [anon_sym_i128] = ACTIONS(1259), + [anon_sym_isize] = ACTIONS(1259), + [anon_sym_usize] = ACTIONS(1259), + [anon_sym_f32] = ACTIONS(1259), + [anon_sym_f64] = ACTIONS(1259), + [anon_sym_bool] = ACTIONS(1259), + [anon_sym_str] = ACTIONS(1259), + [anon_sym_char] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_PLUS_EQ] = ACTIONS(1257), + [anon_sym_DASH_EQ] = ACTIONS(1257), + [anon_sym_STAR_EQ] = ACTIONS(1257), + [anon_sym_SLASH_EQ] = ACTIONS(1257), + [anon_sym_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_CARET_EQ] = ACTIONS(1257), + [anon_sym_AMP_EQ] = ACTIONS(1257), + [anon_sym_PIPE_EQ] = ACTIONS(1257), + [anon_sym_LT_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_GT_EQ] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym__] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_ref] = ACTIONS(1259), + [anon_sym_else] = ACTIONS(1259), + [sym_mutable_specifier] = ACTIONS(1259), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1257), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1259), + [sym_super] = ACTIONS(1259), + [sym_crate] = ACTIONS(1259), + [sym_metavariable] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1257), + [sym_float_literal] = ACTIONS(1257), }, [STATE(464)] = { [sym_line_comment] = STATE(464), @@ -68489,293 +68417,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1385), }, [STATE(465)] = { + [sym_attribute_item] = STATE(1469), + [sym_inner_attribute_item] = STATE(1469), + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_match_arm] = STATE(1470), + [sym_last_match_arm] = STATE(3382), + [sym_match_pattern] = STATE(3364), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2837), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), [sym_line_comment] = STATE(465), [sym_block_comment] = STATE(465), - [sym_identifier] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1381), - [anon_sym_RBRACE] = ACTIONS(1381), - [anon_sym_PLUS] = ACTIONS(1383), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_QMARK] = ACTIONS(1381), - [anon_sym_u8] = ACTIONS(1383), - [anon_sym_i8] = ACTIONS(1383), - [anon_sym_u16] = ACTIONS(1383), - [anon_sym_i16] = ACTIONS(1383), - [anon_sym_u32] = ACTIONS(1383), - [anon_sym_i32] = ACTIONS(1383), - [anon_sym_u64] = ACTIONS(1383), - [anon_sym_i64] = ACTIONS(1383), - [anon_sym_u128] = ACTIONS(1383), - [anon_sym_i128] = ACTIONS(1383), - [anon_sym_isize] = ACTIONS(1383), - [anon_sym_usize] = ACTIONS(1383), - [anon_sym_f32] = ACTIONS(1383), - [anon_sym_f64] = ACTIONS(1383), - [anon_sym_bool] = ACTIONS(1383), - [anon_sym_str] = ACTIONS(1383), - [anon_sym_char] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(1383), - [anon_sym_PERCENT] = ACTIONS(1383), - [anon_sym_CARET] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1383), - [anon_sym_PIPE] = ACTIONS(1383), - [anon_sym_AMP_AMP] = ACTIONS(1381), - [anon_sym_PIPE_PIPE] = ACTIONS(1381), - [anon_sym_LT_LT] = ACTIONS(1383), - [anon_sym_GT_GT] = ACTIONS(1383), - [anon_sym_PLUS_EQ] = ACTIONS(1381), - [anon_sym_DASH_EQ] = ACTIONS(1381), - [anon_sym_STAR_EQ] = ACTIONS(1381), - [anon_sym_SLASH_EQ] = ACTIONS(1381), - [anon_sym_PERCENT_EQ] = ACTIONS(1381), - [anon_sym_CARET_EQ] = ACTIONS(1381), - [anon_sym_AMP_EQ] = ACTIONS(1381), - [anon_sym_PIPE_EQ] = ACTIONS(1381), - [anon_sym_LT_LT_EQ] = ACTIONS(1381), - [anon_sym_GT_GT_EQ] = ACTIONS(1381), - [anon_sym_EQ] = ACTIONS(1383), - [anon_sym_EQ_EQ] = ACTIONS(1381), - [anon_sym_BANG_EQ] = ACTIONS(1381), - [anon_sym_GT] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(1383), - [anon_sym_GT_EQ] = ACTIONS(1381), - [anon_sym_LT_EQ] = ACTIONS(1381), - [anon_sym__] = ACTIONS(1383), - [anon_sym_DOT] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1381), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1381), - [anon_sym_COMMA] = ACTIONS(1381), - [anon_sym_COLON_COLON] = ACTIONS(1381), - [anon_sym_POUND] = ACTIONS(1381), - [anon_sym_as] = ACTIONS(1383), - [anon_sym_const] = ACTIONS(1383), - [anon_sym_default] = ACTIONS(1383), - [anon_sym_gen] = ACTIONS(1383), - [anon_sym_union] = ACTIONS(1383), - [anon_sym_ref] = ACTIONS(1383), - [anon_sym_else] = ACTIONS(1383), - [sym_mutable_specifier] = ACTIONS(1383), - [sym_integer_literal] = ACTIONS(1381), - [aux_sym_string_literal_token1] = ACTIONS(1381), - [sym_char_literal] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1383), - [anon_sym_false] = ACTIONS(1383), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1383), - [sym_super] = ACTIONS(1383), - [sym_crate] = ACTIONS(1383), - [sym_metavariable] = ACTIONS(1381), - [sym__raw_string_literal_start] = ACTIONS(1381), - [sym_float_literal] = ACTIONS(1381), - }, - [STATE(466)] = { - [sym_line_comment] = STATE(466), - [sym_block_comment] = STATE(466), - [sym_identifier] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_LBRACK] = ACTIONS(1429), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_QMARK] = ACTIONS(1429), - [anon_sym_u8] = ACTIONS(1431), - [anon_sym_i8] = ACTIONS(1431), - [anon_sym_u16] = ACTIONS(1431), - [anon_sym_i16] = ACTIONS(1431), - [anon_sym_u32] = ACTIONS(1431), - [anon_sym_i32] = ACTIONS(1431), - [anon_sym_u64] = ACTIONS(1431), - [anon_sym_i64] = ACTIONS(1431), - [anon_sym_u128] = ACTIONS(1431), - [anon_sym_i128] = ACTIONS(1431), - [anon_sym_isize] = ACTIONS(1431), - [anon_sym_usize] = ACTIONS(1431), - [anon_sym_f32] = ACTIONS(1431), - [anon_sym_f64] = ACTIONS(1431), - [anon_sym_bool] = ACTIONS(1431), - [anon_sym_str] = ACTIONS(1431), - [anon_sym_char] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1431), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1429), - [anon_sym_PIPE_PIPE] = ACTIONS(1429), - [anon_sym_LT_LT] = ACTIONS(1431), - [anon_sym_GT_GT] = ACTIONS(1431), - [anon_sym_PLUS_EQ] = ACTIONS(1429), - [anon_sym_DASH_EQ] = ACTIONS(1429), - [anon_sym_STAR_EQ] = ACTIONS(1429), - [anon_sym_SLASH_EQ] = ACTIONS(1429), - [anon_sym_PERCENT_EQ] = ACTIONS(1429), - [anon_sym_CARET_EQ] = ACTIONS(1429), - [anon_sym_AMP_EQ] = ACTIONS(1429), - [anon_sym_PIPE_EQ] = ACTIONS(1429), - [anon_sym_LT_LT_EQ] = ACTIONS(1429), - [anon_sym_GT_GT_EQ] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT_EQ] = ACTIONS(1429), - [anon_sym_LT_EQ] = ACTIONS(1429), - [anon_sym__] = ACTIONS(1431), - [anon_sym_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1429), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_COLON_COLON] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_default] = ACTIONS(1431), - [anon_sym_gen] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1431), - [anon_sym_ref] = ACTIONS(1431), - [sym_mutable_specifier] = ACTIONS(1431), - [sym_integer_literal] = ACTIONS(1429), - [aux_sym_string_literal_token1] = ACTIONS(1429), - [sym_char_literal] = ACTIONS(1429), - [anon_sym_true] = ACTIONS(1431), - [anon_sym_false] = ACTIONS(1431), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1431), - [sym_super] = ACTIONS(1431), - [sym_crate] = ACTIONS(1431), - [sym_metavariable] = ACTIONS(1429), - [sym__raw_string_literal_start] = ACTIONS(1429), - [sym_float_literal] = ACTIONS(1429), - }, - [STATE(467)] = { - [sym_line_comment] = STATE(467), - [sym_block_comment] = STATE(467), - [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(468)] = { - [sym_attribute_item] = STATE(1423), - [sym_inner_attribute_item] = STATE(1423), - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_match_arm] = STATE(1424), - [sym_last_match_arm] = STATE(3390), - [sym_match_pattern] = STATE(3490), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2885), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), - [sym_line_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [aux_sym_match_block_repeat1] = STATE(491), - [aux_sym_match_arm_repeat1] = STATE(771), + [aux_sym_match_block_repeat1] = STATE(490), + [aux_sym_match_arm_repeat1] = STATE(768), [sym_identifier] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1649), [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_RBRACE] = ACTIONS(1695), [anon_sym_u8] = ACTIONS(1655), [anon_sym_i8] = ACTIONS(1655), [anon_sym_u16] = ACTIONS(1655), @@ -68821,124 +68500,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, - [STATE(469)] = { - [sym_line_comment] = STATE(469), - [sym_block_comment] = STATE(469), - [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), - }, - [STATE(470)] = { - [sym_attribute_item] = STATE(1423), - [sym_inner_attribute_item] = STATE(1423), - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_match_arm] = STATE(1424), - [sym_last_match_arm] = STATE(3440), - [sym_match_pattern] = STATE(3490), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2885), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), - [sym_line_comment] = STATE(470), - [sym_block_comment] = STATE(470), + [STATE(466)] = { + [sym_attribute_item] = STATE(1469), + [sym_inner_attribute_item] = STATE(1469), + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_match_arm] = STATE(1470), + [sym_last_match_arm] = STATE(3498), + [sym_match_pattern] = STATE(3364), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2837), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), [aux_sym_match_block_repeat1] = STATE(491), - [aux_sym_match_arm_repeat1] = STATE(771), + [aux_sym_match_arm_repeat1] = STATE(768), [sym_identifier] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1649), [anon_sym_LBRACK] = ACTIONS(1651), @@ -68987,92 +68583,673 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, + [STATE(467)] = { + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [sym_identifier] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_QMARK] = ACTIONS(1443), + [anon_sym_u8] = ACTIONS(1445), + [anon_sym_i8] = ACTIONS(1445), + [anon_sym_u16] = ACTIONS(1445), + [anon_sym_i16] = ACTIONS(1445), + [anon_sym_u32] = ACTIONS(1445), + [anon_sym_i32] = ACTIONS(1445), + [anon_sym_u64] = ACTIONS(1445), + [anon_sym_i64] = ACTIONS(1445), + [anon_sym_u128] = ACTIONS(1445), + [anon_sym_i128] = ACTIONS(1445), + [anon_sym_isize] = ACTIONS(1445), + [anon_sym_usize] = ACTIONS(1445), + [anon_sym_f32] = ACTIONS(1445), + [anon_sym_f64] = ACTIONS(1445), + [anon_sym_bool] = ACTIONS(1445), + [anon_sym_str] = ACTIONS(1445), + [anon_sym_char] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_PERCENT] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1445), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_AMP_AMP] = ACTIONS(1443), + [anon_sym_PIPE_PIPE] = ACTIONS(1443), + [anon_sym_LT_LT] = ACTIONS(1445), + [anon_sym_GT_GT] = ACTIONS(1445), + [anon_sym_PLUS_EQ] = ACTIONS(1443), + [anon_sym_DASH_EQ] = ACTIONS(1443), + [anon_sym_STAR_EQ] = ACTIONS(1443), + [anon_sym_SLASH_EQ] = ACTIONS(1443), + [anon_sym_PERCENT_EQ] = ACTIONS(1443), + [anon_sym_CARET_EQ] = ACTIONS(1443), + [anon_sym_AMP_EQ] = ACTIONS(1443), + [anon_sym_PIPE_EQ] = ACTIONS(1443), + [anon_sym_LT_LT_EQ] = ACTIONS(1443), + [anon_sym_GT_GT_EQ] = ACTIONS(1443), + [anon_sym_EQ] = ACTIONS(1445), + [anon_sym_EQ_EQ] = ACTIONS(1443), + [anon_sym_BANG_EQ] = ACTIONS(1443), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1445), + [anon_sym_GT_EQ] = ACTIONS(1443), + [anon_sym_LT_EQ] = ACTIONS(1443), + [anon_sym__] = ACTIONS(1445), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT] = ACTIONS(1445), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1443), + [anon_sym_COMMA] = ACTIONS(1443), + [anon_sym_COLON_COLON] = ACTIONS(1443), + [anon_sym_POUND] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [anon_sym_default] = ACTIONS(1445), + [anon_sym_gen] = ACTIONS(1445), + [anon_sym_union] = ACTIONS(1445), + [anon_sym_ref] = ACTIONS(1445), + [sym_mutable_specifier] = ACTIONS(1445), + [sym_integer_literal] = ACTIONS(1443), + [aux_sym_string_literal_token1] = ACTIONS(1443), + [sym_char_literal] = ACTIONS(1443), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1445), + [sym_super] = ACTIONS(1445), + [sym_crate] = ACTIONS(1445), + [sym_metavariable] = ACTIONS(1443), + [sym__raw_string_literal_start] = ACTIONS(1443), + [sym_float_literal] = ACTIONS(1443), + }, + [STATE(468)] = { + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [sym_identifier] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_QMARK] = 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(1425), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PERCENT] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_AMP_AMP] = ACTIONS(1423), + [anon_sym_PIPE_PIPE] = ACTIONS(1423), + [anon_sym_LT_LT] = ACTIONS(1425), + [anon_sym_GT_GT] = ACTIONS(1425), + [anon_sym_PLUS_EQ] = ACTIONS(1423), + [anon_sym_DASH_EQ] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1423), + [anon_sym_SLASH_EQ] = ACTIONS(1423), + [anon_sym_PERCENT_EQ] = ACTIONS(1423), + [anon_sym_CARET_EQ] = ACTIONS(1423), + [anon_sym_AMP_EQ] = ACTIONS(1423), + [anon_sym_PIPE_EQ] = ACTIONS(1423), + [anon_sym_LT_LT_EQ] = ACTIONS(1423), + [anon_sym_GT_GT_EQ] = ACTIONS(1423), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_EQ_EQ] = ACTIONS(1423), + [anon_sym_BANG_EQ] = ACTIONS(1423), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_LT] = ACTIONS(1425), + [anon_sym_GT_EQ] = ACTIONS(1423), + [anon_sym_LT_EQ] = ACTIONS(1423), + [anon_sym__] = ACTIONS(1425), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_DOT_DOT] = ACTIONS(1425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1423), + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_COLON_COLON] = ACTIONS(1423), + [anon_sym_POUND] = ACTIONS(1423), + [anon_sym_as] = ACTIONS(1425), + [anon_sym_const] = ACTIONS(1425), + [anon_sym_default] = ACTIONS(1425), + [anon_sym_gen] = ACTIONS(1425), + [anon_sym_union] = ACTIONS(1425), + [anon_sym_ref] = ACTIONS(1425), + [sym_mutable_specifier] = 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(469)] = { + [sym_line_comment] = STATE(469), + [sym_block_comment] = STATE(469), + [sym_identifier] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_QMARK] = ACTIONS(1447), + [anon_sym_u8] = ACTIONS(1449), + [anon_sym_i8] = ACTIONS(1449), + [anon_sym_u16] = ACTIONS(1449), + [anon_sym_i16] = ACTIONS(1449), + [anon_sym_u32] = ACTIONS(1449), + [anon_sym_i32] = ACTIONS(1449), + [anon_sym_u64] = ACTIONS(1449), + [anon_sym_i64] = ACTIONS(1449), + [anon_sym_u128] = ACTIONS(1449), + [anon_sym_i128] = ACTIONS(1449), + [anon_sym_isize] = ACTIONS(1449), + [anon_sym_usize] = ACTIONS(1449), + [anon_sym_f32] = ACTIONS(1449), + [anon_sym_f64] = ACTIONS(1449), + [anon_sym_bool] = ACTIONS(1449), + [anon_sym_str] = ACTIONS(1449), + [anon_sym_char] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PERCENT] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_PLUS_EQ] = ACTIONS(1447), + [anon_sym_DASH_EQ] = ACTIONS(1447), + [anon_sym_STAR_EQ] = ACTIONS(1447), + [anon_sym_SLASH_EQ] = ACTIONS(1447), + [anon_sym_PERCENT_EQ] = ACTIONS(1447), + [anon_sym_CARET_EQ] = ACTIONS(1447), + [anon_sym_AMP_EQ] = ACTIONS(1447), + [anon_sym_PIPE_EQ] = ACTIONS(1447), + [anon_sym_LT_LT_EQ] = ACTIONS(1447), + [anon_sym_GT_GT_EQ] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym__] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1447), + [anon_sym_COMMA] = ACTIONS(1447), + [anon_sym_COLON_COLON] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1449), + [anon_sym_const] = ACTIONS(1449), + [anon_sym_default] = ACTIONS(1449), + [anon_sym_gen] = ACTIONS(1449), + [anon_sym_union] = ACTIONS(1449), + [anon_sym_ref] = ACTIONS(1449), + [sym_mutable_specifier] = ACTIONS(1449), + [sym_integer_literal] = ACTIONS(1447), + [aux_sym_string_literal_token1] = ACTIONS(1447), + [sym_char_literal] = ACTIONS(1447), + [anon_sym_true] = ACTIONS(1449), + [anon_sym_false] = ACTIONS(1449), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1449), + [sym_super] = ACTIONS(1449), + [sym_crate] = ACTIONS(1449), + [sym_metavariable] = ACTIONS(1447), + [sym__raw_string_literal_start] = ACTIONS(1447), + [sym_float_literal] = ACTIONS(1447), + }, + [STATE(470)] = { + [sym_line_comment] = STATE(470), + [sym_block_comment] = STATE(470), + [sym_identifier] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_QMARK] = 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(1437), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PERCENT] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_AMP_AMP] = ACTIONS(1435), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_LT_LT] = ACTIONS(1437), + [anon_sym_GT_GT] = ACTIONS(1437), + [anon_sym_PLUS_EQ] = ACTIONS(1435), + [anon_sym_DASH_EQ] = ACTIONS(1435), + [anon_sym_STAR_EQ] = ACTIONS(1435), + [anon_sym_SLASH_EQ] = ACTIONS(1435), + [anon_sym_PERCENT_EQ] = ACTIONS(1435), + [anon_sym_CARET_EQ] = ACTIONS(1435), + [anon_sym_AMP_EQ] = ACTIONS(1435), + [anon_sym_PIPE_EQ] = ACTIONS(1435), + [anon_sym_LT_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_GT_EQ] = ACTIONS(1435), + [anon_sym_EQ] = ACTIONS(1437), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym__] = ACTIONS(1437), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1435), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_COLON_COLON] = ACTIONS(1435), + [anon_sym_POUND] = ACTIONS(1435), + [anon_sym_as] = ACTIONS(1437), + [anon_sym_const] = ACTIONS(1437), + [anon_sym_default] = ACTIONS(1437), + [anon_sym_gen] = ACTIONS(1437), + [anon_sym_union] = ACTIONS(1437), + [anon_sym_ref] = ACTIONS(1437), + [sym_mutable_specifier] = 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(471)] = { [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [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), + [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), }, [STATE(472)] = { [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), + [sym_identifier] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_QMARK] = ACTIONS(1469), + [anon_sym_u8] = ACTIONS(1471), + [anon_sym_i8] = ACTIONS(1471), + [anon_sym_u16] = ACTIONS(1471), + [anon_sym_i16] = ACTIONS(1471), + [anon_sym_u32] = ACTIONS(1471), + [anon_sym_i32] = ACTIONS(1471), + [anon_sym_u64] = ACTIONS(1471), + [anon_sym_i64] = ACTIONS(1471), + [anon_sym_u128] = ACTIONS(1471), + [anon_sym_i128] = ACTIONS(1471), + [anon_sym_isize] = ACTIONS(1471), + [anon_sym_usize] = ACTIONS(1471), + [anon_sym_f32] = ACTIONS(1471), + [anon_sym_f64] = ACTIONS(1471), + [anon_sym_bool] = ACTIONS(1471), + [anon_sym_str] = ACTIONS(1471), + [anon_sym_char] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_PIPE] = ACTIONS(1471), + [anon_sym_AMP_AMP] = ACTIONS(1469), + [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_LT_LT] = ACTIONS(1471), + [anon_sym_GT_GT] = ACTIONS(1471), + [anon_sym_PLUS_EQ] = ACTIONS(1469), + [anon_sym_DASH_EQ] = ACTIONS(1469), + [anon_sym_STAR_EQ] = ACTIONS(1469), + [anon_sym_SLASH_EQ] = ACTIONS(1469), + [anon_sym_PERCENT_EQ] = ACTIONS(1469), + [anon_sym_CARET_EQ] = ACTIONS(1469), + [anon_sym_AMP_EQ] = ACTIONS(1469), + [anon_sym_PIPE_EQ] = ACTIONS(1469), + [anon_sym_LT_LT_EQ] = ACTIONS(1469), + [anon_sym_GT_GT_EQ] = ACTIONS(1469), + [anon_sym_EQ] = ACTIONS(1471), + [anon_sym_EQ_EQ] = ACTIONS(1469), + [anon_sym_BANG_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_LT_EQ] = ACTIONS(1469), + [anon_sym__] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_COLON_COLON] = ACTIONS(1469), + [anon_sym_POUND] = ACTIONS(1469), + [anon_sym_as] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_gen] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_ref] = ACTIONS(1471), + [sym_mutable_specifier] = ACTIONS(1471), + [sym_integer_literal] = ACTIONS(1469), + [aux_sym_string_literal_token1] = ACTIONS(1469), + [sym_char_literal] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1471), + [anon_sym_false] = ACTIONS(1471), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_crate] = ACTIONS(1471), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1469), + [sym_float_literal] = ACTIONS(1469), + }, + [STATE(473)] = { + [sym_line_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [sym_identifier] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(1699), + [anon_sym_LBRACK] = ACTIONS(1699), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1421), + [anon_sym_u8] = ACTIONS(1697), + [anon_sym_i8] = ACTIONS(1697), + [anon_sym_u16] = ACTIONS(1697), + [anon_sym_i16] = ACTIONS(1697), + [anon_sym_u32] = ACTIONS(1697), + [anon_sym_i32] = ACTIONS(1697), + [anon_sym_u64] = ACTIONS(1697), + [anon_sym_i64] = ACTIONS(1697), + [anon_sym_u128] = ACTIONS(1697), + [anon_sym_i128] = ACTIONS(1697), + [anon_sym_isize] = ACTIONS(1697), + [anon_sym_usize] = ACTIONS(1697), + [anon_sym_f32] = ACTIONS(1697), + [anon_sym_f64] = ACTIONS(1697), + [anon_sym_bool] = ACTIONS(1697), + [anon_sym_str] = ACTIONS(1697), + [anon_sym_char] = ACTIONS(1697), + [anon_sym_DASH] = ACTIONS(1697), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1697), + [anon_sym_PIPE] = ACTIONS(1697), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_LT_LT] = ACTIONS(1419), + [anon_sym_GT_GT] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1421), + [anon_sym_DASH_EQ] = ACTIONS(1421), + [anon_sym_STAR_EQ] = ACTIONS(1421), + [anon_sym_SLASH_EQ] = ACTIONS(1421), + [anon_sym_PERCENT_EQ] = ACTIONS(1421), + [anon_sym_CARET_EQ] = ACTIONS(1421), + [anon_sym_AMP_EQ] = ACTIONS(1421), + [anon_sym_PIPE_EQ] = ACTIONS(1421), + [anon_sym_LT_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_EQ] = ACTIONS(1421), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1697), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym__] = ACTIONS(1697), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), + [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_COLON_COLON] = ACTIONS(1699), + [anon_sym_POUND] = ACTIONS(1699), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1697), + [anon_sym_default] = ACTIONS(1697), + [anon_sym_gen] = ACTIONS(1697), + [anon_sym_union] = ACTIONS(1697), + [anon_sym_ref] = ACTIONS(1697), + [sym_mutable_specifier] = ACTIONS(1697), + [sym_integer_literal] = ACTIONS(1699), + [aux_sym_string_literal_token1] = ACTIONS(1699), + [sym_char_literal] = ACTIONS(1699), + [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(1697), + [sym_super] = ACTIONS(1697), + [sym_crate] = ACTIONS(1697), + [sym_metavariable] = ACTIONS(1699), + [sym__raw_string_literal_start] = ACTIONS(1699), + [sym_float_literal] = ACTIONS(1699), + }, + [STATE(474)] = { + [sym_line_comment] = STATE(474), + [sym_block_comment] = STATE(474), + [sym_identifier] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_QMARK] = ACTIONS(1473), + [anon_sym_u8] = ACTIONS(1475), + [anon_sym_i8] = ACTIONS(1475), + [anon_sym_u16] = ACTIONS(1475), + [anon_sym_i16] = ACTIONS(1475), + [anon_sym_u32] = ACTIONS(1475), + [anon_sym_i32] = ACTIONS(1475), + [anon_sym_u64] = ACTIONS(1475), + [anon_sym_i64] = ACTIONS(1475), + [anon_sym_u128] = ACTIONS(1475), + [anon_sym_i128] = ACTIONS(1475), + [anon_sym_isize] = ACTIONS(1475), + [anon_sym_usize] = ACTIONS(1475), + [anon_sym_f32] = ACTIONS(1475), + [anon_sym_f64] = ACTIONS(1475), + [anon_sym_bool] = ACTIONS(1475), + [anon_sym_str] = ACTIONS(1475), + [anon_sym_char] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1475), + [anon_sym_SLASH] = ACTIONS(1475), + [anon_sym_PERCENT] = ACTIONS(1475), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_AMP_AMP] = ACTIONS(1473), + [anon_sym_PIPE_PIPE] = ACTIONS(1473), + [anon_sym_LT_LT] = ACTIONS(1475), + [anon_sym_GT_GT] = ACTIONS(1475), + [anon_sym_PLUS_EQ] = ACTIONS(1473), + [anon_sym_DASH_EQ] = ACTIONS(1473), + [anon_sym_STAR_EQ] = ACTIONS(1473), + [anon_sym_SLASH_EQ] = ACTIONS(1473), + [anon_sym_PERCENT_EQ] = ACTIONS(1473), + [anon_sym_CARET_EQ] = ACTIONS(1473), + [anon_sym_AMP_EQ] = ACTIONS(1473), + [anon_sym_PIPE_EQ] = ACTIONS(1473), + [anon_sym_LT_LT_EQ] = ACTIONS(1473), + [anon_sym_GT_GT_EQ] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_EQ_EQ] = ACTIONS(1473), + [anon_sym_BANG_EQ] = ACTIONS(1473), + [anon_sym_GT] = ACTIONS(1475), + [anon_sym_LT] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(1473), + [anon_sym_LT_EQ] = ACTIONS(1473), + [anon_sym__] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1473), + [anon_sym_COLON_COLON] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_default] = ACTIONS(1475), + [anon_sym_gen] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1475), + [anon_sym_ref] = ACTIONS(1475), + [sym_mutable_specifier] = ACTIONS(1475), + [sym_integer_literal] = ACTIONS(1473), + [aux_sym_string_literal_token1] = ACTIONS(1473), + [sym_char_literal] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1475), + [sym_super] = ACTIONS(1475), + [sym_crate] = ACTIONS(1475), + [sym_metavariable] = ACTIONS(1473), + [sym__raw_string_literal_start] = ACTIONS(1473), + [sym_float_literal] = ACTIONS(1473), + }, + [STATE(475)] = { + [sym_line_comment] = STATE(475), + [sym_block_comment] = STATE(475), [sym_identifier] = ACTIONS(1405), [anon_sym_LPAREN] = ACTIONS(1403), [anon_sym_LBRACK] = ACTIONS(1403), @@ -69153,175 +69330,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1403), [sym_float_literal] = ACTIONS(1403), }, - [STATE(473)] = { - [sym_line_comment] = STATE(473), - [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_RBRACE] = ACTIONS(1425), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_QMARK] = ACTIONS(1425), - [anon_sym_u8] = ACTIONS(1427), - [anon_sym_i8] = ACTIONS(1427), - [anon_sym_u16] = ACTIONS(1427), - [anon_sym_i16] = ACTIONS(1427), - [anon_sym_u32] = ACTIONS(1427), - [anon_sym_i32] = ACTIONS(1427), - [anon_sym_u64] = ACTIONS(1427), - [anon_sym_i64] = ACTIONS(1427), - [anon_sym_u128] = ACTIONS(1427), - [anon_sym_i128] = ACTIONS(1427), - [anon_sym_isize] = ACTIONS(1427), - [anon_sym_usize] = ACTIONS(1427), - [anon_sym_f32] = ACTIONS(1427), - [anon_sym_f64] = ACTIONS(1427), - [anon_sym_bool] = ACTIONS(1427), - [anon_sym_str] = ACTIONS(1427), - [anon_sym_char] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_SLASH] = ACTIONS(1427), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_CARET] = ACTIONS(1427), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_AMP_AMP] = ACTIONS(1425), - [anon_sym_PIPE_PIPE] = ACTIONS(1425), - [anon_sym_LT_LT] = ACTIONS(1427), - [anon_sym_GT_GT] = ACTIONS(1427), - [anon_sym_PLUS_EQ] = ACTIONS(1425), - [anon_sym_DASH_EQ] = ACTIONS(1425), - [anon_sym_STAR_EQ] = ACTIONS(1425), - [anon_sym_SLASH_EQ] = ACTIONS(1425), - [anon_sym_PERCENT_EQ] = ACTIONS(1425), - [anon_sym_CARET_EQ] = ACTIONS(1425), - [anon_sym_AMP_EQ] = ACTIONS(1425), - [anon_sym_PIPE_EQ] = ACTIONS(1425), - [anon_sym_LT_LT_EQ] = ACTIONS(1425), - [anon_sym_GT_GT_EQ] = ACTIONS(1425), - [anon_sym_EQ] = ACTIONS(1427), - [anon_sym_EQ_EQ] = ACTIONS(1425), - [anon_sym_BANG_EQ] = ACTIONS(1425), - [anon_sym_GT] = ACTIONS(1427), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_GT_EQ] = ACTIONS(1425), - [anon_sym_LT_EQ] = ACTIONS(1425), - [anon_sym__] = ACTIONS(1427), - [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_DOT_DOT] = ACTIONS(1427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1425), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1425), - [anon_sym_COMMA] = ACTIONS(1425), - [anon_sym_COLON_COLON] = ACTIONS(1425), - [anon_sym_POUND] = ACTIONS(1425), - [anon_sym_as] = ACTIONS(1427), - [anon_sym_const] = ACTIONS(1427), - [anon_sym_default] = ACTIONS(1427), - [anon_sym_gen] = ACTIONS(1427), - [anon_sym_union] = ACTIONS(1427), - [anon_sym_ref] = ACTIONS(1427), - [sym_mutable_specifier] = ACTIONS(1427), - [sym_integer_literal] = ACTIONS(1425), - [aux_sym_string_literal_token1] = ACTIONS(1425), - [sym_char_literal] = ACTIONS(1425), - [anon_sym_true] = ACTIONS(1427), - [anon_sym_false] = ACTIONS(1427), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1427), - [sym_super] = ACTIONS(1427), - [sym_crate] = ACTIONS(1427), - [sym_metavariable] = ACTIONS(1425), - [sym__raw_string_literal_start] = ACTIONS(1425), - [sym_float_literal] = ACTIONS(1425), + [STATE(476)] = { + [sym_line_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [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(474)] = { - [sym_line_comment] = STATE(474), - [sym_block_comment] = STATE(474), - [sym_identifier] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_QMARK] = ACTIONS(1407), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u128] = ACTIONS(1409), - [anon_sym_i128] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_str] = ACTIONS(1409), - [anon_sym_char] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1409), - [anon_sym_PERCENT] = ACTIONS(1409), - [anon_sym_CARET] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE] = ACTIONS(1409), - [anon_sym_AMP_AMP] = ACTIONS(1407), - [anon_sym_PIPE_PIPE] = ACTIONS(1407), - [anon_sym_LT_LT] = ACTIONS(1409), - [anon_sym_GT_GT] = ACTIONS(1409), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_EQ] = ACTIONS(1409), - [anon_sym_EQ_EQ] = ACTIONS(1407), - [anon_sym_BANG_EQ] = ACTIONS(1407), - [anon_sym_GT] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1409), - [anon_sym_GT_EQ] = ACTIONS(1407), - [anon_sym_LT_EQ] = ACTIONS(1407), - [anon_sym__] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1407), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1407), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1407), - [anon_sym_POUND] = ACTIONS(1407), - [anon_sym_as] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_gen] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_ref] = ACTIONS(1409), - [sym_mutable_specifier] = ACTIONS(1409), - [sym_integer_literal] = ACTIONS(1407), - [aux_sym_string_literal_token1] = ACTIONS(1407), - [sym_char_literal] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1409), - [sym_super] = ACTIONS(1409), - [sym_crate] = ACTIONS(1409), - [sym_metavariable] = ACTIONS(1407), - [sym__raw_string_literal_start] = ACTIONS(1407), - [sym_float_literal] = ACTIONS(1407), + [STATE(477)] = { + [sym_line_comment] = STATE(477), + [sym_block_comment] = STATE(477), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1421), + [anon_sym_u8] = ACTIONS(1701), + [anon_sym_i8] = ACTIONS(1701), + [anon_sym_u16] = ACTIONS(1701), + [anon_sym_i16] = ACTIONS(1701), + [anon_sym_u32] = ACTIONS(1701), + [anon_sym_i32] = ACTIONS(1701), + [anon_sym_u64] = ACTIONS(1701), + [anon_sym_i64] = ACTIONS(1701), + [anon_sym_u128] = ACTIONS(1701), + [anon_sym_i128] = ACTIONS(1701), + [anon_sym_isize] = ACTIONS(1701), + [anon_sym_usize] = ACTIONS(1701), + [anon_sym_f32] = ACTIONS(1701), + [anon_sym_f64] = ACTIONS(1701), + [anon_sym_bool] = ACTIONS(1701), + [anon_sym_str] = ACTIONS(1701), + [anon_sym_char] = ACTIONS(1701), + [anon_sym_DASH] = ACTIONS(1701), + [anon_sym_SLASH] = ACTIONS(1419), + [anon_sym_PERCENT] = ACTIONS(1419), + [anon_sym_CARET] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_PIPE] = ACTIONS(1701), + [anon_sym_AMP_AMP] = ACTIONS(1421), + [anon_sym_PIPE_PIPE] = ACTIONS(1421), + [anon_sym_LT_LT] = ACTIONS(1419), + [anon_sym_GT_GT] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1421), + [anon_sym_DASH_EQ] = ACTIONS(1421), + [anon_sym_STAR_EQ] = ACTIONS(1421), + [anon_sym_SLASH_EQ] = ACTIONS(1421), + [anon_sym_PERCENT_EQ] = ACTIONS(1421), + [anon_sym_CARET_EQ] = ACTIONS(1421), + [anon_sym_AMP_EQ] = ACTIONS(1421), + [anon_sym_PIPE_EQ] = ACTIONS(1421), + [anon_sym_LT_LT_EQ] = ACTIONS(1421), + [anon_sym_GT_GT_EQ] = ACTIONS(1421), + [anon_sym_EQ] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1421), + [anon_sym_BANG_EQ] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1701), + [anon_sym_GT_EQ] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1421), + [anon_sym__] = ACTIONS(1701), + [anon_sym_DOT] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), + [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_COLON_COLON] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1419), + [anon_sym_const] = ACTIONS(1701), + [anon_sym_default] = ACTIONS(1701), + [anon_sym_gen] = ACTIONS(1701), + [anon_sym_union] = ACTIONS(1701), + [anon_sym_ref] = ACTIONS(1701), + [sym_mutable_specifier] = ACTIONS(1701), + [sym_integer_literal] = ACTIONS(1703), + [aux_sym_string_literal_token1] = ACTIONS(1703), + [sym_char_literal] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1701), + [anon_sym_false] = ACTIONS(1701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1701), + [sym_super] = ACTIONS(1701), + [sym_crate] = ACTIONS(1701), + [sym_metavariable] = ACTIONS(1703), + [sym__raw_string_literal_start] = ACTIONS(1703), + [sym_float_literal] = ACTIONS(1703), }, - [STATE(475)] = { - [sym_line_comment] = STATE(475), - [sym_block_comment] = STATE(475), + [STATE(478)] = { + [sym_line_comment] = STATE(478), + [sym_block_comment] = STATE(478), [sym_identifier] = ACTIONS(1493), [anon_sym_LPAREN] = ACTIONS(1491), [anon_sym_LBRACK] = ACTIONS(1491), @@ -69402,175 +69579,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(476)] = { - [sym_line_comment] = STATE(476), - [sym_block_comment] = STATE(476), - [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(477)] = { - [sym_line_comment] = STATE(477), - [sym_block_comment] = STATE(477), - [sym_identifier] = ACTIONS(1401), - [anon_sym_LPAREN] = ACTIONS(1399), - [anon_sym_LBRACK] = ACTIONS(1399), - [anon_sym_RBRACE] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1401), - [anon_sym_QMARK] = ACTIONS(1399), - [anon_sym_u8] = ACTIONS(1401), - [anon_sym_i8] = ACTIONS(1401), - [anon_sym_u16] = ACTIONS(1401), - [anon_sym_i16] = ACTIONS(1401), - [anon_sym_u32] = ACTIONS(1401), - [anon_sym_i32] = ACTIONS(1401), - [anon_sym_u64] = ACTIONS(1401), - [anon_sym_i64] = ACTIONS(1401), - [anon_sym_u128] = ACTIONS(1401), - [anon_sym_i128] = ACTIONS(1401), - [anon_sym_isize] = ACTIONS(1401), - [anon_sym_usize] = ACTIONS(1401), - [anon_sym_f32] = ACTIONS(1401), - [anon_sym_f64] = ACTIONS(1401), - [anon_sym_bool] = ACTIONS(1401), - [anon_sym_str] = ACTIONS(1401), - [anon_sym_char] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1401), - [anon_sym_PERCENT] = ACTIONS(1401), - [anon_sym_CARET] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_AMP_AMP] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1399), - [anon_sym_LT_LT] = ACTIONS(1401), - [anon_sym_GT_GT] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1399), - [anon_sym_DASH_EQ] = ACTIONS(1399), - [anon_sym_STAR_EQ] = ACTIONS(1399), - [anon_sym_SLASH_EQ] = ACTIONS(1399), - [anon_sym_PERCENT_EQ] = ACTIONS(1399), - [anon_sym_CARET_EQ] = ACTIONS(1399), - [anon_sym_AMP_EQ] = ACTIONS(1399), - [anon_sym_PIPE_EQ] = ACTIONS(1399), - [anon_sym_LT_LT_EQ] = ACTIONS(1399), - [anon_sym_GT_GT_EQ] = ACTIONS(1399), - [anon_sym_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1399), - [anon_sym_BANG_EQ] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1399), - [anon_sym__] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1399), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), - [anon_sym_COMMA] = ACTIONS(1399), - [anon_sym_COLON_COLON] = ACTIONS(1399), - [anon_sym_POUND] = ACTIONS(1399), - [anon_sym_as] = ACTIONS(1401), - [anon_sym_const] = ACTIONS(1401), - [anon_sym_default] = ACTIONS(1401), - [anon_sym_gen] = ACTIONS(1401), - [anon_sym_union] = ACTIONS(1401), - [anon_sym_ref] = ACTIONS(1401), - [sym_mutable_specifier] = ACTIONS(1401), - [sym_integer_literal] = ACTIONS(1399), - [aux_sym_string_literal_token1] = ACTIONS(1399), - [sym_char_literal] = ACTIONS(1399), - [anon_sym_true] = ACTIONS(1401), - [anon_sym_false] = ACTIONS(1401), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1401), - [sym_super] = ACTIONS(1401), - [sym_crate] = ACTIONS(1401), - [sym_metavariable] = ACTIONS(1399), - [sym__raw_string_literal_start] = ACTIONS(1399), - [sym_float_literal] = ACTIONS(1399), - }, - [STATE(478)] = { - [sym_line_comment] = STATE(478), - [sym_block_comment] = STATE(478), + [STATE(479)] = { + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), [sym_identifier] = ACTIONS(1505), [anon_sym_LPAREN] = ACTIONS(1503), [anon_sym_LBRACK] = ACTIONS(1503), @@ -69651,456 +69662,539 @@ 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(479)] = { - [sym_line_comment] = STATE(479), - [sym_block_comment] = STATE(479), - [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(480)] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), - [sym_identifier] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1489), - [anon_sym_u8] = ACTIONS(1697), - [anon_sym_i8] = ACTIONS(1697), - [anon_sym_u16] = ACTIONS(1697), - [anon_sym_i16] = ACTIONS(1697), - [anon_sym_u32] = ACTIONS(1697), - [anon_sym_i32] = ACTIONS(1697), - [anon_sym_u64] = ACTIONS(1697), - [anon_sym_i64] = ACTIONS(1697), - [anon_sym_u128] = ACTIONS(1697), - [anon_sym_i128] = ACTIONS(1697), - [anon_sym_isize] = ACTIONS(1697), - [anon_sym_usize] = ACTIONS(1697), - [anon_sym_f32] = ACTIONS(1697), - [anon_sym_f64] = ACTIONS(1697), - [anon_sym_bool] = ACTIONS(1697), - [anon_sym_str] = ACTIONS(1697), - [anon_sym_char] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_PIPE] = ACTIONS(1697), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1489), - [anon_sym_DASH_EQ] = ACTIONS(1489), - [anon_sym_STAR_EQ] = ACTIONS(1489), - [anon_sym_SLASH_EQ] = ACTIONS(1489), - [anon_sym_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_CARET_EQ] = ACTIONS(1489), - [anon_sym_AMP_EQ] = ACTIONS(1489), - [anon_sym_PIPE_EQ] = ACTIONS(1489), - [anon_sym_LT_LT_EQ] = ACTIONS(1489), - [anon_sym_GT_GT_EQ] = ACTIONS(1489), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1697), - [anon_sym_GT_EQ] = ACTIONS(1489), - [anon_sym_LT_EQ] = ACTIONS(1489), - [anon_sym__] = ACTIONS(1697), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), - [anon_sym_COMMA] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(1699), - [anon_sym_as] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1697), - [anon_sym_default] = ACTIONS(1697), - [anon_sym_gen] = ACTIONS(1697), - [anon_sym_union] = ACTIONS(1697), - [anon_sym_ref] = ACTIONS(1697), - [sym_mutable_specifier] = ACTIONS(1697), - [sym_integer_literal] = ACTIONS(1699), - [aux_sym_string_literal_token1] = ACTIONS(1699), - [sym_char_literal] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1697), - [anon_sym_false] = ACTIONS(1697), + [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(1697), - [sym_super] = ACTIONS(1697), - [sym_crate] = ACTIONS(1697), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1699), - [sym_float_literal] = ACTIONS(1699), + [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(481)] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [sym_identifier] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_u8] = ACTIONS(1439), - [anon_sym_i8] = ACTIONS(1439), - [anon_sym_u16] = ACTIONS(1439), - [anon_sym_i16] = ACTIONS(1439), - [anon_sym_u32] = ACTIONS(1439), - [anon_sym_i32] = ACTIONS(1439), - [anon_sym_u64] = ACTIONS(1439), - [anon_sym_i64] = ACTIONS(1439), - [anon_sym_u128] = ACTIONS(1439), - [anon_sym_i128] = ACTIONS(1439), - [anon_sym_isize] = ACTIONS(1439), - [anon_sym_usize] = ACTIONS(1439), - [anon_sym_f32] = ACTIONS(1439), - [anon_sym_f64] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_str] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_PERCENT] = ACTIONS(1439), - [anon_sym_CARET] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PIPE] = ACTIONS(1439), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_PIPE_PIPE] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_PLUS_EQ] = ACTIONS(1437), - [anon_sym_DASH_EQ] = ACTIONS(1437), - [anon_sym_STAR_EQ] = ACTIONS(1437), - [anon_sym_SLASH_EQ] = ACTIONS(1437), - [anon_sym_PERCENT_EQ] = ACTIONS(1437), - [anon_sym_CARET_EQ] = ACTIONS(1437), - [anon_sym_AMP_EQ] = ACTIONS(1437), - [anon_sym_PIPE_EQ] = ACTIONS(1437), - [anon_sym_LT_LT_EQ] = ACTIONS(1437), - [anon_sym_GT_GT_EQ] = ACTIONS(1437), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_EQ_EQ] = ACTIONS(1437), - [anon_sym_BANG_EQ] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1439), - [anon_sym_GT_EQ] = ACTIONS(1437), - [anon_sym_LT_EQ] = ACTIONS(1437), - [anon_sym__] = ACTIONS(1439), - [anon_sym_DOT] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), - [anon_sym_COMMA] = ACTIONS(1437), - [anon_sym_COLON_COLON] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1437), - [anon_sym_as] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1439), - [anon_sym_gen] = ACTIONS(1439), - [anon_sym_union] = ACTIONS(1439), - [anon_sym_ref] = ACTIONS(1439), - [sym_mutable_specifier] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1437), - [aux_sym_string_literal_token1] = ACTIONS(1437), - [sym_char_literal] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1439), - [sym_super] = ACTIONS(1439), - [sym_crate] = ACTIONS(1439), - [sym_metavariable] = ACTIONS(1437), - [sym__raw_string_literal_start] = ACTIONS(1437), - [sym_float_literal] = ACTIONS(1437), + [sym_identifier] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_QMARK] = 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(1429), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_PIPE] = ACTIONS(1429), + [anon_sym_AMP_AMP] = ACTIONS(1427), + [anon_sym_PIPE_PIPE] = ACTIONS(1427), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1429), + [anon_sym_PLUS_EQ] = ACTIONS(1427), + [anon_sym_DASH_EQ] = ACTIONS(1427), + [anon_sym_STAR_EQ] = ACTIONS(1427), + [anon_sym_SLASH_EQ] = ACTIONS(1427), + [anon_sym_PERCENT_EQ] = ACTIONS(1427), + [anon_sym_CARET_EQ] = ACTIONS(1427), + [anon_sym_AMP_EQ] = ACTIONS(1427), + [anon_sym_PIPE_EQ] = ACTIONS(1427), + [anon_sym_LT_LT_EQ] = ACTIONS(1427), + [anon_sym_GT_GT_EQ] = ACTIONS(1427), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_LT] = ACTIONS(1429), + [anon_sym_GT_EQ] = ACTIONS(1427), + [anon_sym_LT_EQ] = ACTIONS(1427), + [anon_sym__] = ACTIONS(1429), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT] = ACTIONS(1429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1427), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1427), + [anon_sym_COMMA] = ACTIONS(1427), + [anon_sym_COLON_COLON] = ACTIONS(1427), + [anon_sym_POUND] = ACTIONS(1427), + [anon_sym_as] = ACTIONS(1429), + [anon_sym_const] = ACTIONS(1429), + [anon_sym_default] = ACTIONS(1429), + [anon_sym_gen] = ACTIONS(1429), + [anon_sym_union] = ACTIONS(1429), + [anon_sym_ref] = ACTIONS(1429), + [sym_mutable_specifier] = 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(482)] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_QMARK] = ACTIONS(1417), - [anon_sym_u8] = ACTIONS(1419), - [anon_sym_i8] = ACTIONS(1419), - [anon_sym_u16] = ACTIONS(1419), - [anon_sym_i16] = ACTIONS(1419), - [anon_sym_u32] = ACTIONS(1419), - [anon_sym_i32] = ACTIONS(1419), - [anon_sym_u64] = ACTIONS(1419), - [anon_sym_i64] = ACTIONS(1419), - [anon_sym_u128] = ACTIONS(1419), - [anon_sym_i128] = ACTIONS(1419), - [anon_sym_isize] = ACTIONS(1419), - [anon_sym_usize] = ACTIONS(1419), - [anon_sym_f32] = ACTIONS(1419), - [anon_sym_f64] = ACTIONS(1419), - [anon_sym_bool] = ACTIONS(1419), - [anon_sym_str] = ACTIONS(1419), - [anon_sym_char] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_SLASH] = ACTIONS(1419), - [anon_sym_PERCENT] = ACTIONS(1419), - [anon_sym_CARET] = ACTIONS(1419), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_PIPE] = ACTIONS(1419), - [anon_sym_AMP_AMP] = ACTIONS(1417), - [anon_sym_PIPE_PIPE] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(1419), - [anon_sym_GT_GT] = ACTIONS(1419), - [anon_sym_PLUS_EQ] = ACTIONS(1417), - [anon_sym_DASH_EQ] = ACTIONS(1417), - [anon_sym_STAR_EQ] = ACTIONS(1417), - [anon_sym_SLASH_EQ] = ACTIONS(1417), - [anon_sym_PERCENT_EQ] = ACTIONS(1417), - [anon_sym_CARET_EQ] = ACTIONS(1417), - [anon_sym_AMP_EQ] = ACTIONS(1417), - [anon_sym_PIPE_EQ] = ACTIONS(1417), - [anon_sym_LT_LT_EQ] = ACTIONS(1417), - [anon_sym_GT_GT_EQ] = ACTIONS(1417), - [anon_sym_EQ] = ACTIONS(1419), - [anon_sym_EQ_EQ] = ACTIONS(1417), - [anon_sym_BANG_EQ] = ACTIONS(1417), - [anon_sym_GT] = ACTIONS(1419), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT_EQ] = ACTIONS(1417), - [anon_sym_LT_EQ] = ACTIONS(1417), - [anon_sym__] = ACTIONS(1419), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT] = ACTIONS(1419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1417), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1417), - [anon_sym_COMMA] = ACTIONS(1417), - [anon_sym_COLON_COLON] = ACTIONS(1417), - [anon_sym_POUND] = ACTIONS(1417), - [anon_sym_as] = ACTIONS(1419), - [anon_sym_const] = ACTIONS(1419), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_gen] = ACTIONS(1419), - [anon_sym_union] = ACTIONS(1419), - [anon_sym_ref] = ACTIONS(1419), - [sym_mutable_specifier] = ACTIONS(1419), - [sym_integer_literal] = ACTIONS(1417), - [aux_sym_string_literal_token1] = ACTIONS(1417), - [sym_char_literal] = ACTIONS(1417), - [anon_sym_true] = ACTIONS(1419), - [anon_sym_false] = ACTIONS(1419), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1419), - [sym_super] = ACTIONS(1419), - [sym_crate] = ACTIONS(1419), - [sym_metavariable] = ACTIONS(1417), - [sym__raw_string_literal_start] = ACTIONS(1417), - [sym_float_literal] = ACTIONS(1417), + [sym_identifier] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_QMARK] = ACTIONS(1399), + [anon_sym_u8] = ACTIONS(1401), + [anon_sym_i8] = ACTIONS(1401), + [anon_sym_u16] = ACTIONS(1401), + [anon_sym_i16] = ACTIONS(1401), + [anon_sym_u32] = ACTIONS(1401), + [anon_sym_i32] = ACTIONS(1401), + [anon_sym_u64] = ACTIONS(1401), + [anon_sym_i64] = ACTIONS(1401), + [anon_sym_u128] = ACTIONS(1401), + [anon_sym_i128] = ACTIONS(1401), + [anon_sym_isize] = ACTIONS(1401), + [anon_sym_usize] = ACTIONS(1401), + [anon_sym_f32] = ACTIONS(1401), + [anon_sym_f64] = ACTIONS(1401), + [anon_sym_bool] = ACTIONS(1401), + [anon_sym_str] = ACTIONS(1401), + [anon_sym_char] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_SLASH] = ACTIONS(1401), + [anon_sym_PERCENT] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_AMP_AMP] = ACTIONS(1399), + [anon_sym_PIPE_PIPE] = ACTIONS(1399), + [anon_sym_LT_LT] = ACTIONS(1401), + [anon_sym_GT_GT] = ACTIONS(1401), + [anon_sym_PLUS_EQ] = ACTIONS(1399), + [anon_sym_DASH_EQ] = ACTIONS(1399), + [anon_sym_STAR_EQ] = ACTIONS(1399), + [anon_sym_SLASH_EQ] = ACTIONS(1399), + [anon_sym_PERCENT_EQ] = ACTIONS(1399), + [anon_sym_CARET_EQ] = ACTIONS(1399), + [anon_sym_AMP_EQ] = ACTIONS(1399), + [anon_sym_PIPE_EQ] = ACTIONS(1399), + [anon_sym_LT_LT_EQ] = ACTIONS(1399), + [anon_sym_GT_GT_EQ] = ACTIONS(1399), + [anon_sym_EQ] = ACTIONS(1401), + [anon_sym_EQ_EQ] = ACTIONS(1399), + [anon_sym_BANG_EQ] = ACTIONS(1399), + [anon_sym_GT] = ACTIONS(1401), + [anon_sym_LT] = ACTIONS(1401), + [anon_sym_GT_EQ] = ACTIONS(1399), + [anon_sym_LT_EQ] = ACTIONS(1399), + [anon_sym__] = ACTIONS(1401), + [anon_sym_DOT] = ACTIONS(1401), + [anon_sym_DOT_DOT] = ACTIONS(1401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1399), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_COLON_COLON] = ACTIONS(1399), + [anon_sym_POUND] = ACTIONS(1399), + [anon_sym_as] = ACTIONS(1401), + [anon_sym_const] = ACTIONS(1401), + [anon_sym_default] = ACTIONS(1401), + [anon_sym_gen] = ACTIONS(1401), + [anon_sym_union] = ACTIONS(1401), + [anon_sym_ref] = ACTIONS(1401), + [sym_mutable_specifier] = ACTIONS(1401), + [sym_integer_literal] = ACTIONS(1399), + [aux_sym_string_literal_token1] = ACTIONS(1399), + [sym_char_literal] = ACTIONS(1399), + [anon_sym_true] = ACTIONS(1401), + [anon_sym_false] = ACTIONS(1401), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1401), + [sym_super] = ACTIONS(1401), + [sym_crate] = ACTIONS(1401), + [sym_metavariable] = ACTIONS(1399), + [sym__raw_string_literal_start] = ACTIONS(1399), + [sym_float_literal] = ACTIONS(1399), }, [STATE(483)] = { [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [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), + [sym_identifier] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_QMARK] = ACTIONS(1507), + [anon_sym_u8] = ACTIONS(1509), + [anon_sym_i8] = ACTIONS(1509), + [anon_sym_u16] = ACTIONS(1509), + [anon_sym_i16] = ACTIONS(1509), + [anon_sym_u32] = ACTIONS(1509), + [anon_sym_i32] = ACTIONS(1509), + [anon_sym_u64] = ACTIONS(1509), + [anon_sym_i64] = ACTIONS(1509), + [anon_sym_u128] = ACTIONS(1509), + [anon_sym_i128] = ACTIONS(1509), + [anon_sym_isize] = ACTIONS(1509), + [anon_sym_usize] = ACTIONS(1509), + [anon_sym_f32] = ACTIONS(1509), + [anon_sym_f64] = ACTIONS(1509), + [anon_sym_bool] = ACTIONS(1509), + [anon_sym_str] = ACTIONS(1509), + [anon_sym_char] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PERCENT] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_AMP_AMP] = ACTIONS(1507), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1509), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym__] = ACTIONS(1509), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT] = ACTIONS(1509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1507), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_COLON_COLON] = ACTIONS(1507), + [anon_sym_POUND] = ACTIONS(1507), + [anon_sym_as] = ACTIONS(1509), + [anon_sym_const] = ACTIONS(1509), + [anon_sym_default] = ACTIONS(1509), + [anon_sym_gen] = ACTIONS(1509), + [anon_sym_union] = ACTIONS(1509), + [anon_sym_ref] = ACTIONS(1509), + [sym_mutable_specifier] = ACTIONS(1509), + [sym_integer_literal] = ACTIONS(1507), + [aux_sym_string_literal_token1] = ACTIONS(1507), + [sym_char_literal] = ACTIONS(1507), + [anon_sym_true] = ACTIONS(1509), + [anon_sym_false] = ACTIONS(1509), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1509), + [sym_super] = ACTIONS(1509), + [sym_crate] = ACTIONS(1509), + [sym_metavariable] = ACTIONS(1507), + [sym__raw_string_literal_start] = ACTIONS(1507), + [sym_float_literal] = ACTIONS(1507), }, [STATE(484)] = { - [sym_attribute_item] = STATE(1423), - [sym_inner_attribute_item] = STATE(1423), - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_match_arm] = STATE(1424), - [sym_last_match_arm] = STATE(3540), - [sym_match_pattern] = STATE(3490), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2885), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), [sym_line_comment] = STATE(484), [sym_block_comment] = STATE(484), + [sym_identifier] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1455), + [anon_sym_u8] = ACTIONS(1457), + [anon_sym_i8] = ACTIONS(1457), + [anon_sym_u16] = ACTIONS(1457), + [anon_sym_i16] = ACTIONS(1457), + [anon_sym_u32] = ACTIONS(1457), + [anon_sym_i32] = ACTIONS(1457), + [anon_sym_u64] = ACTIONS(1457), + [anon_sym_i64] = ACTIONS(1457), + [anon_sym_u128] = ACTIONS(1457), + [anon_sym_i128] = ACTIONS(1457), + [anon_sym_isize] = ACTIONS(1457), + [anon_sym_usize] = ACTIONS(1457), + [anon_sym_f32] = ACTIONS(1457), + [anon_sym_f64] = ACTIONS(1457), + [anon_sym_bool] = ACTIONS(1457), + [anon_sym_str] = ACTIONS(1457), + [anon_sym_char] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_SLASH] = ACTIONS(1457), + [anon_sym_PERCENT] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_PIPE_PIPE] = ACTIONS(1455), + [anon_sym_LT_LT] = ACTIONS(1457), + [anon_sym_GT_GT] = ACTIONS(1457), + [anon_sym_PLUS_EQ] = ACTIONS(1455), + [anon_sym_DASH_EQ] = ACTIONS(1455), + [anon_sym_STAR_EQ] = ACTIONS(1455), + [anon_sym_SLASH_EQ] = ACTIONS(1455), + [anon_sym_PERCENT_EQ] = ACTIONS(1455), + [anon_sym_CARET_EQ] = ACTIONS(1455), + [anon_sym_AMP_EQ] = ACTIONS(1455), + [anon_sym_PIPE_EQ] = ACTIONS(1455), + [anon_sym_LT_LT_EQ] = ACTIONS(1455), + [anon_sym_GT_GT_EQ] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym__] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), + [anon_sym_COMMA] = ACTIONS(1455), + [anon_sym_COLON_COLON] = ACTIONS(1455), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1457), + [anon_sym_const] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_gen] = ACTIONS(1457), + [anon_sym_union] = ACTIONS(1457), + [anon_sym_ref] = ACTIONS(1457), + [sym_mutable_specifier] = ACTIONS(1457), + [sym_integer_literal] = ACTIONS(1455), + [aux_sym_string_literal_token1] = ACTIONS(1455), + [sym_char_literal] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1457), + [sym_super] = ACTIONS(1457), + [sym_crate] = ACTIONS(1457), + [sym_metavariable] = ACTIONS(1455), + [sym__raw_string_literal_start] = ACTIONS(1455), + [sym_float_literal] = ACTIONS(1455), + }, + [STATE(485)] = { + [sym_line_comment] = STATE(485), + [sym_block_comment] = STATE(485), + [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(486)] = { + [sym_attribute_item] = STATE(1469), + [sym_inner_attribute_item] = STATE(1469), + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_match_arm] = STATE(1470), + [sym_last_match_arm] = STATE(3352), + [sym_match_pattern] = STATE(3364), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2837), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), + [sym_line_comment] = STATE(486), + [sym_block_comment] = STATE(486), [aux_sym_match_block_repeat1] = STATE(491), - [aux_sym_match_arm_repeat1] = STATE(771), + [aux_sym_match_arm_repeat1] = STATE(768), [sym_identifier] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1649), [anon_sym_LBRACK] = ACTIONS(1651), @@ -70149,373 +70243,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, - [STATE(485)] = { - [sym_line_comment] = STATE(485), - [sym_block_comment] = STATE(485), - [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(486)] = { - [sym_line_comment] = STATE(486), - [sym_block_comment] = STATE(486), - [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(487)] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [sym_identifier] = ACTIONS(1701), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_QMARK] = ACTIONS(1489), - [anon_sym_u8] = ACTIONS(1701), - [anon_sym_i8] = ACTIONS(1701), - [anon_sym_u16] = ACTIONS(1701), - [anon_sym_i16] = ACTIONS(1701), - [anon_sym_u32] = ACTIONS(1701), - [anon_sym_i32] = ACTIONS(1701), - [anon_sym_u64] = ACTIONS(1701), - [anon_sym_i64] = ACTIONS(1701), - [anon_sym_u128] = ACTIONS(1701), - [anon_sym_i128] = ACTIONS(1701), - [anon_sym_isize] = ACTIONS(1701), - [anon_sym_usize] = ACTIONS(1701), - [anon_sym_f32] = ACTIONS(1701), - [anon_sym_f64] = ACTIONS(1701), - [anon_sym_bool] = ACTIONS(1701), - [anon_sym_str] = ACTIONS(1701), - [anon_sym_char] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_AMP] = ACTIONS(1701), - [anon_sym_PIPE] = ACTIONS(1701), - [anon_sym_AMP_AMP] = ACTIONS(1489), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_PLUS_EQ] = ACTIONS(1489), - [anon_sym_DASH_EQ] = ACTIONS(1489), - [anon_sym_STAR_EQ] = ACTIONS(1489), - [anon_sym_SLASH_EQ] = ACTIONS(1489), - [anon_sym_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_CARET_EQ] = ACTIONS(1489), - [anon_sym_AMP_EQ] = ACTIONS(1489), - [anon_sym_PIPE_EQ] = ACTIONS(1489), - [anon_sym_LT_LT_EQ] = ACTIONS(1489), - [anon_sym_GT_GT_EQ] = ACTIONS(1489), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT] = ACTIONS(1701), - [anon_sym_GT_EQ] = ACTIONS(1489), - [anon_sym_LT_EQ] = ACTIONS(1489), - [anon_sym__] = ACTIONS(1701), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1489), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1489), - [anon_sym_COMMA] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(1703), - [anon_sym_as] = ACTIONS(1487), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_gen] = ACTIONS(1701), - [anon_sym_union] = ACTIONS(1701), - [anon_sym_ref] = ACTIONS(1701), - [sym_mutable_specifier] = ACTIONS(1701), - [sym_integer_literal] = ACTIONS(1703), - [aux_sym_string_literal_token1] = ACTIONS(1703), - [sym_char_literal] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1701), - [anon_sym_false] = ACTIONS(1701), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1701), - [sym_super] = ACTIONS(1701), - [sym_crate] = ACTIONS(1701), - [sym_metavariable] = ACTIONS(1703), - [sym__raw_string_literal_start] = ACTIONS(1703), - [sym_float_literal] = ACTIONS(1703), + [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(488)] = { + [sym_attribute_item] = STATE(1469), + [sym_inner_attribute_item] = STATE(1469), + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_match_arm] = STATE(1470), + [sym_last_match_arm] = STATE(3454), + [sym_match_pattern] = STATE(3364), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2837), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), [sym_line_comment] = STATE(488), [sym_block_comment] = STATE(488), - [sym_identifier] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1395), - [anon_sym_u8] = ACTIONS(1397), - [anon_sym_i8] = ACTIONS(1397), - [anon_sym_u16] = ACTIONS(1397), - [anon_sym_i16] = ACTIONS(1397), - [anon_sym_u32] = ACTIONS(1397), - [anon_sym_i32] = ACTIONS(1397), - [anon_sym_u64] = ACTIONS(1397), - [anon_sym_i64] = ACTIONS(1397), - [anon_sym_u128] = ACTIONS(1397), - [anon_sym_i128] = ACTIONS(1397), - [anon_sym_isize] = ACTIONS(1397), - [anon_sym_usize] = ACTIONS(1397), - [anon_sym_f32] = ACTIONS(1397), - [anon_sym_f64] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_str] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_LT_LT] = ACTIONS(1397), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_PLUS_EQ] = ACTIONS(1395), - [anon_sym_DASH_EQ] = ACTIONS(1395), - [anon_sym_STAR_EQ] = ACTIONS(1395), - [anon_sym_SLASH_EQ] = ACTIONS(1395), - [anon_sym_PERCENT_EQ] = ACTIONS(1395), - [anon_sym_CARET_EQ] = ACTIONS(1395), - [anon_sym_AMP_EQ] = ACTIONS(1395), - [anon_sym_PIPE_EQ] = ACTIONS(1395), - [anon_sym_LT_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym__] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_gen] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1397), - [sym_mutable_specifier] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1395), - [aux_sym_string_literal_token1] = ACTIONS(1395), - [sym_char_literal] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_crate] = ACTIONS(1397), - [sym_metavariable] = ACTIONS(1395), - [sym__raw_string_literal_start] = ACTIONS(1395), - [sym_float_literal] = ACTIONS(1395), - }, - [STATE(489)] = { - [sym_attribute_item] = STATE(1423), - [sym_inner_attribute_item] = STATE(1423), - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_match_arm] = STATE(1424), - [sym_last_match_arm] = STATE(3439), - [sym_match_pattern] = STATE(3490), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2885), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), - [sym_line_comment] = STATE(489), - [sym_block_comment] = STATE(489), [aux_sym_match_block_repeat1] = STATE(491), - [aux_sym_match_arm_repeat1] = STATE(771), + [aux_sym_match_arm_repeat1] = STATE(768), [sym_identifier] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1649), [anon_sym_LBRACK] = ACTIONS(1651), @@ -70564,123 +70409,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, + [STATE(489)] = { + [sym_line_comment] = STATE(489), + [sym_block_comment] = STATE(489), + [sym_identifier] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_QMARK] = ACTIONS(1477), + [anon_sym_u8] = ACTIONS(1479), + [anon_sym_i8] = ACTIONS(1479), + [anon_sym_u16] = ACTIONS(1479), + [anon_sym_i16] = ACTIONS(1479), + [anon_sym_u32] = ACTIONS(1479), + [anon_sym_i32] = ACTIONS(1479), + [anon_sym_u64] = ACTIONS(1479), + [anon_sym_i64] = ACTIONS(1479), + [anon_sym_u128] = ACTIONS(1479), + [anon_sym_i128] = ACTIONS(1479), + [anon_sym_isize] = ACTIONS(1479), + [anon_sym_usize] = ACTIONS(1479), + [anon_sym_f32] = ACTIONS(1479), + [anon_sym_f64] = ACTIONS(1479), + [anon_sym_bool] = ACTIONS(1479), + [anon_sym_str] = ACTIONS(1479), + [anon_sym_char] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_AMP_AMP] = ACTIONS(1477), + [anon_sym_PIPE_PIPE] = ACTIONS(1477), + [anon_sym_LT_LT] = ACTIONS(1479), + [anon_sym_GT_GT] = ACTIONS(1479), + [anon_sym_PLUS_EQ] = ACTIONS(1477), + [anon_sym_DASH_EQ] = ACTIONS(1477), + [anon_sym_STAR_EQ] = ACTIONS(1477), + [anon_sym_SLASH_EQ] = ACTIONS(1477), + [anon_sym_PERCENT_EQ] = ACTIONS(1477), + [anon_sym_CARET_EQ] = ACTIONS(1477), + [anon_sym_AMP_EQ] = ACTIONS(1477), + [anon_sym_PIPE_EQ] = ACTIONS(1477), + [anon_sym_LT_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_GT_EQ] = ACTIONS(1477), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_EQ_EQ] = ACTIONS(1477), + [anon_sym_BANG_EQ] = ACTIONS(1477), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym__] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1479), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1477), + [anon_sym_COMMA] = ACTIONS(1477), + [anon_sym_COLON_COLON] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(1477), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_gen] = ACTIONS(1479), + [anon_sym_union] = ACTIONS(1479), + [anon_sym_ref] = ACTIONS(1479), + [sym_mutable_specifier] = ACTIONS(1479), + [sym_integer_literal] = ACTIONS(1477), + [aux_sym_string_literal_token1] = ACTIONS(1477), + [sym_char_literal] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1479), + [anon_sym_false] = ACTIONS(1479), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1479), + [sym_super] = ACTIONS(1479), + [sym_crate] = ACTIONS(1479), + [sym_metavariable] = ACTIONS(1477), + [sym__raw_string_literal_start] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1477), + }, [STATE(490)] = { + [sym_attribute_item] = STATE(1469), + [sym_inner_attribute_item] = STATE(1469), + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_match_arm] = STATE(1470), + [sym_last_match_arm] = STATE(3398), + [sym_match_pattern] = STATE(3364), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2837), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [sym_identifier] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1421), - [anon_sym_RBRACE] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_QMARK] = ACTIONS(1421), - [anon_sym_u8] = ACTIONS(1423), - [anon_sym_i8] = ACTIONS(1423), - [anon_sym_u16] = ACTIONS(1423), - [anon_sym_i16] = ACTIONS(1423), - [anon_sym_u32] = ACTIONS(1423), - [anon_sym_i32] = ACTIONS(1423), - [anon_sym_u64] = ACTIONS(1423), - [anon_sym_i64] = ACTIONS(1423), - [anon_sym_u128] = ACTIONS(1423), - [anon_sym_i128] = ACTIONS(1423), - [anon_sym_isize] = ACTIONS(1423), - [anon_sym_usize] = ACTIONS(1423), - [anon_sym_f32] = ACTIONS(1423), - [anon_sym_f64] = ACTIONS(1423), - [anon_sym_bool] = ACTIONS(1423), - [anon_sym_str] = ACTIONS(1423), - [anon_sym_char] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(1423), - [anon_sym_PERCENT] = ACTIONS(1423), - [anon_sym_CARET] = ACTIONS(1423), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_AMP_AMP] = ACTIONS(1421), - [anon_sym_PIPE_PIPE] = ACTIONS(1421), - [anon_sym_LT_LT] = ACTIONS(1423), - [anon_sym_GT_GT] = ACTIONS(1423), - [anon_sym_PLUS_EQ] = ACTIONS(1421), - [anon_sym_DASH_EQ] = ACTIONS(1421), - [anon_sym_STAR_EQ] = ACTIONS(1421), - [anon_sym_SLASH_EQ] = ACTIONS(1421), - [anon_sym_PERCENT_EQ] = ACTIONS(1421), - [anon_sym_CARET_EQ] = ACTIONS(1421), - [anon_sym_AMP_EQ] = ACTIONS(1421), - [anon_sym_PIPE_EQ] = ACTIONS(1421), - [anon_sym_LT_LT_EQ] = ACTIONS(1421), - [anon_sym_GT_GT_EQ] = ACTIONS(1421), - [anon_sym_EQ] = ACTIONS(1423), - [anon_sym_EQ_EQ] = ACTIONS(1421), - [anon_sym_BANG_EQ] = ACTIONS(1421), - [anon_sym_GT] = ACTIONS(1423), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_GT_EQ] = ACTIONS(1421), - [anon_sym_LT_EQ] = ACTIONS(1421), - [anon_sym__] = ACTIONS(1423), - [anon_sym_DOT] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1421), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1421), - [anon_sym_COMMA] = ACTIONS(1421), - [anon_sym_COLON_COLON] = ACTIONS(1421), - [anon_sym_POUND] = ACTIONS(1421), - [anon_sym_as] = ACTIONS(1423), - [anon_sym_const] = ACTIONS(1423), - [anon_sym_default] = ACTIONS(1423), - [anon_sym_gen] = ACTIONS(1423), - [anon_sym_union] = ACTIONS(1423), - [anon_sym_ref] = ACTIONS(1423), - [sym_mutable_specifier] = ACTIONS(1423), - [sym_integer_literal] = ACTIONS(1421), - [aux_sym_string_literal_token1] = ACTIONS(1421), - [sym_char_literal] = ACTIONS(1421), - [anon_sym_true] = ACTIONS(1423), - [anon_sym_false] = ACTIONS(1423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1423), - [sym_super] = ACTIONS(1423), - [sym_crate] = ACTIONS(1423), - [sym_metavariable] = ACTIONS(1421), - [sym__raw_string_literal_start] = ACTIONS(1421), - [sym_float_literal] = ACTIONS(1421), + [aux_sym_match_block_repeat1] = STATE(491), + [aux_sym_match_arm_repeat1] = STATE(768), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_POUND] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), }, [STATE(491)] = { - [sym_attribute_item] = STATE(1423), - [sym_inner_attribute_item] = STATE(1423), - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_match_arm] = STATE(1424), - [sym_match_pattern] = STATE(3500), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2885), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), + [sym_attribute_item] = STATE(1469), + [sym_inner_attribute_item] = STATE(1469), + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_match_arm] = STATE(1470), + [sym_match_pattern] = STATE(3445), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2837), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), [aux_sym_match_block_repeat1] = STATE(491), - [aux_sym_match_arm_repeat1] = STATE(769), + [aux_sym_match_arm_repeat1] = STATE(773), [sym_identifier] = ACTIONS(1705), [anon_sym_LPAREN] = ACTIONS(1708), [anon_sym_LBRACK] = ACTIONS(1711), @@ -75185,6407 +75113,6164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1987), }, [STATE(547)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym_closure_expression] = STATE(2891), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2625), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), [sym_line_comment] = STATE(547), [sym_block_comment] = STATE(547), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [ts_builtin_sym_end] = ACTIONS(1991), + [sym_identifier] = ACTIONS(1993), + [anon_sym_SEMI] = ACTIONS(1991), + [anon_sym_macro_rules_BANG] = ACTIONS(1991), + [anon_sym_LPAREN] = ACTIONS(1991), + [anon_sym_LBRACK] = ACTIONS(1991), + [anon_sym_LBRACE] = ACTIONS(1991), + [anon_sym_RBRACE] = ACTIONS(1991), + [anon_sym_STAR] = ACTIONS(1991), + [anon_sym_u8] = ACTIONS(1993), + [anon_sym_i8] = ACTIONS(1993), + [anon_sym_u16] = ACTIONS(1993), + [anon_sym_i16] = ACTIONS(1993), + [anon_sym_u32] = ACTIONS(1993), + [anon_sym_i32] = ACTIONS(1993), + [anon_sym_u64] = ACTIONS(1993), + [anon_sym_i64] = ACTIONS(1993), + [anon_sym_u128] = ACTIONS(1993), + [anon_sym_i128] = ACTIONS(1993), + [anon_sym_isize] = ACTIONS(1993), + [anon_sym_usize] = ACTIONS(1993), + [anon_sym_f32] = ACTIONS(1993), + [anon_sym_f64] = ACTIONS(1993), + [anon_sym_bool] = ACTIONS(1993), + [anon_sym_str] = ACTIONS(1993), + [anon_sym_char] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1991), + [anon_sym_BANG] = ACTIONS(1991), + [anon_sym_AMP] = ACTIONS(1991), + [anon_sym_PIPE] = ACTIONS(1991), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_DOT_DOT] = ACTIONS(1991), + [anon_sym_COLON_COLON] = ACTIONS(1991), + [anon_sym_POUND] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_async] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_default] = ACTIONS(1993), + [anon_sym_enum] = ACTIONS(1993), + [anon_sym_fn] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_gen] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_impl] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_mod] = ACTIONS(1993), + [anon_sym_pub] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_static] = ACTIONS(1993), + [anon_sym_struct] = ACTIONS(1993), + [anon_sym_trait] = ACTIONS(1993), + [anon_sym_type] = ACTIONS(1993), + [anon_sym_union] = ACTIONS(1993), + [anon_sym_unsafe] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_yield] = ACTIONS(1993), + [anon_sym_move] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1993), + [sym_integer_literal] = ACTIONS(1991), + [aux_sym_string_literal_token1] = ACTIONS(1991), + [sym_char_literal] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(1993), + [anon_sym_false] = ACTIONS(1993), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1993), + [sym_super] = ACTIONS(1993), + [sym_crate] = ACTIONS(1993), + [sym_metavariable] = ACTIONS(1991), + [sym__raw_string_literal_start] = ACTIONS(1991), + [sym_float_literal] = ACTIONS(1991), }, [STATE(548)] = { [sym_line_comment] = STATE(548), [sym_block_comment] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(2013), - [sym_identifier] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2013), - [anon_sym_macro_rules_BANG] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2013), - [anon_sym_LBRACE] = ACTIONS(2013), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_u8] = ACTIONS(2015), - [anon_sym_i8] = ACTIONS(2015), - [anon_sym_u16] = ACTIONS(2015), - [anon_sym_i16] = ACTIONS(2015), - [anon_sym_u32] = ACTIONS(2015), - [anon_sym_i32] = ACTIONS(2015), - [anon_sym_u64] = ACTIONS(2015), - [anon_sym_i64] = ACTIONS(2015), - [anon_sym_u128] = ACTIONS(2015), - [anon_sym_i128] = ACTIONS(2015), - [anon_sym_isize] = ACTIONS(2015), - [anon_sym_usize] = ACTIONS(2015), - [anon_sym_f32] = ACTIONS(2015), - [anon_sym_f64] = ACTIONS(2015), - [anon_sym_bool] = ACTIONS(2015), - [anon_sym_str] = ACTIONS(2015), - [anon_sym_char] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2013), - [anon_sym_AMP] = ACTIONS(2013), - [anon_sym_PIPE] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_DOT_DOT] = ACTIONS(2013), - [anon_sym_COLON_COLON] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2013), - [anon_sym_SQUOTE] = ACTIONS(2015), - [anon_sym_async] = ACTIONS(2015), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_const] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_default] = ACTIONS(2015), - [anon_sym_enum] = ACTIONS(2015), - [anon_sym_fn] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_gen] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_impl] = ACTIONS(2015), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_loop] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), - [anon_sym_mod] = ACTIONS(2015), - [anon_sym_pub] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_static] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(2015), - [anon_sym_trait] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2015), - [anon_sym_union] = ACTIONS(2015), - [anon_sym_unsafe] = ACTIONS(2015), - [anon_sym_use] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_extern] = ACTIONS(2015), - [anon_sym_yield] = ACTIONS(2015), - [anon_sym_move] = ACTIONS(2015), - [anon_sym_try] = ACTIONS(2015), - [sym_integer_literal] = ACTIONS(2013), - [aux_sym_string_literal_token1] = ACTIONS(2013), - [sym_char_literal] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2015), - [sym_super] = ACTIONS(2015), - [sym_crate] = ACTIONS(2015), - [sym_metavariable] = ACTIONS(2013), - [sym__raw_string_literal_start] = ACTIONS(2013), - [sym_float_literal] = ACTIONS(2013), + [ts_builtin_sym_end] = ACTIONS(1995), + [sym_identifier] = ACTIONS(1997), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_macro_rules_BANG] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(1995), + [anon_sym_u8] = ACTIONS(1997), + [anon_sym_i8] = ACTIONS(1997), + [anon_sym_u16] = ACTIONS(1997), + [anon_sym_i16] = ACTIONS(1997), + [anon_sym_u32] = ACTIONS(1997), + [anon_sym_i32] = ACTIONS(1997), + [anon_sym_u64] = ACTIONS(1997), + [anon_sym_i64] = ACTIONS(1997), + [anon_sym_u128] = ACTIONS(1997), + [anon_sym_i128] = ACTIONS(1997), + [anon_sym_isize] = ACTIONS(1997), + [anon_sym_usize] = ACTIONS(1997), + [anon_sym_f32] = ACTIONS(1997), + [anon_sym_f64] = ACTIONS(1997), + [anon_sym_bool] = ACTIONS(1997), + [anon_sym_str] = ACTIONS(1997), + [anon_sym_char] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1995), + [anon_sym_COLON_COLON] = ACTIONS(1995), + [anon_sym_POUND] = ACTIONS(1995), + [anon_sym_SQUOTE] = ACTIONS(1997), + [anon_sym_async] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_default] = ACTIONS(1997), + [anon_sym_enum] = ACTIONS(1997), + [anon_sym_fn] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_gen] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_impl] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_mod] = ACTIONS(1997), + [anon_sym_pub] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_static] = ACTIONS(1997), + [anon_sym_struct] = ACTIONS(1997), + [anon_sym_trait] = ACTIONS(1997), + [anon_sym_type] = ACTIONS(1997), + [anon_sym_union] = ACTIONS(1997), + [anon_sym_unsafe] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_yield] = ACTIONS(1997), + [anon_sym_move] = ACTIONS(1997), + [anon_sym_try] = ACTIONS(1997), + [sym_integer_literal] = ACTIONS(1995), + [aux_sym_string_literal_token1] = ACTIONS(1995), + [sym_char_literal] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = ACTIONS(1997), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1997), + [sym_super] = ACTIONS(1997), + [sym_crate] = ACTIONS(1997), + [sym_metavariable] = ACTIONS(1995), + [sym__raw_string_literal_start] = ACTIONS(1995), + [sym_float_literal] = ACTIONS(1995), }, [STATE(549)] = { [sym_line_comment] = STATE(549), [sym_block_comment] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(2017), - [sym_identifier] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_macro_rules_BANG] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2017), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_BANG] = ACTIONS(2017), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2017), - [anon_sym_COLON_COLON] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(2017), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_gen] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_yield] = ACTIONS(2019), - [anon_sym_move] = ACTIONS(2019), - [anon_sym_try] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(2017), - [aux_sym_string_literal_token1] = ACTIONS(2017), - [sym_char_literal] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2019), - [anon_sym_false] = ACTIONS(2019), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2017), - [sym__raw_string_literal_start] = ACTIONS(2017), - [sym_float_literal] = ACTIONS(2017), + [ts_builtin_sym_end] = ACTIONS(1999), + [sym_identifier] = ACTIONS(2001), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_macro_rules_BANG] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_STAR] = ACTIONS(1999), + [anon_sym_u8] = ACTIONS(2001), + [anon_sym_i8] = ACTIONS(2001), + [anon_sym_u16] = ACTIONS(2001), + [anon_sym_i16] = ACTIONS(2001), + [anon_sym_u32] = ACTIONS(2001), + [anon_sym_i32] = ACTIONS(2001), + [anon_sym_u64] = ACTIONS(2001), + [anon_sym_i64] = ACTIONS(2001), + [anon_sym_u128] = ACTIONS(2001), + [anon_sym_i128] = ACTIONS(2001), + [anon_sym_isize] = ACTIONS(2001), + [anon_sym_usize] = ACTIONS(2001), + [anon_sym_f32] = ACTIONS(2001), + [anon_sym_f64] = ACTIONS(2001), + [anon_sym_bool] = ACTIONS(2001), + [anon_sym_str] = ACTIONS(2001), + [anon_sym_char] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1999), + [anon_sym_AMP] = ACTIONS(1999), + [anon_sym_PIPE] = ACTIONS(1999), + [anon_sym_LT] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(1999), + [anon_sym_COLON_COLON] = ACTIONS(1999), + [anon_sym_POUND] = ACTIONS(1999), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_async] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_default] = ACTIONS(2001), + [anon_sym_enum] = ACTIONS(2001), + [anon_sym_fn] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_gen] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_impl] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_mod] = ACTIONS(2001), + [anon_sym_pub] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_static] = ACTIONS(2001), + [anon_sym_struct] = ACTIONS(2001), + [anon_sym_trait] = ACTIONS(2001), + [anon_sym_type] = ACTIONS(2001), + [anon_sym_union] = ACTIONS(2001), + [anon_sym_unsafe] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_yield] = ACTIONS(2001), + [anon_sym_move] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [sym_integer_literal] = ACTIONS(1999), + [aux_sym_string_literal_token1] = ACTIONS(1999), + [sym_char_literal] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2001), + [sym_super] = ACTIONS(2001), + [sym_crate] = ACTIONS(2001), + [sym_metavariable] = ACTIONS(1999), + [sym__raw_string_literal_start] = ACTIONS(1999), + [sym_float_literal] = ACTIONS(1999), }, [STATE(550)] = { [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(2021), - [sym_identifier] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_macro_rules_BANG] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_u8] = ACTIONS(2023), - [anon_sym_i8] = ACTIONS(2023), - [anon_sym_u16] = ACTIONS(2023), - [anon_sym_i16] = ACTIONS(2023), - [anon_sym_u32] = ACTIONS(2023), - [anon_sym_i32] = ACTIONS(2023), - [anon_sym_u64] = ACTIONS(2023), - [anon_sym_i64] = ACTIONS(2023), - [anon_sym_u128] = ACTIONS(2023), - [anon_sym_i128] = ACTIONS(2023), - [anon_sym_isize] = ACTIONS(2023), - [anon_sym_usize] = ACTIONS(2023), - [anon_sym_f32] = ACTIONS(2023), - [anon_sym_f64] = ACTIONS(2023), - [anon_sym_bool] = ACTIONS(2023), - [anon_sym_str] = ACTIONS(2023), - [anon_sym_char] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_COLON_COLON] = ACTIONS(2021), - [anon_sym_POUND] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(2023), - [anon_sym_async] = ACTIONS(2023), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_const] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_default] = ACTIONS(2023), - [anon_sym_enum] = ACTIONS(2023), - [anon_sym_fn] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [anon_sym_gen] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_impl] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2023), - [anon_sym_loop] = ACTIONS(2023), - [anon_sym_match] = ACTIONS(2023), - [anon_sym_mod] = ACTIONS(2023), - [anon_sym_pub] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2023), - [anon_sym_static] = ACTIONS(2023), - [anon_sym_struct] = ACTIONS(2023), - [anon_sym_trait] = ACTIONS(2023), - [anon_sym_type] = ACTIONS(2023), - [anon_sym_union] = ACTIONS(2023), - [anon_sym_unsafe] = ACTIONS(2023), - [anon_sym_use] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_extern] = ACTIONS(2023), - [anon_sym_yield] = ACTIONS(2023), - [anon_sym_move] = ACTIONS(2023), - [anon_sym_try] = ACTIONS(2023), - [sym_integer_literal] = ACTIONS(2021), - [aux_sym_string_literal_token1] = ACTIONS(2021), - [sym_char_literal] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(2023), - [anon_sym_false] = ACTIONS(2023), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2023), - [sym_super] = ACTIONS(2023), - [sym_crate] = ACTIONS(2023), - [sym_metavariable] = ACTIONS(2021), - [sym__raw_string_literal_start] = ACTIONS(2021), - [sym_float_literal] = ACTIONS(2021), + [ts_builtin_sym_end] = ACTIONS(2003), + [sym_identifier] = ACTIONS(2005), + [anon_sym_SEMI] = ACTIONS(2003), + [anon_sym_macro_rules_BANG] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2003), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_STAR] = ACTIONS(2003), + [anon_sym_u8] = ACTIONS(2005), + [anon_sym_i8] = ACTIONS(2005), + [anon_sym_u16] = ACTIONS(2005), + [anon_sym_i16] = ACTIONS(2005), + [anon_sym_u32] = ACTIONS(2005), + [anon_sym_i32] = ACTIONS(2005), + [anon_sym_u64] = ACTIONS(2005), + [anon_sym_i64] = ACTIONS(2005), + [anon_sym_u128] = ACTIONS(2005), + [anon_sym_i128] = ACTIONS(2005), + [anon_sym_isize] = ACTIONS(2005), + [anon_sym_usize] = ACTIONS(2005), + [anon_sym_f32] = ACTIONS(2005), + [anon_sym_f64] = ACTIONS(2005), + [anon_sym_bool] = ACTIONS(2005), + [anon_sym_str] = ACTIONS(2005), + [anon_sym_char] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2003), + [anon_sym_BANG] = ACTIONS(2003), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_LT] = ACTIONS(2003), + [anon_sym_DOT_DOT] = ACTIONS(2003), + [anon_sym_COLON_COLON] = ACTIONS(2003), + [anon_sym_POUND] = ACTIONS(2003), + [anon_sym_SQUOTE] = ACTIONS(2005), + [anon_sym_async] = ACTIONS(2005), + [anon_sym_break] = ACTIONS(2005), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_default] = ACTIONS(2005), + [anon_sym_enum] = ACTIONS(2005), + [anon_sym_fn] = ACTIONS(2005), + [anon_sym_for] = ACTIONS(2005), + [anon_sym_gen] = ACTIONS(2005), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_impl] = ACTIONS(2005), + [anon_sym_let] = ACTIONS(2005), + [anon_sym_loop] = ACTIONS(2005), + [anon_sym_match] = ACTIONS(2005), + [anon_sym_mod] = ACTIONS(2005), + [anon_sym_pub] = ACTIONS(2005), + [anon_sym_return] = ACTIONS(2005), + [anon_sym_static] = ACTIONS(2005), + [anon_sym_struct] = ACTIONS(2005), + [anon_sym_trait] = ACTIONS(2005), + [anon_sym_type] = ACTIONS(2005), + [anon_sym_union] = ACTIONS(2005), + [anon_sym_unsafe] = ACTIONS(2005), + [anon_sym_use] = ACTIONS(2005), + [anon_sym_while] = ACTIONS(2005), + [anon_sym_extern] = ACTIONS(2005), + [anon_sym_yield] = ACTIONS(2005), + [anon_sym_move] = ACTIONS(2005), + [anon_sym_try] = ACTIONS(2005), + [sym_integer_literal] = ACTIONS(2003), + [aux_sym_string_literal_token1] = ACTIONS(2003), + [sym_char_literal] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(2005), + [anon_sym_false] = ACTIONS(2005), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2005), + [sym_super] = ACTIONS(2005), + [sym_crate] = ACTIONS(2005), + [sym_metavariable] = ACTIONS(2003), + [sym__raw_string_literal_start] = ACTIONS(2003), + [sym_float_literal] = ACTIONS(2003), }, [STATE(551)] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(2025), - [sym_identifier] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_macro_rules_BANG] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_STAR] = ACTIONS(2025), - [anon_sym_u8] = ACTIONS(2027), - [anon_sym_i8] = ACTIONS(2027), - [anon_sym_u16] = ACTIONS(2027), - [anon_sym_i16] = ACTIONS(2027), - [anon_sym_u32] = ACTIONS(2027), - [anon_sym_i32] = ACTIONS(2027), - [anon_sym_u64] = ACTIONS(2027), - [anon_sym_i64] = ACTIONS(2027), - [anon_sym_u128] = ACTIONS(2027), - [anon_sym_i128] = ACTIONS(2027), - [anon_sym_isize] = ACTIONS(2027), - [anon_sym_usize] = ACTIONS(2027), - [anon_sym_f32] = ACTIONS(2027), - [anon_sym_f64] = ACTIONS(2027), - [anon_sym_bool] = ACTIONS(2027), - [anon_sym_str] = ACTIONS(2027), - [anon_sym_char] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2025), - [anon_sym_BANG] = ACTIONS(2025), - [anon_sym_AMP] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_LT] = ACTIONS(2025), - [anon_sym_DOT_DOT] = ACTIONS(2025), - [anon_sym_COLON_COLON] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(2025), - [anon_sym_SQUOTE] = ACTIONS(2027), - [anon_sym_async] = ACTIONS(2027), - [anon_sym_break] = ACTIONS(2027), - [anon_sym_const] = ACTIONS(2027), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_default] = ACTIONS(2027), - [anon_sym_enum] = ACTIONS(2027), - [anon_sym_fn] = ACTIONS(2027), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_gen] = ACTIONS(2027), - [anon_sym_if] = ACTIONS(2027), - [anon_sym_impl] = ACTIONS(2027), - [anon_sym_let] = ACTIONS(2027), - [anon_sym_loop] = ACTIONS(2027), - [anon_sym_match] = ACTIONS(2027), - [anon_sym_mod] = ACTIONS(2027), - [anon_sym_pub] = ACTIONS(2027), - [anon_sym_return] = ACTIONS(2027), - [anon_sym_static] = ACTIONS(2027), - [anon_sym_struct] = ACTIONS(2027), - [anon_sym_trait] = ACTIONS(2027), - [anon_sym_type] = ACTIONS(2027), - [anon_sym_union] = ACTIONS(2027), - [anon_sym_unsafe] = ACTIONS(2027), - [anon_sym_use] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [anon_sym_extern] = ACTIONS(2027), - [anon_sym_yield] = ACTIONS(2027), - [anon_sym_move] = ACTIONS(2027), - [anon_sym_try] = ACTIONS(2027), - [sym_integer_literal] = ACTIONS(2025), - [aux_sym_string_literal_token1] = ACTIONS(2025), - [sym_char_literal] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(2027), - [anon_sym_false] = ACTIONS(2027), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2027), - [sym_super] = ACTIONS(2027), - [sym_crate] = ACTIONS(2027), - [sym_metavariable] = ACTIONS(2025), - [sym__raw_string_literal_start] = ACTIONS(2025), - [sym_float_literal] = ACTIONS(2025), + [ts_builtin_sym_end] = ACTIONS(2007), + [sym_identifier] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(2007), + [anon_sym_macro_rules_BANG] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_u8] = ACTIONS(2009), + [anon_sym_i8] = ACTIONS(2009), + [anon_sym_u16] = ACTIONS(2009), + [anon_sym_i16] = ACTIONS(2009), + [anon_sym_u32] = ACTIONS(2009), + [anon_sym_i32] = ACTIONS(2009), + [anon_sym_u64] = ACTIONS(2009), + [anon_sym_i64] = ACTIONS(2009), + [anon_sym_u128] = ACTIONS(2009), + [anon_sym_i128] = ACTIONS(2009), + [anon_sym_isize] = ACTIONS(2009), + [anon_sym_usize] = ACTIONS(2009), + [anon_sym_f32] = ACTIONS(2009), + [anon_sym_f64] = ACTIONS(2009), + [anon_sym_bool] = ACTIONS(2009), + [anon_sym_str] = ACTIONS(2009), + [anon_sym_char] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2007), + [anon_sym_BANG] = ACTIONS(2007), + [anon_sym_AMP] = ACTIONS(2007), + [anon_sym_PIPE] = ACTIONS(2007), + [anon_sym_LT] = ACTIONS(2007), + [anon_sym_DOT_DOT] = ACTIONS(2007), + [anon_sym_COLON_COLON] = ACTIONS(2007), + [anon_sym_POUND] = ACTIONS(2007), + [anon_sym_SQUOTE] = ACTIONS(2009), + [anon_sym_async] = ACTIONS(2009), + [anon_sym_break] = ACTIONS(2009), + [anon_sym_const] = ACTIONS(2009), + [anon_sym_continue] = ACTIONS(2009), + [anon_sym_default] = ACTIONS(2009), + [anon_sym_enum] = ACTIONS(2009), + [anon_sym_fn] = ACTIONS(2009), + [anon_sym_for] = ACTIONS(2009), + [anon_sym_gen] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2009), + [anon_sym_impl] = ACTIONS(2009), + [anon_sym_let] = ACTIONS(2009), + [anon_sym_loop] = ACTIONS(2009), + [anon_sym_match] = ACTIONS(2009), + [anon_sym_mod] = ACTIONS(2009), + [anon_sym_pub] = ACTIONS(2009), + [anon_sym_return] = ACTIONS(2009), + [anon_sym_static] = ACTIONS(2009), + [anon_sym_struct] = ACTIONS(2009), + [anon_sym_trait] = ACTIONS(2009), + [anon_sym_type] = ACTIONS(2009), + [anon_sym_union] = ACTIONS(2009), + [anon_sym_unsafe] = ACTIONS(2009), + [anon_sym_use] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_extern] = ACTIONS(2009), + [anon_sym_yield] = ACTIONS(2009), + [anon_sym_move] = ACTIONS(2009), + [anon_sym_try] = ACTIONS(2009), + [sym_integer_literal] = ACTIONS(2007), + [aux_sym_string_literal_token1] = ACTIONS(2007), + [sym_char_literal] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2009), + [anon_sym_false] = ACTIONS(2009), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2009), + [sym_super] = ACTIONS(2009), + [sym_crate] = ACTIONS(2009), + [sym_metavariable] = ACTIONS(2007), + [sym__raw_string_literal_start] = ACTIONS(2007), + [sym_float_literal] = ACTIONS(2007), }, [STATE(552)] = { [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(2029), - [sym_identifier] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2029), - [anon_sym_macro_rules_BANG] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2031), - [anon_sym_i8] = ACTIONS(2031), - [anon_sym_u16] = ACTIONS(2031), - [anon_sym_i16] = ACTIONS(2031), - [anon_sym_u32] = ACTIONS(2031), - [anon_sym_i32] = ACTIONS(2031), - [anon_sym_u64] = ACTIONS(2031), - [anon_sym_i64] = ACTIONS(2031), - [anon_sym_u128] = ACTIONS(2031), - [anon_sym_i128] = ACTIONS(2031), - [anon_sym_isize] = ACTIONS(2031), - [anon_sym_usize] = ACTIONS(2031), - [anon_sym_f32] = ACTIONS(2031), - [anon_sym_f64] = ACTIONS(2031), - [anon_sym_bool] = ACTIONS(2031), - [anon_sym_str] = ACTIONS(2031), - [anon_sym_char] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym_DOT_DOT] = ACTIONS(2029), - [anon_sym_COLON_COLON] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(2029), - [anon_sym_SQUOTE] = ACTIONS(2031), - [anon_sym_async] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_default] = ACTIONS(2031), - [anon_sym_enum] = ACTIONS(2031), - [anon_sym_fn] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_gen] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_impl] = ACTIONS(2031), - [anon_sym_let] = ACTIONS(2031), - [anon_sym_loop] = ACTIONS(2031), - [anon_sym_match] = ACTIONS(2031), - [anon_sym_mod] = ACTIONS(2031), - [anon_sym_pub] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_static] = ACTIONS(2031), - [anon_sym_struct] = ACTIONS(2031), - [anon_sym_trait] = ACTIONS(2031), - [anon_sym_type] = ACTIONS(2031), - [anon_sym_union] = ACTIONS(2031), - [anon_sym_unsafe] = ACTIONS(2031), - [anon_sym_use] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_extern] = ACTIONS(2031), - [anon_sym_yield] = ACTIONS(2031), - [anon_sym_move] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2031), - [sym_integer_literal] = ACTIONS(2029), - [aux_sym_string_literal_token1] = ACTIONS(2029), - [sym_char_literal] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2031), - [sym_super] = ACTIONS(2031), - [sym_crate] = ACTIONS(2031), - [sym_metavariable] = ACTIONS(2029), - [sym__raw_string_literal_start] = ACTIONS(2029), - [sym_float_literal] = ACTIONS(2029), + [ts_builtin_sym_end] = ACTIONS(2011), + [sym_identifier] = ACTIONS(2013), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_macro_rules_BANG] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_u8] = ACTIONS(2013), + [anon_sym_i8] = ACTIONS(2013), + [anon_sym_u16] = ACTIONS(2013), + [anon_sym_i16] = ACTIONS(2013), + [anon_sym_u32] = ACTIONS(2013), + [anon_sym_i32] = ACTIONS(2013), + [anon_sym_u64] = ACTIONS(2013), + [anon_sym_i64] = ACTIONS(2013), + [anon_sym_u128] = ACTIONS(2013), + [anon_sym_i128] = ACTIONS(2013), + [anon_sym_isize] = ACTIONS(2013), + [anon_sym_usize] = ACTIONS(2013), + [anon_sym_f32] = ACTIONS(2013), + [anon_sym_f64] = ACTIONS(2013), + [anon_sym_bool] = ACTIONS(2013), + [anon_sym_str] = ACTIONS(2013), + [anon_sym_char] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2011), + [anon_sym_BANG] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_LT] = ACTIONS(2011), + [anon_sym_DOT_DOT] = ACTIONS(2011), + [anon_sym_COLON_COLON] = ACTIONS(2011), + [anon_sym_POUND] = ACTIONS(2011), + [anon_sym_SQUOTE] = ACTIONS(2013), + [anon_sym_async] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_default] = ACTIONS(2013), + [anon_sym_enum] = ACTIONS(2013), + [anon_sym_fn] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_gen] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_impl] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(2013), + [anon_sym_loop] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_mod] = ACTIONS(2013), + [anon_sym_pub] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_static] = ACTIONS(2013), + [anon_sym_struct] = ACTIONS(2013), + [anon_sym_trait] = ACTIONS(2013), + [anon_sym_type] = ACTIONS(2013), + [anon_sym_union] = ACTIONS(2013), + [anon_sym_unsafe] = ACTIONS(2013), + [anon_sym_use] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_extern] = ACTIONS(2013), + [anon_sym_yield] = ACTIONS(2013), + [anon_sym_move] = ACTIONS(2013), + [anon_sym_try] = ACTIONS(2013), + [sym_integer_literal] = ACTIONS(2011), + [aux_sym_string_literal_token1] = ACTIONS(2011), + [sym_char_literal] = ACTIONS(2011), + [anon_sym_true] = ACTIONS(2013), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2013), + [sym_super] = ACTIONS(2013), + [sym_crate] = ACTIONS(2013), + [sym_metavariable] = ACTIONS(2011), + [sym__raw_string_literal_start] = ACTIONS(2011), + [sym_float_literal] = ACTIONS(2011), }, [STATE(553)] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(2033), - [sym_identifier] = ACTIONS(2035), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym_macro_rules_BANG] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_STAR] = ACTIONS(2033), - [anon_sym_u8] = ACTIONS(2035), - [anon_sym_i8] = ACTIONS(2035), - [anon_sym_u16] = ACTIONS(2035), - [anon_sym_i16] = ACTIONS(2035), - [anon_sym_u32] = ACTIONS(2035), - [anon_sym_i32] = ACTIONS(2035), - [anon_sym_u64] = ACTIONS(2035), - [anon_sym_i64] = ACTIONS(2035), - [anon_sym_u128] = ACTIONS(2035), - [anon_sym_i128] = ACTIONS(2035), - [anon_sym_isize] = ACTIONS(2035), - [anon_sym_usize] = ACTIONS(2035), - [anon_sym_f32] = ACTIONS(2035), - [anon_sym_f64] = ACTIONS(2035), - [anon_sym_bool] = ACTIONS(2035), - [anon_sym_str] = ACTIONS(2035), - [anon_sym_char] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_BANG] = ACTIONS(2033), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym_PIPE] = ACTIONS(2033), - [anon_sym_LT] = ACTIONS(2033), - [anon_sym_DOT_DOT] = ACTIONS(2033), - [anon_sym_COLON_COLON] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(2033), - [anon_sym_SQUOTE] = ACTIONS(2035), - [anon_sym_async] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_default] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [anon_sym_fn] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_gen] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_impl] = ACTIONS(2035), - [anon_sym_let] = ACTIONS(2035), - [anon_sym_loop] = ACTIONS(2035), - [anon_sym_match] = ACTIONS(2035), - [anon_sym_mod] = ACTIONS(2035), - [anon_sym_pub] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_struct] = ACTIONS(2035), - [anon_sym_trait] = ACTIONS(2035), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_union] = ACTIONS(2035), - [anon_sym_unsafe] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_move] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [sym_integer_literal] = ACTIONS(2033), - [aux_sym_string_literal_token1] = ACTIONS(2033), - [sym_char_literal] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2035), - [sym_super] = ACTIONS(2035), - [sym_crate] = ACTIONS(2035), - [sym_metavariable] = ACTIONS(2033), - [sym__raw_string_literal_start] = ACTIONS(2033), - [sym_float_literal] = ACTIONS(2033), + [ts_builtin_sym_end] = ACTIONS(2015), + [sym_identifier] = ACTIONS(2017), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_macro_rules_BANG] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_u8] = ACTIONS(2017), + [anon_sym_i8] = ACTIONS(2017), + [anon_sym_u16] = ACTIONS(2017), + [anon_sym_i16] = ACTIONS(2017), + [anon_sym_u32] = ACTIONS(2017), + [anon_sym_i32] = ACTIONS(2017), + [anon_sym_u64] = ACTIONS(2017), + [anon_sym_i64] = ACTIONS(2017), + [anon_sym_u128] = ACTIONS(2017), + [anon_sym_i128] = ACTIONS(2017), + [anon_sym_isize] = ACTIONS(2017), + [anon_sym_usize] = ACTIONS(2017), + [anon_sym_f32] = ACTIONS(2017), + [anon_sym_f64] = ACTIONS(2017), + [anon_sym_bool] = ACTIONS(2017), + [anon_sym_str] = ACTIONS(2017), + [anon_sym_char] = ACTIONS(2017), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_BANG] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2015), + [anon_sym_LT] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2015), + [anon_sym_COLON_COLON] = ACTIONS(2015), + [anon_sym_POUND] = ACTIONS(2015), + [anon_sym_SQUOTE] = ACTIONS(2017), + [anon_sym_async] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(2017), + [anon_sym_enum] = ACTIONS(2017), + [anon_sym_fn] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_gen] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_impl] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_mod] = ACTIONS(2017), + [anon_sym_pub] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_static] = ACTIONS(2017), + [anon_sym_struct] = ACTIONS(2017), + [anon_sym_trait] = ACTIONS(2017), + [anon_sym_type] = ACTIONS(2017), + [anon_sym_union] = ACTIONS(2017), + [anon_sym_unsafe] = ACTIONS(2017), + [anon_sym_use] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym_yield] = ACTIONS(2017), + [anon_sym_move] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [sym_integer_literal] = ACTIONS(2015), + [aux_sym_string_literal_token1] = ACTIONS(2015), + [sym_char_literal] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2017), + [anon_sym_false] = ACTIONS(2017), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2017), + [sym_super] = ACTIONS(2017), + [sym_crate] = ACTIONS(2017), + [sym_metavariable] = ACTIONS(2015), + [sym__raw_string_literal_start] = ACTIONS(2015), + [sym_float_literal] = ACTIONS(2015), }, [STATE(554)] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(2037), - [sym_identifier] = ACTIONS(2039), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_macro_rules_BANG] = ACTIONS(2037), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_STAR] = ACTIONS(2037), - [anon_sym_u8] = ACTIONS(2039), - [anon_sym_i8] = ACTIONS(2039), - [anon_sym_u16] = ACTIONS(2039), - [anon_sym_i16] = ACTIONS(2039), - [anon_sym_u32] = ACTIONS(2039), - [anon_sym_i32] = ACTIONS(2039), - [anon_sym_u64] = ACTIONS(2039), - [anon_sym_i64] = ACTIONS(2039), - [anon_sym_u128] = ACTIONS(2039), - [anon_sym_i128] = ACTIONS(2039), - [anon_sym_isize] = ACTIONS(2039), - [anon_sym_usize] = ACTIONS(2039), - [anon_sym_f32] = ACTIONS(2039), - [anon_sym_f64] = ACTIONS(2039), - [anon_sym_bool] = ACTIONS(2039), - [anon_sym_str] = ACTIONS(2039), - [anon_sym_char] = ACTIONS(2039), - [anon_sym_DASH] = ACTIONS(2037), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_PIPE] = ACTIONS(2037), - [anon_sym_LT] = ACTIONS(2037), - [anon_sym_DOT_DOT] = ACTIONS(2037), - [anon_sym_COLON_COLON] = ACTIONS(2037), - [anon_sym_POUND] = ACTIONS(2037), - [anon_sym_SQUOTE] = ACTIONS(2039), - [anon_sym_async] = ACTIONS(2039), - [anon_sym_break] = ACTIONS(2039), - [anon_sym_const] = ACTIONS(2039), - [anon_sym_continue] = ACTIONS(2039), - [anon_sym_default] = ACTIONS(2039), - [anon_sym_enum] = ACTIONS(2039), - [anon_sym_fn] = ACTIONS(2039), - [anon_sym_for] = ACTIONS(2039), - [anon_sym_gen] = ACTIONS(2039), - [anon_sym_if] = ACTIONS(2039), - [anon_sym_impl] = ACTIONS(2039), - [anon_sym_let] = ACTIONS(2039), - [anon_sym_loop] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(2039), - [anon_sym_mod] = ACTIONS(2039), - [anon_sym_pub] = ACTIONS(2039), - [anon_sym_return] = ACTIONS(2039), - [anon_sym_static] = ACTIONS(2039), - [anon_sym_struct] = ACTIONS(2039), - [anon_sym_trait] = ACTIONS(2039), - [anon_sym_type] = ACTIONS(2039), - [anon_sym_union] = ACTIONS(2039), - [anon_sym_unsafe] = ACTIONS(2039), - [anon_sym_use] = ACTIONS(2039), - [anon_sym_while] = ACTIONS(2039), - [anon_sym_extern] = ACTIONS(2039), - [anon_sym_yield] = ACTIONS(2039), - [anon_sym_move] = ACTIONS(2039), - [anon_sym_try] = ACTIONS(2039), - [sym_integer_literal] = ACTIONS(2037), - [aux_sym_string_literal_token1] = ACTIONS(2037), - [sym_char_literal] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(2039), - [anon_sym_false] = ACTIONS(2039), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2039), - [sym_super] = ACTIONS(2039), - [sym_crate] = ACTIONS(2039), - [sym_metavariable] = ACTIONS(2037), - [sym__raw_string_literal_start] = ACTIONS(2037), - [sym_float_literal] = ACTIONS(2037), + [ts_builtin_sym_end] = ACTIONS(2019), + [sym_identifier] = ACTIONS(2021), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_macro_rules_BANG] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_u8] = ACTIONS(2021), + [anon_sym_i8] = ACTIONS(2021), + [anon_sym_u16] = ACTIONS(2021), + [anon_sym_i16] = ACTIONS(2021), + [anon_sym_u32] = ACTIONS(2021), + [anon_sym_i32] = ACTIONS(2021), + [anon_sym_u64] = ACTIONS(2021), + [anon_sym_i64] = ACTIONS(2021), + [anon_sym_u128] = ACTIONS(2021), + [anon_sym_i128] = ACTIONS(2021), + [anon_sym_isize] = ACTIONS(2021), + [anon_sym_usize] = ACTIONS(2021), + [anon_sym_f32] = ACTIONS(2021), + [anon_sym_f64] = ACTIONS(2021), + [anon_sym_bool] = ACTIONS(2021), + [anon_sym_str] = ACTIONS(2021), + [anon_sym_char] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2019), + [anon_sym_BANG] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_LT] = ACTIONS(2019), + [anon_sym_DOT_DOT] = ACTIONS(2019), + [anon_sym_COLON_COLON] = ACTIONS(2019), + [anon_sym_POUND] = ACTIONS(2019), + [anon_sym_SQUOTE] = ACTIONS(2021), + [anon_sym_async] = ACTIONS(2021), + [anon_sym_break] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(2021), + [anon_sym_continue] = ACTIONS(2021), + [anon_sym_default] = ACTIONS(2021), + [anon_sym_enum] = ACTIONS(2021), + [anon_sym_fn] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_gen] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_impl] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2021), + [anon_sym_loop] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_mod] = ACTIONS(2021), + [anon_sym_pub] = ACTIONS(2021), + [anon_sym_return] = ACTIONS(2021), + [anon_sym_static] = ACTIONS(2021), + [anon_sym_struct] = ACTIONS(2021), + [anon_sym_trait] = ACTIONS(2021), + [anon_sym_type] = ACTIONS(2021), + [anon_sym_union] = ACTIONS(2021), + [anon_sym_unsafe] = ACTIONS(2021), + [anon_sym_use] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_extern] = ACTIONS(2021), + [anon_sym_yield] = ACTIONS(2021), + [anon_sym_move] = ACTIONS(2021), + [anon_sym_try] = ACTIONS(2021), + [sym_integer_literal] = ACTIONS(2019), + [aux_sym_string_literal_token1] = ACTIONS(2019), + [sym_char_literal] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2021), + [sym_super] = ACTIONS(2021), + [sym_crate] = ACTIONS(2021), + [sym_metavariable] = ACTIONS(2019), + [sym__raw_string_literal_start] = ACTIONS(2019), + [sym_float_literal] = ACTIONS(2019), }, [STATE(555)] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(2041), - [sym_identifier] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2041), - [anon_sym_macro_rules_BANG] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2041), - [anon_sym_u8] = ACTIONS(2043), - [anon_sym_i8] = ACTIONS(2043), - [anon_sym_u16] = ACTIONS(2043), - [anon_sym_i16] = ACTIONS(2043), - [anon_sym_u32] = ACTIONS(2043), - [anon_sym_i32] = ACTIONS(2043), - [anon_sym_u64] = ACTIONS(2043), - [anon_sym_i64] = ACTIONS(2043), - [anon_sym_u128] = ACTIONS(2043), - [anon_sym_i128] = ACTIONS(2043), - [anon_sym_isize] = ACTIONS(2043), - [anon_sym_usize] = ACTIONS(2043), - [anon_sym_f32] = ACTIONS(2043), - [anon_sym_f64] = ACTIONS(2043), - [anon_sym_bool] = ACTIONS(2043), - [anon_sym_str] = ACTIONS(2043), - [anon_sym_char] = ACTIONS(2043), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_DOT_DOT] = ACTIONS(2041), - [anon_sym_COLON_COLON] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2041), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_async] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_default] = ACTIONS(2043), - [anon_sym_enum] = ACTIONS(2043), - [anon_sym_fn] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_gen] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_impl] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_loop] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_mod] = ACTIONS(2043), - [anon_sym_pub] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_struct] = ACTIONS(2043), - [anon_sym_trait] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_union] = ACTIONS(2043), - [anon_sym_unsafe] = ACTIONS(2043), - [anon_sym_use] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2043), - [anon_sym_yield] = ACTIONS(2043), - [anon_sym_move] = ACTIONS(2043), - [anon_sym_try] = ACTIONS(2043), - [sym_integer_literal] = ACTIONS(2041), - [aux_sym_string_literal_token1] = ACTIONS(2041), - [sym_char_literal] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2043), - [anon_sym_false] = ACTIONS(2043), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2043), - [sym_super] = ACTIONS(2043), - [sym_crate] = ACTIONS(2043), - [sym_metavariable] = ACTIONS(2041), - [sym__raw_string_literal_start] = ACTIONS(2041), - [sym_float_literal] = ACTIONS(2041), + [ts_builtin_sym_end] = ACTIONS(2023), + [sym_identifier] = ACTIONS(2025), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_macro_rules_BANG] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_STAR] = ACTIONS(2023), + [anon_sym_u8] = ACTIONS(2025), + [anon_sym_i8] = ACTIONS(2025), + [anon_sym_u16] = ACTIONS(2025), + [anon_sym_i16] = ACTIONS(2025), + [anon_sym_u32] = ACTIONS(2025), + [anon_sym_i32] = ACTIONS(2025), + [anon_sym_u64] = ACTIONS(2025), + [anon_sym_i64] = ACTIONS(2025), + [anon_sym_u128] = ACTIONS(2025), + [anon_sym_i128] = ACTIONS(2025), + [anon_sym_isize] = ACTIONS(2025), + [anon_sym_usize] = ACTIONS(2025), + [anon_sym_f32] = ACTIONS(2025), + [anon_sym_f64] = ACTIONS(2025), + [anon_sym_bool] = ACTIONS(2025), + [anon_sym_str] = ACTIONS(2025), + [anon_sym_char] = ACTIONS(2025), + [anon_sym_DASH] = ACTIONS(2023), + [anon_sym_BANG] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_LT] = ACTIONS(2023), + [anon_sym_DOT_DOT] = ACTIONS(2023), + [anon_sym_COLON_COLON] = ACTIONS(2023), + [anon_sym_POUND] = ACTIONS(2023), + [anon_sym_SQUOTE] = ACTIONS(2025), + [anon_sym_async] = ACTIONS(2025), + [anon_sym_break] = ACTIONS(2025), + [anon_sym_const] = ACTIONS(2025), + [anon_sym_continue] = ACTIONS(2025), + [anon_sym_default] = ACTIONS(2025), + [anon_sym_enum] = ACTIONS(2025), + [anon_sym_fn] = ACTIONS(2025), + [anon_sym_for] = ACTIONS(2025), + [anon_sym_gen] = ACTIONS(2025), + [anon_sym_if] = ACTIONS(2025), + [anon_sym_impl] = ACTIONS(2025), + [anon_sym_let] = ACTIONS(2025), + [anon_sym_loop] = ACTIONS(2025), + [anon_sym_match] = ACTIONS(2025), + [anon_sym_mod] = ACTIONS(2025), + [anon_sym_pub] = ACTIONS(2025), + [anon_sym_return] = ACTIONS(2025), + [anon_sym_static] = ACTIONS(2025), + [anon_sym_struct] = ACTIONS(2025), + [anon_sym_trait] = ACTIONS(2025), + [anon_sym_type] = ACTIONS(2025), + [anon_sym_union] = ACTIONS(2025), + [anon_sym_unsafe] = ACTIONS(2025), + [anon_sym_use] = ACTIONS(2025), + [anon_sym_while] = ACTIONS(2025), + [anon_sym_extern] = ACTIONS(2025), + [anon_sym_yield] = ACTIONS(2025), + [anon_sym_move] = ACTIONS(2025), + [anon_sym_try] = ACTIONS(2025), + [sym_integer_literal] = ACTIONS(2023), + [aux_sym_string_literal_token1] = ACTIONS(2023), + [sym_char_literal] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2025), + [anon_sym_false] = ACTIONS(2025), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2025), + [sym_super] = ACTIONS(2025), + [sym_crate] = ACTIONS(2025), + [sym_metavariable] = ACTIONS(2023), + [sym__raw_string_literal_start] = ACTIONS(2023), + [sym_float_literal] = ACTIONS(2023), }, [STATE(556)] = { [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(2045), - [sym_identifier] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2045), - [anon_sym_macro_rules_BANG] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_LBRACK] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_u8] = ACTIONS(2047), - [anon_sym_i8] = ACTIONS(2047), - [anon_sym_u16] = ACTIONS(2047), - [anon_sym_i16] = ACTIONS(2047), - [anon_sym_u32] = ACTIONS(2047), - [anon_sym_i32] = ACTIONS(2047), - [anon_sym_u64] = ACTIONS(2047), - [anon_sym_i64] = ACTIONS(2047), - [anon_sym_u128] = ACTIONS(2047), - [anon_sym_i128] = ACTIONS(2047), - [anon_sym_isize] = ACTIONS(2047), - [anon_sym_usize] = ACTIONS(2047), - [anon_sym_f32] = ACTIONS(2047), - [anon_sym_f64] = ACTIONS(2047), - [anon_sym_bool] = ACTIONS(2047), - [anon_sym_str] = ACTIONS(2047), - [anon_sym_char] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2045), - [anon_sym_PIPE] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_DOT_DOT] = ACTIONS(2045), - [anon_sym_COLON_COLON] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2045), - [anon_sym_SQUOTE] = ACTIONS(2047), - [anon_sym_async] = ACTIONS(2047), - [anon_sym_break] = ACTIONS(2047), - [anon_sym_const] = ACTIONS(2047), - [anon_sym_continue] = ACTIONS(2047), - [anon_sym_default] = ACTIONS(2047), - [anon_sym_enum] = ACTIONS(2047), - [anon_sym_fn] = ACTIONS(2047), - [anon_sym_for] = ACTIONS(2047), - [anon_sym_gen] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2047), - [anon_sym_impl] = ACTIONS(2047), - [anon_sym_let] = ACTIONS(2047), - [anon_sym_loop] = ACTIONS(2047), - [anon_sym_match] = ACTIONS(2047), - [anon_sym_mod] = ACTIONS(2047), - [anon_sym_pub] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2047), - [anon_sym_static] = ACTIONS(2047), - [anon_sym_struct] = ACTIONS(2047), - [anon_sym_trait] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2047), - [anon_sym_union] = ACTIONS(2047), - [anon_sym_unsafe] = ACTIONS(2047), - [anon_sym_use] = ACTIONS(2047), - [anon_sym_while] = ACTIONS(2047), - [anon_sym_extern] = ACTIONS(2047), - [anon_sym_yield] = ACTIONS(2047), - [anon_sym_move] = ACTIONS(2047), - [anon_sym_try] = ACTIONS(2047), - [sym_integer_literal] = ACTIONS(2045), - [aux_sym_string_literal_token1] = ACTIONS(2045), - [sym_char_literal] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2047), - [sym_super] = ACTIONS(2047), - [sym_crate] = ACTIONS(2047), - [sym_metavariable] = ACTIONS(2045), - [sym__raw_string_literal_start] = ACTIONS(2045), - [sym_float_literal] = ACTIONS(2045), + [ts_builtin_sym_end] = ACTIONS(2027), + [sym_identifier] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(2027), + [anon_sym_macro_rules_BANG] = ACTIONS(2027), + [anon_sym_LPAREN] = ACTIONS(2027), + [anon_sym_LBRACK] = ACTIONS(2027), + [anon_sym_LBRACE] = ACTIONS(2027), + [anon_sym_RBRACE] = ACTIONS(2027), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_u8] = ACTIONS(2029), + [anon_sym_i8] = ACTIONS(2029), + [anon_sym_u16] = ACTIONS(2029), + [anon_sym_i16] = ACTIONS(2029), + [anon_sym_u32] = ACTIONS(2029), + [anon_sym_i32] = ACTIONS(2029), + [anon_sym_u64] = ACTIONS(2029), + [anon_sym_i64] = ACTIONS(2029), + [anon_sym_u128] = ACTIONS(2029), + [anon_sym_i128] = ACTIONS(2029), + [anon_sym_isize] = ACTIONS(2029), + [anon_sym_usize] = ACTIONS(2029), + [anon_sym_f32] = ACTIONS(2029), + [anon_sym_f64] = ACTIONS(2029), + [anon_sym_bool] = ACTIONS(2029), + [anon_sym_str] = ACTIONS(2029), + [anon_sym_char] = ACTIONS(2029), + [anon_sym_DASH] = ACTIONS(2027), + [anon_sym_BANG] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2027), + [anon_sym_PIPE] = ACTIONS(2027), + [anon_sym_LT] = ACTIONS(2027), + [anon_sym_DOT_DOT] = ACTIONS(2027), + [anon_sym_COLON_COLON] = ACTIONS(2027), + [anon_sym_POUND] = ACTIONS(2027), + [anon_sym_SQUOTE] = ACTIONS(2029), + [anon_sym_async] = ACTIONS(2029), + [anon_sym_break] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2029), + [anon_sym_continue] = ACTIONS(2029), + [anon_sym_default] = ACTIONS(2029), + [anon_sym_enum] = ACTIONS(2029), + [anon_sym_fn] = ACTIONS(2029), + [anon_sym_for] = ACTIONS(2029), + [anon_sym_gen] = ACTIONS(2029), + [anon_sym_if] = ACTIONS(2029), + [anon_sym_impl] = ACTIONS(2029), + [anon_sym_let] = ACTIONS(2029), + [anon_sym_loop] = ACTIONS(2029), + [anon_sym_match] = ACTIONS(2029), + [anon_sym_mod] = ACTIONS(2029), + [anon_sym_pub] = ACTIONS(2029), + [anon_sym_return] = ACTIONS(2029), + [anon_sym_static] = ACTIONS(2029), + [anon_sym_struct] = ACTIONS(2029), + [anon_sym_trait] = ACTIONS(2029), + [anon_sym_type] = ACTIONS(2029), + [anon_sym_union] = ACTIONS(2029), + [anon_sym_unsafe] = ACTIONS(2029), + [anon_sym_use] = ACTIONS(2029), + [anon_sym_while] = ACTIONS(2029), + [anon_sym_extern] = ACTIONS(2029), + [anon_sym_yield] = ACTIONS(2029), + [anon_sym_move] = ACTIONS(2029), + [anon_sym_try] = ACTIONS(2029), + [sym_integer_literal] = ACTIONS(2027), + [aux_sym_string_literal_token1] = ACTIONS(2027), + [sym_char_literal] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(2029), + [anon_sym_false] = ACTIONS(2029), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2029), + [sym_super] = ACTIONS(2029), + [sym_crate] = ACTIONS(2029), + [sym_metavariable] = ACTIONS(2027), + [sym__raw_string_literal_start] = ACTIONS(2027), + [sym_float_literal] = ACTIONS(2027), }, [STATE(557)] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(2049), - [sym_identifier] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2049), - [anon_sym_macro_rules_BANG] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_u8] = ACTIONS(2051), - [anon_sym_i8] = ACTIONS(2051), - [anon_sym_u16] = ACTIONS(2051), - [anon_sym_i16] = ACTIONS(2051), - [anon_sym_u32] = ACTIONS(2051), - [anon_sym_i32] = ACTIONS(2051), - [anon_sym_u64] = ACTIONS(2051), - [anon_sym_i64] = ACTIONS(2051), - [anon_sym_u128] = ACTIONS(2051), - [anon_sym_i128] = ACTIONS(2051), - [anon_sym_isize] = ACTIONS(2051), - [anon_sym_usize] = ACTIONS(2051), - [anon_sym_f32] = ACTIONS(2051), - [anon_sym_f64] = ACTIONS(2051), - [anon_sym_bool] = ACTIONS(2051), - [anon_sym_str] = ACTIONS(2051), - [anon_sym_char] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2049), - [anon_sym_PIPE] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_DOT_DOT] = ACTIONS(2049), - [anon_sym_COLON_COLON] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2049), - [anon_sym_SQUOTE] = ACTIONS(2051), - [anon_sym_async] = ACTIONS(2051), - [anon_sym_break] = ACTIONS(2051), - [anon_sym_const] = ACTIONS(2051), - [anon_sym_continue] = ACTIONS(2051), - [anon_sym_default] = ACTIONS(2051), - [anon_sym_enum] = ACTIONS(2051), - [anon_sym_fn] = ACTIONS(2051), - [anon_sym_for] = ACTIONS(2051), - [anon_sym_gen] = ACTIONS(2051), - [anon_sym_if] = ACTIONS(2051), - [anon_sym_impl] = ACTIONS(2051), - [anon_sym_let] = ACTIONS(2051), - [anon_sym_loop] = ACTIONS(2051), - [anon_sym_match] = ACTIONS(2051), - [anon_sym_mod] = ACTIONS(2051), - [anon_sym_pub] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2051), - [anon_sym_static] = ACTIONS(2051), - [anon_sym_struct] = ACTIONS(2051), - [anon_sym_trait] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2051), - [anon_sym_union] = ACTIONS(2051), - [anon_sym_unsafe] = ACTIONS(2051), - [anon_sym_use] = ACTIONS(2051), - [anon_sym_while] = ACTIONS(2051), - [anon_sym_extern] = ACTIONS(2051), - [anon_sym_yield] = ACTIONS(2051), - [anon_sym_move] = ACTIONS(2051), - [anon_sym_try] = ACTIONS(2051), - [sym_integer_literal] = ACTIONS(2049), - [aux_sym_string_literal_token1] = ACTIONS(2049), - [sym_char_literal] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2051), - [anon_sym_false] = ACTIONS(2051), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2051), - [sym_super] = ACTIONS(2051), - [sym_crate] = ACTIONS(2051), - [sym_metavariable] = ACTIONS(2049), - [sym__raw_string_literal_start] = ACTIONS(2049), - [sym_float_literal] = ACTIONS(2049), + [ts_builtin_sym_end] = ACTIONS(2031), + [sym_identifier] = ACTIONS(2033), + [anon_sym_SEMI] = ACTIONS(2031), + [anon_sym_macro_rules_BANG] = ACTIONS(2031), + [anon_sym_LPAREN] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(2031), + [anon_sym_RBRACE] = ACTIONS(2031), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_u8] = ACTIONS(2033), + [anon_sym_i8] = ACTIONS(2033), + [anon_sym_u16] = ACTIONS(2033), + [anon_sym_i16] = ACTIONS(2033), + [anon_sym_u32] = ACTIONS(2033), + [anon_sym_i32] = ACTIONS(2033), + [anon_sym_u64] = ACTIONS(2033), + [anon_sym_i64] = ACTIONS(2033), + [anon_sym_u128] = ACTIONS(2033), + [anon_sym_i128] = ACTIONS(2033), + [anon_sym_isize] = ACTIONS(2033), + [anon_sym_usize] = ACTIONS(2033), + [anon_sym_f32] = ACTIONS(2033), + [anon_sym_f64] = ACTIONS(2033), + [anon_sym_bool] = ACTIONS(2033), + [anon_sym_str] = ACTIONS(2033), + [anon_sym_char] = ACTIONS(2033), + [anon_sym_DASH] = ACTIONS(2031), + [anon_sym_BANG] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2031), + [anon_sym_PIPE] = ACTIONS(2031), + [anon_sym_LT] = ACTIONS(2031), + [anon_sym_DOT_DOT] = ACTIONS(2031), + [anon_sym_COLON_COLON] = ACTIONS(2031), + [anon_sym_POUND] = ACTIONS(2031), + [anon_sym_SQUOTE] = ACTIONS(2033), + [anon_sym_async] = ACTIONS(2033), + [anon_sym_break] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2033), + [anon_sym_continue] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(2033), + [anon_sym_enum] = ACTIONS(2033), + [anon_sym_fn] = ACTIONS(2033), + [anon_sym_for] = ACTIONS(2033), + [anon_sym_gen] = ACTIONS(2033), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_impl] = ACTIONS(2033), + [anon_sym_let] = ACTIONS(2033), + [anon_sym_loop] = ACTIONS(2033), + [anon_sym_match] = ACTIONS(2033), + [anon_sym_mod] = ACTIONS(2033), + [anon_sym_pub] = ACTIONS(2033), + [anon_sym_return] = ACTIONS(2033), + [anon_sym_static] = ACTIONS(2033), + [anon_sym_struct] = ACTIONS(2033), + [anon_sym_trait] = ACTIONS(2033), + [anon_sym_type] = ACTIONS(2033), + [anon_sym_union] = ACTIONS(2033), + [anon_sym_unsafe] = ACTIONS(2033), + [anon_sym_use] = ACTIONS(2033), + [anon_sym_while] = ACTIONS(2033), + [anon_sym_extern] = ACTIONS(2033), + [anon_sym_yield] = ACTIONS(2033), + [anon_sym_move] = ACTIONS(2033), + [anon_sym_try] = ACTIONS(2033), + [sym_integer_literal] = ACTIONS(2031), + [aux_sym_string_literal_token1] = ACTIONS(2031), + [sym_char_literal] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(2033), + [anon_sym_false] = ACTIONS(2033), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2033), + [sym_super] = ACTIONS(2033), + [sym_crate] = ACTIONS(2033), + [sym_metavariable] = ACTIONS(2031), + [sym__raw_string_literal_start] = ACTIONS(2031), + [sym_float_literal] = ACTIONS(2031), }, [STATE(558)] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(2053), - [sym_identifier] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2053), - [anon_sym_macro_rules_BANG] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2053), - [anon_sym_LBRACE] = ACTIONS(2053), - [anon_sym_RBRACE] = ACTIONS(2053), - [anon_sym_STAR] = ACTIONS(2053), - [anon_sym_u8] = ACTIONS(2055), - [anon_sym_i8] = ACTIONS(2055), - [anon_sym_u16] = ACTIONS(2055), - [anon_sym_i16] = ACTIONS(2055), - [anon_sym_u32] = ACTIONS(2055), - [anon_sym_i32] = ACTIONS(2055), - [anon_sym_u64] = ACTIONS(2055), - [anon_sym_i64] = ACTIONS(2055), - [anon_sym_u128] = ACTIONS(2055), - [anon_sym_i128] = ACTIONS(2055), - [anon_sym_isize] = ACTIONS(2055), - [anon_sym_usize] = ACTIONS(2055), - [anon_sym_f32] = ACTIONS(2055), - [anon_sym_f64] = ACTIONS(2055), - [anon_sym_bool] = ACTIONS(2055), - [anon_sym_str] = ACTIONS(2055), - [anon_sym_char] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2053), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_PIPE] = ACTIONS(2053), - [anon_sym_LT] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [anon_sym_COLON_COLON] = ACTIONS(2053), - [anon_sym_POUND] = ACTIONS(2053), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_gen] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_impl] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_loop] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_mod] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_trait] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_use] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_extern] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_move] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [sym_integer_literal] = ACTIONS(2053), - [aux_sym_string_literal_token1] = ACTIONS(2053), - [sym_char_literal] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(2055), - [anon_sym_false] = ACTIONS(2055), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_crate] = ACTIONS(2055), - [sym_metavariable] = ACTIONS(2053), - [sym__raw_string_literal_start] = ACTIONS(2053), - [sym_float_literal] = ACTIONS(2053), + [ts_builtin_sym_end] = ACTIONS(2035), + [sym_identifier] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2035), + [anon_sym_macro_rules_BANG] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_LBRACK] = ACTIONS(2035), + [anon_sym_LBRACE] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_STAR] = ACTIONS(2035), + [anon_sym_u8] = ACTIONS(2037), + [anon_sym_i8] = ACTIONS(2037), + [anon_sym_u16] = ACTIONS(2037), + [anon_sym_i16] = ACTIONS(2037), + [anon_sym_u32] = ACTIONS(2037), + [anon_sym_i32] = ACTIONS(2037), + [anon_sym_u64] = ACTIONS(2037), + [anon_sym_i64] = ACTIONS(2037), + [anon_sym_u128] = ACTIONS(2037), + [anon_sym_i128] = ACTIONS(2037), + [anon_sym_isize] = ACTIONS(2037), + [anon_sym_usize] = ACTIONS(2037), + [anon_sym_f32] = ACTIONS(2037), + [anon_sym_f64] = ACTIONS(2037), + [anon_sym_bool] = ACTIONS(2037), + [anon_sym_str] = ACTIONS(2037), + [anon_sym_char] = ACTIONS(2037), + [anon_sym_DASH] = ACTIONS(2035), + [anon_sym_BANG] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2035), + [anon_sym_PIPE] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2035), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_COLON_COLON] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(2035), + [anon_sym_SQUOTE] = ACTIONS(2037), + [anon_sym_async] = ACTIONS(2037), + [anon_sym_break] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2037), + [anon_sym_continue] = ACTIONS(2037), + [anon_sym_default] = ACTIONS(2037), + [anon_sym_enum] = ACTIONS(2037), + [anon_sym_fn] = ACTIONS(2037), + [anon_sym_for] = ACTIONS(2037), + [anon_sym_gen] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_impl] = ACTIONS(2037), + [anon_sym_let] = ACTIONS(2037), + [anon_sym_loop] = ACTIONS(2037), + [anon_sym_match] = ACTIONS(2037), + [anon_sym_mod] = ACTIONS(2037), + [anon_sym_pub] = ACTIONS(2037), + [anon_sym_return] = ACTIONS(2037), + [anon_sym_static] = ACTIONS(2037), + [anon_sym_struct] = ACTIONS(2037), + [anon_sym_trait] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2037), + [anon_sym_union] = ACTIONS(2037), + [anon_sym_unsafe] = ACTIONS(2037), + [anon_sym_use] = ACTIONS(2037), + [anon_sym_while] = ACTIONS(2037), + [anon_sym_extern] = ACTIONS(2037), + [anon_sym_yield] = ACTIONS(2037), + [anon_sym_move] = ACTIONS(2037), + [anon_sym_try] = ACTIONS(2037), + [sym_integer_literal] = ACTIONS(2035), + [aux_sym_string_literal_token1] = ACTIONS(2035), + [sym_char_literal] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(2037), + [anon_sym_false] = ACTIONS(2037), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2037), + [sym_super] = ACTIONS(2037), + [sym_crate] = ACTIONS(2037), + [sym_metavariable] = ACTIONS(2035), + [sym__raw_string_literal_start] = ACTIONS(2035), + [sym_float_literal] = ACTIONS(2035), }, [STATE(559)] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(2057), - [sym_identifier] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_macro_rules_BANG] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_u8] = ACTIONS(2059), - [anon_sym_i8] = ACTIONS(2059), - [anon_sym_u16] = ACTIONS(2059), - [anon_sym_i16] = ACTIONS(2059), - [anon_sym_u32] = ACTIONS(2059), - [anon_sym_i32] = ACTIONS(2059), - [anon_sym_u64] = ACTIONS(2059), - [anon_sym_i64] = ACTIONS(2059), - [anon_sym_u128] = ACTIONS(2059), - [anon_sym_i128] = ACTIONS(2059), - [anon_sym_isize] = ACTIONS(2059), - [anon_sym_usize] = ACTIONS(2059), - [anon_sym_f32] = ACTIONS(2059), - [anon_sym_f64] = ACTIONS(2059), - [anon_sym_bool] = ACTIONS(2059), - [anon_sym_str] = ACTIONS(2059), - [anon_sym_char] = ACTIONS(2059), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_DOT_DOT] = ACTIONS(2057), - [anon_sym_COLON_COLON] = ACTIONS(2057), - [anon_sym_POUND] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2059), - [anon_sym_async] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_default] = ACTIONS(2059), - [anon_sym_enum] = ACTIONS(2059), - [anon_sym_fn] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_gen] = ACTIONS(2059), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_impl] = ACTIONS(2059), - [anon_sym_let] = ACTIONS(2059), - [anon_sym_loop] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_mod] = ACTIONS(2059), - [anon_sym_pub] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_static] = ACTIONS(2059), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_trait] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_use] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2059), - [anon_sym_extern] = ACTIONS(2059), - [anon_sym_yield] = ACTIONS(2059), - [anon_sym_move] = ACTIONS(2059), - [anon_sym_try] = ACTIONS(2059), - [sym_integer_literal] = ACTIONS(2057), - [aux_sym_string_literal_token1] = ACTIONS(2057), - [sym_char_literal] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(2059), - [anon_sym_false] = ACTIONS(2059), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2059), - [sym_super] = ACTIONS(2059), - [sym_crate] = ACTIONS(2059), - [sym_metavariable] = ACTIONS(2057), - [sym__raw_string_literal_start] = ACTIONS(2057), - [sym_float_literal] = ACTIONS(2057), + [ts_builtin_sym_end] = ACTIONS(2039), + [sym_identifier] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2039), + [anon_sym_macro_rules_BANG] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2039), + [anon_sym_LBRACK] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2039), + [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_STAR] = ACTIONS(2039), + [anon_sym_u8] = ACTIONS(2041), + [anon_sym_i8] = ACTIONS(2041), + [anon_sym_u16] = ACTIONS(2041), + [anon_sym_i16] = ACTIONS(2041), + [anon_sym_u32] = ACTIONS(2041), + [anon_sym_i32] = ACTIONS(2041), + [anon_sym_u64] = ACTIONS(2041), + [anon_sym_i64] = ACTIONS(2041), + [anon_sym_u128] = ACTIONS(2041), + [anon_sym_i128] = ACTIONS(2041), + [anon_sym_isize] = ACTIONS(2041), + [anon_sym_usize] = ACTIONS(2041), + [anon_sym_f32] = ACTIONS(2041), + [anon_sym_f64] = ACTIONS(2041), + [anon_sym_bool] = ACTIONS(2041), + [anon_sym_str] = ACTIONS(2041), + [anon_sym_char] = ACTIONS(2041), + [anon_sym_DASH] = ACTIONS(2039), + [anon_sym_BANG] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2039), + [anon_sym_PIPE] = ACTIONS(2039), + [anon_sym_LT] = ACTIONS(2039), + [anon_sym_DOT_DOT] = ACTIONS(2039), + [anon_sym_COLON_COLON] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(2039), + [anon_sym_SQUOTE] = ACTIONS(2041), + [anon_sym_async] = ACTIONS(2041), + [anon_sym_break] = ACTIONS(2041), + [anon_sym_const] = ACTIONS(2041), + [anon_sym_continue] = ACTIONS(2041), + [anon_sym_default] = ACTIONS(2041), + [anon_sym_enum] = ACTIONS(2041), + [anon_sym_fn] = ACTIONS(2041), + [anon_sym_for] = ACTIONS(2041), + [anon_sym_gen] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_impl] = ACTIONS(2041), + [anon_sym_let] = ACTIONS(2041), + [anon_sym_loop] = ACTIONS(2041), + [anon_sym_match] = ACTIONS(2041), + [anon_sym_mod] = ACTIONS(2041), + [anon_sym_pub] = ACTIONS(2041), + [anon_sym_return] = ACTIONS(2041), + [anon_sym_static] = ACTIONS(2041), + [anon_sym_struct] = ACTIONS(2041), + [anon_sym_trait] = ACTIONS(2041), + [anon_sym_type] = ACTIONS(2041), + [anon_sym_union] = ACTIONS(2041), + [anon_sym_unsafe] = ACTIONS(2041), + [anon_sym_use] = ACTIONS(2041), + [anon_sym_while] = ACTIONS(2041), + [anon_sym_extern] = ACTIONS(2041), + [anon_sym_yield] = ACTIONS(2041), + [anon_sym_move] = ACTIONS(2041), + [anon_sym_try] = ACTIONS(2041), + [sym_integer_literal] = ACTIONS(2039), + [aux_sym_string_literal_token1] = ACTIONS(2039), + [sym_char_literal] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = ACTIONS(2041), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2041), + [sym_super] = ACTIONS(2041), + [sym_crate] = ACTIONS(2041), + [sym_metavariable] = ACTIONS(2039), + [sym__raw_string_literal_start] = ACTIONS(2039), + [sym_float_literal] = ACTIONS(2039), }, [STATE(560)] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2063), - [anon_sym_SEMI] = ACTIONS(2061), - [anon_sym_macro_rules_BANG] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_STAR] = ACTIONS(2061), - [anon_sym_u8] = ACTIONS(2063), - [anon_sym_i8] = ACTIONS(2063), - [anon_sym_u16] = ACTIONS(2063), - [anon_sym_i16] = ACTIONS(2063), - [anon_sym_u32] = ACTIONS(2063), - [anon_sym_i32] = ACTIONS(2063), - [anon_sym_u64] = ACTIONS(2063), - [anon_sym_i64] = ACTIONS(2063), - [anon_sym_u128] = ACTIONS(2063), - [anon_sym_i128] = ACTIONS(2063), - [anon_sym_isize] = ACTIONS(2063), - [anon_sym_usize] = ACTIONS(2063), - [anon_sym_f32] = ACTIONS(2063), - [anon_sym_f64] = ACTIONS(2063), - [anon_sym_bool] = ACTIONS(2063), - [anon_sym_str] = ACTIONS(2063), - [anon_sym_char] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2061), - [anon_sym_BANG] = ACTIONS(2061), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_DOT_DOT] = ACTIONS(2061), - [anon_sym_COLON_COLON] = ACTIONS(2061), - [anon_sym_POUND] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(2063), - [anon_sym_async] = ACTIONS(2063), - [anon_sym_break] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2063), - [anon_sym_continue] = ACTIONS(2063), - [anon_sym_default] = ACTIONS(2063), - [anon_sym_enum] = ACTIONS(2063), - [anon_sym_fn] = ACTIONS(2063), - [anon_sym_for] = ACTIONS(2063), - [anon_sym_gen] = ACTIONS(2063), - [anon_sym_if] = ACTIONS(2063), - [anon_sym_impl] = ACTIONS(2063), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_loop] = ACTIONS(2063), - [anon_sym_match] = ACTIONS(2063), - [anon_sym_mod] = ACTIONS(2063), - [anon_sym_pub] = ACTIONS(2063), - [anon_sym_return] = ACTIONS(2063), - [anon_sym_static] = ACTIONS(2063), - [anon_sym_struct] = ACTIONS(2063), - [anon_sym_trait] = ACTIONS(2063), - [anon_sym_type] = ACTIONS(2063), - [anon_sym_union] = ACTIONS(2063), - [anon_sym_unsafe] = ACTIONS(2063), - [anon_sym_use] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [anon_sym_extern] = ACTIONS(2063), - [anon_sym_yield] = ACTIONS(2063), - [anon_sym_move] = ACTIONS(2063), - [anon_sym_try] = ACTIONS(2063), - [sym_integer_literal] = ACTIONS(2061), - [aux_sym_string_literal_token1] = ACTIONS(2061), - [sym_char_literal] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2063), - [sym_super] = ACTIONS(2063), - [sym_crate] = ACTIONS(2063), - [sym_metavariable] = ACTIONS(2061), - [sym__raw_string_literal_start] = ACTIONS(2061), - [sym_float_literal] = ACTIONS(2061), + [ts_builtin_sym_end] = ACTIONS(2043), + [sym_identifier] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2043), + [anon_sym_macro_rules_BANG] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_LBRACK] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_u8] = ACTIONS(2045), + [anon_sym_i8] = ACTIONS(2045), + [anon_sym_u16] = ACTIONS(2045), + [anon_sym_i16] = ACTIONS(2045), + [anon_sym_u32] = ACTIONS(2045), + [anon_sym_i32] = ACTIONS(2045), + [anon_sym_u64] = ACTIONS(2045), + [anon_sym_i64] = ACTIONS(2045), + [anon_sym_u128] = ACTIONS(2045), + [anon_sym_i128] = ACTIONS(2045), + [anon_sym_isize] = ACTIONS(2045), + [anon_sym_usize] = ACTIONS(2045), + [anon_sym_f32] = ACTIONS(2045), + [anon_sym_f64] = ACTIONS(2045), + [anon_sym_bool] = ACTIONS(2045), + [anon_sym_str] = ACTIONS(2045), + [anon_sym_char] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_BANG] = ACTIONS(2043), + [anon_sym_AMP] = ACTIONS(2043), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_LT] = ACTIONS(2043), + [anon_sym_DOT_DOT] = ACTIONS(2043), + [anon_sym_COLON_COLON] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(2043), + [anon_sym_SQUOTE] = ACTIONS(2045), + [anon_sym_async] = ACTIONS(2045), + [anon_sym_break] = ACTIONS(2045), + [anon_sym_const] = ACTIONS(2045), + [anon_sym_continue] = ACTIONS(2045), + [anon_sym_default] = ACTIONS(2045), + [anon_sym_enum] = ACTIONS(2045), + [anon_sym_fn] = ACTIONS(2045), + [anon_sym_for] = ACTIONS(2045), + [anon_sym_gen] = ACTIONS(2045), + [anon_sym_if] = ACTIONS(2045), + [anon_sym_impl] = ACTIONS(2045), + [anon_sym_let] = ACTIONS(2045), + [anon_sym_loop] = ACTIONS(2045), + [anon_sym_match] = ACTIONS(2045), + [anon_sym_mod] = ACTIONS(2045), + [anon_sym_pub] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2045), + [anon_sym_static] = ACTIONS(2045), + [anon_sym_struct] = ACTIONS(2045), + [anon_sym_trait] = ACTIONS(2045), + [anon_sym_type] = ACTIONS(2045), + [anon_sym_union] = ACTIONS(2045), + [anon_sym_unsafe] = ACTIONS(2045), + [anon_sym_use] = ACTIONS(2045), + [anon_sym_while] = ACTIONS(2045), + [anon_sym_extern] = ACTIONS(2045), + [anon_sym_yield] = ACTIONS(2045), + [anon_sym_move] = ACTIONS(2045), + [anon_sym_try] = ACTIONS(2045), + [sym_integer_literal] = ACTIONS(2043), + [aux_sym_string_literal_token1] = ACTIONS(2043), + [sym_char_literal] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2045), + [anon_sym_false] = ACTIONS(2045), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2045), + [sym_super] = ACTIONS(2045), + [sym_crate] = ACTIONS(2045), + [sym_metavariable] = ACTIONS(2043), + [sym__raw_string_literal_start] = ACTIONS(2043), + [sym_float_literal] = ACTIONS(2043), }, [STATE(561)] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(2065), - [sym_identifier] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2065), - [anon_sym_macro_rules_BANG] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_LBRACK] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_STAR] = ACTIONS(2065), - [anon_sym_u8] = ACTIONS(2067), - [anon_sym_i8] = ACTIONS(2067), - [anon_sym_u16] = ACTIONS(2067), - [anon_sym_i16] = ACTIONS(2067), - [anon_sym_u32] = ACTIONS(2067), - [anon_sym_i32] = ACTIONS(2067), - [anon_sym_u64] = ACTIONS(2067), - [anon_sym_i64] = ACTIONS(2067), - [anon_sym_u128] = ACTIONS(2067), - [anon_sym_i128] = ACTIONS(2067), - [anon_sym_isize] = ACTIONS(2067), - [anon_sym_usize] = ACTIONS(2067), - [anon_sym_f32] = ACTIONS(2067), - [anon_sym_f64] = ACTIONS(2067), - [anon_sym_bool] = ACTIONS(2067), - [anon_sym_str] = ACTIONS(2067), - [anon_sym_char] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_DOT_DOT] = ACTIONS(2065), - [anon_sym_COLON_COLON] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(2065), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [anon_sym_fn] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_gen] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_impl] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_loop] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_mod] = ACTIONS(2067), - [anon_sym_pub] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_struct] = ACTIONS(2067), - [anon_sym_trait] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_union] = ACTIONS(2067), - [anon_sym_unsafe] = ACTIONS(2067), - [anon_sym_use] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_extern] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_move] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [sym_integer_literal] = ACTIONS(2065), - [aux_sym_string_literal_token1] = ACTIONS(2065), - [sym_char_literal] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(2067), - [anon_sym_false] = ACTIONS(2067), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_crate] = ACTIONS(2067), - [sym_metavariable] = ACTIONS(2065), - [sym__raw_string_literal_start] = ACTIONS(2065), - [sym_float_literal] = ACTIONS(2065), + [ts_builtin_sym_end] = ACTIONS(2047), + [sym_identifier] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2047), + [anon_sym_macro_rules_BANG] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_LBRACK] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_STAR] = ACTIONS(2047), + [anon_sym_u8] = ACTIONS(2049), + [anon_sym_i8] = ACTIONS(2049), + [anon_sym_u16] = ACTIONS(2049), + [anon_sym_i16] = ACTIONS(2049), + [anon_sym_u32] = ACTIONS(2049), + [anon_sym_i32] = ACTIONS(2049), + [anon_sym_u64] = ACTIONS(2049), + [anon_sym_i64] = ACTIONS(2049), + [anon_sym_u128] = ACTIONS(2049), + [anon_sym_i128] = ACTIONS(2049), + [anon_sym_isize] = ACTIONS(2049), + [anon_sym_usize] = ACTIONS(2049), + [anon_sym_f32] = ACTIONS(2049), + [anon_sym_f64] = ACTIONS(2049), + [anon_sym_bool] = ACTIONS(2049), + [anon_sym_str] = ACTIONS(2049), + [anon_sym_char] = ACTIONS(2049), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_BANG] = ACTIONS(2047), + [anon_sym_AMP] = ACTIONS(2047), + [anon_sym_PIPE] = ACTIONS(2047), + [anon_sym_LT] = ACTIONS(2047), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_COLON_COLON] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(2047), + [anon_sym_SQUOTE] = ACTIONS(2049), + [anon_sym_async] = ACTIONS(2049), + [anon_sym_break] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2049), + [anon_sym_continue] = ACTIONS(2049), + [anon_sym_default] = ACTIONS(2049), + [anon_sym_enum] = ACTIONS(2049), + [anon_sym_fn] = ACTIONS(2049), + [anon_sym_for] = ACTIONS(2049), + [anon_sym_gen] = ACTIONS(2049), + [anon_sym_if] = ACTIONS(2049), + [anon_sym_impl] = ACTIONS(2049), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_loop] = ACTIONS(2049), + [anon_sym_match] = ACTIONS(2049), + [anon_sym_mod] = ACTIONS(2049), + [anon_sym_pub] = ACTIONS(2049), + [anon_sym_return] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2049), + [anon_sym_struct] = ACTIONS(2049), + [anon_sym_trait] = ACTIONS(2049), + [anon_sym_type] = ACTIONS(2049), + [anon_sym_union] = ACTIONS(2049), + [anon_sym_unsafe] = ACTIONS(2049), + [anon_sym_use] = ACTIONS(2049), + [anon_sym_while] = ACTIONS(2049), + [anon_sym_extern] = ACTIONS(2049), + [anon_sym_yield] = ACTIONS(2049), + [anon_sym_move] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2049), + [sym_integer_literal] = ACTIONS(2047), + [aux_sym_string_literal_token1] = ACTIONS(2047), + [sym_char_literal] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2049), + [sym_super] = ACTIONS(2049), + [sym_crate] = ACTIONS(2049), + [sym_metavariable] = ACTIONS(2047), + [sym__raw_string_literal_start] = ACTIONS(2047), + [sym_float_literal] = ACTIONS(2047), }, [STATE(562)] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(2069), - [sym_identifier] = ACTIONS(2071), - [anon_sym_SEMI] = ACTIONS(2069), - [anon_sym_macro_rules_BANG] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2069), - [anon_sym_u8] = ACTIONS(2071), - [anon_sym_i8] = ACTIONS(2071), - [anon_sym_u16] = ACTIONS(2071), - [anon_sym_i16] = ACTIONS(2071), - [anon_sym_u32] = ACTIONS(2071), - [anon_sym_i32] = ACTIONS(2071), - [anon_sym_u64] = ACTIONS(2071), - [anon_sym_i64] = ACTIONS(2071), - [anon_sym_u128] = ACTIONS(2071), - [anon_sym_i128] = ACTIONS(2071), - [anon_sym_isize] = ACTIONS(2071), - [anon_sym_usize] = ACTIONS(2071), - [anon_sym_f32] = ACTIONS(2071), - [anon_sym_f64] = ACTIONS(2071), - [anon_sym_bool] = ACTIONS(2071), - [anon_sym_str] = ACTIONS(2071), - [anon_sym_char] = ACTIONS(2071), - [anon_sym_DASH] = ACTIONS(2069), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2069), - [anon_sym_LT] = ACTIONS(2069), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [anon_sym_COLON_COLON] = ACTIONS(2069), - [anon_sym_POUND] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_default] = ACTIONS(2071), - [anon_sym_enum] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_gen] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_impl] = ACTIONS(2071), - [anon_sym_let] = ACTIONS(2071), - [anon_sym_loop] = ACTIONS(2071), - [anon_sym_match] = ACTIONS(2071), - [anon_sym_mod] = ACTIONS(2071), - [anon_sym_pub] = ACTIONS(2071), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_static] = ACTIONS(2071), - [anon_sym_struct] = ACTIONS(2071), - [anon_sym_trait] = ACTIONS(2071), - [anon_sym_type] = ACTIONS(2071), - [anon_sym_union] = ACTIONS(2071), - [anon_sym_unsafe] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_extern] = ACTIONS(2071), - [anon_sym_yield] = ACTIONS(2071), - [anon_sym_move] = ACTIONS(2071), - [anon_sym_try] = ACTIONS(2071), - [sym_integer_literal] = ACTIONS(2069), - [aux_sym_string_literal_token1] = ACTIONS(2069), - [sym_char_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2071), - [sym_super] = ACTIONS(2071), - [sym_crate] = ACTIONS(2071), - [sym_metavariable] = ACTIONS(2069), - [sym__raw_string_literal_start] = ACTIONS(2069), - [sym_float_literal] = ACTIONS(2069), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_SEMI] = ACTIONS(2051), + [anon_sym_macro_rules_BANG] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_u8] = ACTIONS(2053), + [anon_sym_i8] = ACTIONS(2053), + [anon_sym_u16] = ACTIONS(2053), + [anon_sym_i16] = ACTIONS(2053), + [anon_sym_u32] = ACTIONS(2053), + [anon_sym_i32] = ACTIONS(2053), + [anon_sym_u64] = ACTIONS(2053), + [anon_sym_i64] = ACTIONS(2053), + [anon_sym_u128] = ACTIONS(2053), + [anon_sym_i128] = ACTIONS(2053), + [anon_sym_isize] = ACTIONS(2053), + [anon_sym_usize] = ACTIONS(2053), + [anon_sym_f32] = ACTIONS(2053), + [anon_sym_f64] = ACTIONS(2053), + [anon_sym_bool] = ACTIONS(2053), + [anon_sym_str] = ACTIONS(2053), + [anon_sym_char] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_BANG] = ACTIONS(2051), + [anon_sym_AMP] = ACTIONS(2051), + [anon_sym_PIPE] = ACTIONS(2051), + [anon_sym_LT] = ACTIONS(2051), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_COLON_COLON] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(2051), + [anon_sym_SQUOTE] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(2053), + [anon_sym_const] = ACTIONS(2053), + [anon_sym_continue] = ACTIONS(2053), + [anon_sym_default] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [anon_sym_fn] = ACTIONS(2053), + [anon_sym_for] = ACTIONS(2053), + [anon_sym_gen] = ACTIONS(2053), + [anon_sym_if] = ACTIONS(2053), + [anon_sym_impl] = ACTIONS(2053), + [anon_sym_let] = ACTIONS(2053), + [anon_sym_loop] = ACTIONS(2053), + [anon_sym_match] = ACTIONS(2053), + [anon_sym_mod] = ACTIONS(2053), + [anon_sym_pub] = ACTIONS(2053), + [anon_sym_return] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2053), + [anon_sym_struct] = ACTIONS(2053), + [anon_sym_trait] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_union] = ACTIONS(2053), + [anon_sym_unsafe] = ACTIONS(2053), + [anon_sym_use] = ACTIONS(2053), + [anon_sym_while] = ACTIONS(2053), + [anon_sym_extern] = ACTIONS(2053), + [anon_sym_yield] = ACTIONS(2053), + [anon_sym_move] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2053), + [sym_integer_literal] = ACTIONS(2051), + [aux_sym_string_literal_token1] = ACTIONS(2051), + [sym_char_literal] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2053), + [sym_super] = ACTIONS(2053), + [sym_crate] = ACTIONS(2053), + [sym_metavariable] = ACTIONS(2051), + [sym__raw_string_literal_start] = ACTIONS(2051), + [sym_float_literal] = ACTIONS(2051), }, [STATE(563)] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(2073), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_macro_rules_BANG] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_LBRACK] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2073), - [anon_sym_u8] = ACTIONS(2075), - [anon_sym_i8] = ACTIONS(2075), - [anon_sym_u16] = ACTIONS(2075), - [anon_sym_i16] = ACTIONS(2075), - [anon_sym_u32] = ACTIONS(2075), - [anon_sym_i32] = ACTIONS(2075), - [anon_sym_u64] = ACTIONS(2075), - [anon_sym_i64] = ACTIONS(2075), - [anon_sym_u128] = ACTIONS(2075), - [anon_sym_i128] = ACTIONS(2075), - [anon_sym_isize] = ACTIONS(2075), - [anon_sym_usize] = ACTIONS(2075), - [anon_sym_f32] = ACTIONS(2075), - [anon_sym_f64] = ACTIONS(2075), - [anon_sym_bool] = ACTIONS(2075), - [anon_sym_str] = ACTIONS(2075), - [anon_sym_char] = ACTIONS(2075), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_BANG] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2073), - [anon_sym_PIPE] = ACTIONS(2073), - [anon_sym_LT] = ACTIONS(2073), - [anon_sym_DOT_DOT] = ACTIONS(2073), - [anon_sym_COLON_COLON] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2075), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_break] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2075), - [anon_sym_continue] = ACTIONS(2075), - [anon_sym_default] = ACTIONS(2075), - [anon_sym_enum] = ACTIONS(2075), - [anon_sym_fn] = ACTIONS(2075), - [anon_sym_for] = ACTIONS(2075), - [anon_sym_gen] = ACTIONS(2075), - [anon_sym_if] = ACTIONS(2075), - [anon_sym_impl] = ACTIONS(2075), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_loop] = ACTIONS(2075), - [anon_sym_match] = ACTIONS(2075), - [anon_sym_mod] = ACTIONS(2075), - [anon_sym_pub] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2075), - [anon_sym_static] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(2075), - [anon_sym_trait] = ACTIONS(2075), - [anon_sym_type] = ACTIONS(2075), - [anon_sym_union] = ACTIONS(2075), - [anon_sym_unsafe] = ACTIONS(2075), - [anon_sym_use] = ACTIONS(2075), - [anon_sym_while] = ACTIONS(2075), - [anon_sym_extern] = ACTIONS(2075), - [anon_sym_yield] = ACTIONS(2075), - [anon_sym_move] = ACTIONS(2075), - [anon_sym_try] = ACTIONS(2075), - [sym_integer_literal] = ACTIONS(2073), - [aux_sym_string_literal_token1] = ACTIONS(2073), - [sym_char_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(2075), - [anon_sym_false] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2075), - [sym_super] = ACTIONS(2075), - [sym_crate] = ACTIONS(2075), - [sym_metavariable] = ACTIONS(2073), - [sym__raw_string_literal_start] = ACTIONS(2073), - [sym_float_literal] = ACTIONS(2073), + [ts_builtin_sym_end] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2055), + [anon_sym_macro_rules_BANG] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_u8] = ACTIONS(2057), + [anon_sym_i8] = ACTIONS(2057), + [anon_sym_u16] = ACTIONS(2057), + [anon_sym_i16] = ACTIONS(2057), + [anon_sym_u32] = ACTIONS(2057), + [anon_sym_i32] = ACTIONS(2057), + [anon_sym_u64] = ACTIONS(2057), + [anon_sym_i64] = ACTIONS(2057), + [anon_sym_u128] = ACTIONS(2057), + [anon_sym_i128] = ACTIONS(2057), + [anon_sym_isize] = ACTIONS(2057), + [anon_sym_usize] = ACTIONS(2057), + [anon_sym_f32] = ACTIONS(2057), + [anon_sym_f64] = ACTIONS(2057), + [anon_sym_bool] = ACTIONS(2057), + [anon_sym_str] = ACTIONS(2057), + [anon_sym_char] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_COLON_COLON] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(2055), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [anon_sym_fn] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_gen] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_impl] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_loop] = ACTIONS(2057), + [anon_sym_match] = ACTIONS(2057), + [anon_sym_mod] = ACTIONS(2057), + [anon_sym_pub] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_struct] = ACTIONS(2057), + [anon_sym_trait] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_union] = ACTIONS(2057), + [anon_sym_unsafe] = ACTIONS(2057), + [anon_sym_use] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_extern] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_move] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [sym_integer_literal] = ACTIONS(2055), + [aux_sym_string_literal_token1] = ACTIONS(2055), + [sym_char_literal] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_crate] = ACTIONS(2057), + [sym_metavariable] = ACTIONS(2055), + [sym__raw_string_literal_start] = ACTIONS(2055), + [sym_float_literal] = ACTIONS(2055), }, [STATE(564)] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2079), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_macro_rules_BANG] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_u8] = ACTIONS(2079), - [anon_sym_i8] = ACTIONS(2079), - [anon_sym_u16] = ACTIONS(2079), - [anon_sym_i16] = ACTIONS(2079), - [anon_sym_u32] = ACTIONS(2079), - [anon_sym_i32] = ACTIONS(2079), - [anon_sym_u64] = ACTIONS(2079), - [anon_sym_i64] = ACTIONS(2079), - [anon_sym_u128] = ACTIONS(2079), - [anon_sym_i128] = ACTIONS(2079), - [anon_sym_isize] = ACTIONS(2079), - [anon_sym_usize] = ACTIONS(2079), - [anon_sym_f32] = ACTIONS(2079), - [anon_sym_f64] = ACTIONS(2079), - [anon_sym_bool] = ACTIONS(2079), - [anon_sym_str] = ACTIONS(2079), - [anon_sym_char] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_DOT_DOT] = ACTIONS(2077), - [anon_sym_COLON_COLON] = ACTIONS(2077), - [anon_sym_POUND] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2079), - [anon_sym_async] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_default] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_fn] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_gen] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_impl] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_loop] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_mod] = ACTIONS(2079), - [anon_sym_pub] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_trait] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_union] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_extern] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(2079), - [anon_sym_move] = ACTIONS(2079), - [anon_sym_try] = ACTIONS(2079), - [sym_integer_literal] = ACTIONS(2077), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2077), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2079), - [sym_super] = ACTIONS(2079), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(2077), - [sym__raw_string_literal_start] = ACTIONS(2077), - [sym_float_literal] = ACTIONS(2077), + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_macro_rules_BANG] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_LBRACK] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_STAR] = ACTIONS(2059), + [anon_sym_u8] = ACTIONS(2061), + [anon_sym_i8] = ACTIONS(2061), + [anon_sym_u16] = ACTIONS(2061), + [anon_sym_i16] = ACTIONS(2061), + [anon_sym_u32] = ACTIONS(2061), + [anon_sym_i32] = ACTIONS(2061), + [anon_sym_u64] = ACTIONS(2061), + [anon_sym_i64] = ACTIONS(2061), + [anon_sym_u128] = ACTIONS(2061), + [anon_sym_i128] = ACTIONS(2061), + [anon_sym_isize] = ACTIONS(2061), + [anon_sym_usize] = ACTIONS(2061), + [anon_sym_f32] = ACTIONS(2061), + [anon_sym_f64] = ACTIONS(2061), + [anon_sym_bool] = ACTIONS(2061), + [anon_sym_str] = ACTIONS(2061), + [anon_sym_char] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(2059), + [anon_sym_AMP] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(2059), + [anon_sym_LT] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2059), + [anon_sym_COLON_COLON] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_default] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_fn] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_gen] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_impl] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2061), + [anon_sym_loop] = ACTIONS(2061), + [anon_sym_match] = ACTIONS(2061), + [anon_sym_mod] = ACTIONS(2061), + [anon_sym_pub] = ACTIONS(2061), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_struct] = ACTIONS(2061), + [anon_sym_trait] = ACTIONS(2061), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_union] = ACTIONS(2061), + [anon_sym_unsafe] = ACTIONS(2061), + [anon_sym_use] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_extern] = ACTIONS(2061), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_move] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [sym_integer_literal] = ACTIONS(2059), + [aux_sym_string_literal_token1] = ACTIONS(2059), + [sym_char_literal] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2061), + [sym_super] = ACTIONS(2061), + [sym_crate] = ACTIONS(2061), + [sym_metavariable] = ACTIONS(2059), + [sym__raw_string_literal_start] = ACTIONS(2059), + [sym_float_literal] = ACTIONS(2059), }, [STATE(565)] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(2081), - [sym_identifier] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_macro_rules_BANG] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2081), - [anon_sym_u8] = ACTIONS(2083), - [anon_sym_i8] = ACTIONS(2083), - [anon_sym_u16] = ACTIONS(2083), - [anon_sym_i16] = ACTIONS(2083), - [anon_sym_u32] = ACTIONS(2083), - [anon_sym_i32] = ACTIONS(2083), - [anon_sym_u64] = ACTIONS(2083), - [anon_sym_i64] = ACTIONS(2083), - [anon_sym_u128] = ACTIONS(2083), - [anon_sym_i128] = ACTIONS(2083), - [anon_sym_isize] = ACTIONS(2083), - [anon_sym_usize] = ACTIONS(2083), - [anon_sym_f32] = ACTIONS(2083), - [anon_sym_f64] = ACTIONS(2083), - [anon_sym_bool] = ACTIONS(2083), - [anon_sym_str] = ACTIONS(2083), - [anon_sym_char] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_DOT_DOT] = ACTIONS(2081), - [anon_sym_COLON_COLON] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_default] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [anon_sym_fn] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_gen] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_impl] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_loop] = ACTIONS(2083), - [anon_sym_match] = ACTIONS(2083), - [anon_sym_mod] = ACTIONS(2083), - [anon_sym_pub] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_static] = ACTIONS(2083), - [anon_sym_struct] = ACTIONS(2083), - [anon_sym_trait] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_union] = ACTIONS(2083), - [anon_sym_unsafe] = ACTIONS(2083), - [anon_sym_use] = ACTIONS(2083), - [anon_sym_while] = ACTIONS(2083), - [anon_sym_extern] = ACTIONS(2083), - [anon_sym_yield] = ACTIONS(2083), - [anon_sym_move] = ACTIONS(2083), - [anon_sym_try] = ACTIONS(2083), - [sym_integer_literal] = ACTIONS(2081), - [aux_sym_string_literal_token1] = ACTIONS(2081), - [sym_char_literal] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(2083), - [anon_sym_false] = ACTIONS(2083), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2083), - [sym_super] = ACTIONS(2083), - [sym_crate] = ACTIONS(2083), - [sym_metavariable] = ACTIONS(2081), - [sym__raw_string_literal_start] = ACTIONS(2081), - [sym_float_literal] = ACTIONS(2081), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_macro_rules_BANG] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_STAR] = ACTIONS(2063), + [anon_sym_u8] = ACTIONS(2065), + [anon_sym_i8] = ACTIONS(2065), + [anon_sym_u16] = ACTIONS(2065), + [anon_sym_i16] = ACTIONS(2065), + [anon_sym_u32] = ACTIONS(2065), + [anon_sym_i32] = ACTIONS(2065), + [anon_sym_u64] = ACTIONS(2065), + [anon_sym_i64] = ACTIONS(2065), + [anon_sym_u128] = ACTIONS(2065), + [anon_sym_i128] = ACTIONS(2065), + [anon_sym_isize] = ACTIONS(2065), + [anon_sym_usize] = ACTIONS(2065), + [anon_sym_f32] = ACTIONS(2065), + [anon_sym_f64] = ACTIONS(2065), + [anon_sym_bool] = ACTIONS(2065), + [anon_sym_str] = ACTIONS(2065), + [anon_sym_char] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(2063), + [anon_sym_PIPE] = ACTIONS(2063), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_DOT_DOT] = ACTIONS(2063), + [anon_sym_COLON_COLON] = ACTIONS(2063), + [anon_sym_POUND] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_default] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), + [anon_sym_fn] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_gen] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_impl] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(2065), + [anon_sym_loop] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2065), + [anon_sym_mod] = ACTIONS(2065), + [anon_sym_pub] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_static] = ACTIONS(2065), + [anon_sym_struct] = ACTIONS(2065), + [anon_sym_trait] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_union] = ACTIONS(2065), + [anon_sym_unsafe] = ACTIONS(2065), + [anon_sym_use] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_extern] = ACTIONS(2065), + [anon_sym_yield] = ACTIONS(2065), + [anon_sym_move] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2065), + [sym_integer_literal] = ACTIONS(2063), + [aux_sym_string_literal_token1] = ACTIONS(2063), + [sym_char_literal] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2065), + [sym_super] = ACTIONS(2065), + [sym_crate] = ACTIONS(2065), + [sym_metavariable] = ACTIONS(2063), + [sym__raw_string_literal_start] = ACTIONS(2063), + [sym_float_literal] = ACTIONS(2063), }, [STATE(566)] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(2085), - [sym_identifier] = ACTIONS(2087), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_macro_rules_BANG] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_STAR] = ACTIONS(2085), - [anon_sym_u8] = ACTIONS(2087), - [anon_sym_i8] = ACTIONS(2087), - [anon_sym_u16] = ACTIONS(2087), - [anon_sym_i16] = ACTIONS(2087), - [anon_sym_u32] = ACTIONS(2087), - [anon_sym_i32] = ACTIONS(2087), - [anon_sym_u64] = ACTIONS(2087), - [anon_sym_i64] = ACTIONS(2087), - [anon_sym_u128] = ACTIONS(2087), - [anon_sym_i128] = ACTIONS(2087), - [anon_sym_isize] = ACTIONS(2087), - [anon_sym_usize] = ACTIONS(2087), - [anon_sym_f32] = ACTIONS(2087), - [anon_sym_f64] = ACTIONS(2087), - [anon_sym_bool] = ACTIONS(2087), - [anon_sym_str] = ACTIONS(2087), - [anon_sym_char] = ACTIONS(2087), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_AMP] = ACTIONS(2085), - [anon_sym_PIPE] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_DOT_DOT] = ACTIONS(2085), - [anon_sym_COLON_COLON] = ACTIONS(2085), - [anon_sym_POUND] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2087), - [anon_sym_async] = ACTIONS(2087), - [anon_sym_break] = ACTIONS(2087), - [anon_sym_const] = ACTIONS(2087), - [anon_sym_continue] = ACTIONS(2087), - [anon_sym_default] = ACTIONS(2087), - [anon_sym_enum] = ACTIONS(2087), - [anon_sym_fn] = ACTIONS(2087), - [anon_sym_for] = ACTIONS(2087), - [anon_sym_gen] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(2087), - [anon_sym_impl] = ACTIONS(2087), - [anon_sym_let] = ACTIONS(2087), - [anon_sym_loop] = ACTIONS(2087), - [anon_sym_match] = ACTIONS(2087), - [anon_sym_mod] = ACTIONS(2087), - [anon_sym_pub] = ACTIONS(2087), - [anon_sym_return] = ACTIONS(2087), - [anon_sym_static] = ACTIONS(2087), - [anon_sym_struct] = ACTIONS(2087), - [anon_sym_trait] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2087), - [anon_sym_union] = ACTIONS(2087), - [anon_sym_unsafe] = ACTIONS(2087), - [anon_sym_use] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2087), - [anon_sym_extern] = ACTIONS(2087), - [anon_sym_yield] = ACTIONS(2087), - [anon_sym_move] = ACTIONS(2087), - [anon_sym_try] = ACTIONS(2087), - [sym_integer_literal] = ACTIONS(2085), - [aux_sym_string_literal_token1] = ACTIONS(2085), - [sym_char_literal] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(2087), - [anon_sym_false] = ACTIONS(2087), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2087), - [sym_super] = ACTIONS(2087), - [sym_crate] = ACTIONS(2087), - [sym_metavariable] = ACTIONS(2085), - [sym__raw_string_literal_start] = ACTIONS(2085), - [sym_float_literal] = ACTIONS(2085), + [ts_builtin_sym_end] = ACTIONS(2067), + [sym_identifier] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_macro_rules_BANG] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_u8] = ACTIONS(2069), + [anon_sym_i8] = ACTIONS(2069), + [anon_sym_u16] = ACTIONS(2069), + [anon_sym_i16] = ACTIONS(2069), + [anon_sym_u32] = ACTIONS(2069), + [anon_sym_i32] = ACTIONS(2069), + [anon_sym_u64] = ACTIONS(2069), + [anon_sym_i64] = ACTIONS(2069), + [anon_sym_u128] = ACTIONS(2069), + [anon_sym_i128] = ACTIONS(2069), + [anon_sym_isize] = ACTIONS(2069), + [anon_sym_usize] = ACTIONS(2069), + [anon_sym_f32] = ACTIONS(2069), + [anon_sym_f64] = ACTIONS(2069), + [anon_sym_bool] = ACTIONS(2069), + [anon_sym_str] = ACTIONS(2069), + [anon_sym_char] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_DOT_DOT] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(2067), + [anon_sym_POUND] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2069), + [anon_sym_async] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2069), + [anon_sym_const] = ACTIONS(2069), + [anon_sym_continue] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(2069), + [anon_sym_enum] = ACTIONS(2069), + [anon_sym_fn] = ACTIONS(2069), + [anon_sym_for] = ACTIONS(2069), + [anon_sym_gen] = ACTIONS(2069), + [anon_sym_if] = ACTIONS(2069), + [anon_sym_impl] = ACTIONS(2069), + [anon_sym_let] = ACTIONS(2069), + [anon_sym_loop] = ACTIONS(2069), + [anon_sym_match] = ACTIONS(2069), + [anon_sym_mod] = ACTIONS(2069), + [anon_sym_pub] = ACTIONS(2069), + [anon_sym_return] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2069), + [anon_sym_struct] = ACTIONS(2069), + [anon_sym_trait] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_union] = ACTIONS(2069), + [anon_sym_unsafe] = ACTIONS(2069), + [anon_sym_use] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2069), + [anon_sym_extern] = ACTIONS(2069), + [anon_sym_yield] = ACTIONS(2069), + [anon_sym_move] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2069), + [sym_integer_literal] = ACTIONS(2067), + [aux_sym_string_literal_token1] = ACTIONS(2067), + [sym_char_literal] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2069), + [sym_super] = ACTIONS(2069), + [sym_crate] = ACTIONS(2069), + [sym_metavariable] = ACTIONS(2067), + [sym__raw_string_literal_start] = ACTIONS(2067), + [sym_float_literal] = ACTIONS(2067), }, [STATE(567)] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(2089), - [sym_identifier] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_macro_rules_BANG] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_STAR] = ACTIONS(2089), - [anon_sym_u8] = ACTIONS(2091), - [anon_sym_i8] = ACTIONS(2091), - [anon_sym_u16] = ACTIONS(2091), - [anon_sym_i16] = ACTIONS(2091), - [anon_sym_u32] = ACTIONS(2091), - [anon_sym_i32] = ACTIONS(2091), - [anon_sym_u64] = ACTIONS(2091), - [anon_sym_i64] = ACTIONS(2091), - [anon_sym_u128] = ACTIONS(2091), - [anon_sym_i128] = ACTIONS(2091), - [anon_sym_isize] = ACTIONS(2091), - [anon_sym_usize] = ACTIONS(2091), - [anon_sym_f32] = ACTIONS(2091), - [anon_sym_f64] = ACTIONS(2091), - [anon_sym_bool] = ACTIONS(2091), - [anon_sym_str] = ACTIONS(2091), - [anon_sym_char] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2089), - [anon_sym_BANG] = ACTIONS(2089), - [anon_sym_AMP] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_COLON_COLON] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(2089), - [anon_sym_SQUOTE] = ACTIONS(2091), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_break] = ACTIONS(2091), - [anon_sym_const] = ACTIONS(2091), - [anon_sym_continue] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(2091), - [anon_sym_enum] = ACTIONS(2091), - [anon_sym_fn] = ACTIONS(2091), - [anon_sym_for] = ACTIONS(2091), - [anon_sym_gen] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_impl] = ACTIONS(2091), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_loop] = ACTIONS(2091), - [anon_sym_match] = ACTIONS(2091), - [anon_sym_mod] = ACTIONS(2091), - [anon_sym_pub] = ACTIONS(2091), - [anon_sym_return] = ACTIONS(2091), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_struct] = ACTIONS(2091), - [anon_sym_trait] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_union] = ACTIONS(2091), - [anon_sym_unsafe] = ACTIONS(2091), - [anon_sym_use] = ACTIONS(2091), - [anon_sym_while] = ACTIONS(2091), - [anon_sym_extern] = ACTIONS(2091), - [anon_sym_yield] = ACTIONS(2091), - [anon_sym_move] = ACTIONS(2091), - [anon_sym_try] = ACTIONS(2091), - [sym_integer_literal] = ACTIONS(2089), - [aux_sym_string_literal_token1] = ACTIONS(2089), - [sym_char_literal] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(2091), - [anon_sym_false] = ACTIONS(2091), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2091), - [sym_super] = ACTIONS(2091), - [sym_crate] = ACTIONS(2091), - [sym_metavariable] = ACTIONS(2089), - [sym__raw_string_literal_start] = ACTIONS(2089), - [sym_float_literal] = ACTIONS(2089), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_identifier] = ACTIONS(2073), + [anon_sym_SEMI] = ACTIONS(2071), + [anon_sym_macro_rules_BANG] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(2071), + [anon_sym_u8] = ACTIONS(2073), + [anon_sym_i8] = ACTIONS(2073), + [anon_sym_u16] = ACTIONS(2073), + [anon_sym_i16] = ACTIONS(2073), + [anon_sym_u32] = ACTIONS(2073), + [anon_sym_i32] = ACTIONS(2073), + [anon_sym_u64] = ACTIONS(2073), + [anon_sym_i64] = ACTIONS(2073), + [anon_sym_u128] = ACTIONS(2073), + [anon_sym_i128] = ACTIONS(2073), + [anon_sym_isize] = ACTIONS(2073), + [anon_sym_usize] = ACTIONS(2073), + [anon_sym_f32] = ACTIONS(2073), + [anon_sym_f64] = ACTIONS(2073), + [anon_sym_bool] = ACTIONS(2073), + [anon_sym_str] = ACTIONS(2073), + [anon_sym_char] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_BANG] = ACTIONS(2071), + [anon_sym_AMP] = ACTIONS(2071), + [anon_sym_PIPE] = ACTIONS(2071), + [anon_sym_LT] = ACTIONS(2071), + [anon_sym_DOT_DOT] = ACTIONS(2071), + [anon_sym_COLON_COLON] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(2071), + [anon_sym_SQUOTE] = ACTIONS(2073), + [anon_sym_async] = ACTIONS(2073), + [anon_sym_break] = ACTIONS(2073), + [anon_sym_const] = ACTIONS(2073), + [anon_sym_continue] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(2073), + [anon_sym_enum] = ACTIONS(2073), + [anon_sym_fn] = ACTIONS(2073), + [anon_sym_for] = ACTIONS(2073), + [anon_sym_gen] = ACTIONS(2073), + [anon_sym_if] = ACTIONS(2073), + [anon_sym_impl] = ACTIONS(2073), + [anon_sym_let] = ACTIONS(2073), + [anon_sym_loop] = ACTIONS(2073), + [anon_sym_match] = ACTIONS(2073), + [anon_sym_mod] = ACTIONS(2073), + [anon_sym_pub] = ACTIONS(2073), + [anon_sym_return] = ACTIONS(2073), + [anon_sym_static] = ACTIONS(2073), + [anon_sym_struct] = ACTIONS(2073), + [anon_sym_trait] = ACTIONS(2073), + [anon_sym_type] = ACTIONS(2073), + [anon_sym_union] = ACTIONS(2073), + [anon_sym_unsafe] = ACTIONS(2073), + [anon_sym_use] = ACTIONS(2073), + [anon_sym_while] = ACTIONS(2073), + [anon_sym_extern] = ACTIONS(2073), + [anon_sym_yield] = ACTIONS(2073), + [anon_sym_move] = ACTIONS(2073), + [anon_sym_try] = ACTIONS(2073), + [sym_integer_literal] = ACTIONS(2071), + [aux_sym_string_literal_token1] = ACTIONS(2071), + [sym_char_literal] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2073), + [sym_super] = ACTIONS(2073), + [sym_crate] = ACTIONS(2073), + [sym_metavariable] = ACTIONS(2071), + [sym__raw_string_literal_start] = ACTIONS(2071), + [sym_float_literal] = ACTIONS(2071), }, [STATE(568)] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(2093), - [sym_identifier] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_macro_rules_BANG] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_u8] = ACTIONS(2095), - [anon_sym_i8] = ACTIONS(2095), - [anon_sym_u16] = ACTIONS(2095), - [anon_sym_i16] = ACTIONS(2095), - [anon_sym_u32] = ACTIONS(2095), - [anon_sym_i32] = ACTIONS(2095), - [anon_sym_u64] = ACTIONS(2095), - [anon_sym_i64] = ACTIONS(2095), - [anon_sym_u128] = ACTIONS(2095), - [anon_sym_i128] = ACTIONS(2095), - [anon_sym_isize] = ACTIONS(2095), - [anon_sym_usize] = ACTIONS(2095), - [anon_sym_f32] = ACTIONS(2095), - [anon_sym_f64] = ACTIONS(2095), - [anon_sym_bool] = ACTIONS(2095), - [anon_sym_str] = ACTIONS(2095), - [anon_sym_char] = ACTIONS(2095), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_DOT_DOT] = ACTIONS(2093), - [anon_sym_COLON_COLON] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2095), - [anon_sym_async] = ACTIONS(2095), - [anon_sym_break] = ACTIONS(2095), - [anon_sym_const] = ACTIONS(2095), - [anon_sym_continue] = ACTIONS(2095), - [anon_sym_default] = ACTIONS(2095), - [anon_sym_enum] = ACTIONS(2095), - [anon_sym_fn] = ACTIONS(2095), - [anon_sym_for] = ACTIONS(2095), - [anon_sym_gen] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_impl] = ACTIONS(2095), - [anon_sym_let] = ACTIONS(2095), - [anon_sym_loop] = ACTIONS(2095), - [anon_sym_match] = ACTIONS(2095), - [anon_sym_mod] = ACTIONS(2095), - [anon_sym_pub] = ACTIONS(2095), - [anon_sym_return] = ACTIONS(2095), - [anon_sym_static] = ACTIONS(2095), - [anon_sym_struct] = ACTIONS(2095), - [anon_sym_trait] = ACTIONS(2095), - [anon_sym_type] = ACTIONS(2095), - [anon_sym_union] = ACTIONS(2095), - [anon_sym_unsafe] = ACTIONS(2095), - [anon_sym_use] = ACTIONS(2095), - [anon_sym_while] = ACTIONS(2095), - [anon_sym_extern] = ACTIONS(2095), - [anon_sym_yield] = ACTIONS(2095), - [anon_sym_move] = ACTIONS(2095), - [anon_sym_try] = ACTIONS(2095), - [sym_integer_literal] = ACTIONS(2093), - [aux_sym_string_literal_token1] = ACTIONS(2093), - [sym_char_literal] = ACTIONS(2093), - [anon_sym_true] = ACTIONS(2095), - [anon_sym_false] = ACTIONS(2095), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2095), - [sym_super] = ACTIONS(2095), - [sym_crate] = ACTIONS(2095), - [sym_metavariable] = ACTIONS(2093), - [sym__raw_string_literal_start] = ACTIONS(2093), - [sym_float_literal] = ACTIONS(2093), + [ts_builtin_sym_end] = ACTIONS(2075), + [sym_identifier] = ACTIONS(2077), + [anon_sym_SEMI] = ACTIONS(2075), + [anon_sym_macro_rules_BANG] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_LBRACK] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_u8] = ACTIONS(2077), + [anon_sym_i8] = ACTIONS(2077), + [anon_sym_u16] = ACTIONS(2077), + [anon_sym_i16] = ACTIONS(2077), + [anon_sym_u32] = ACTIONS(2077), + [anon_sym_i32] = ACTIONS(2077), + [anon_sym_u64] = ACTIONS(2077), + [anon_sym_i64] = ACTIONS(2077), + [anon_sym_u128] = ACTIONS(2077), + [anon_sym_i128] = ACTIONS(2077), + [anon_sym_isize] = ACTIONS(2077), + [anon_sym_usize] = ACTIONS(2077), + [anon_sym_f32] = ACTIONS(2077), + [anon_sym_f64] = ACTIONS(2077), + [anon_sym_bool] = ACTIONS(2077), + [anon_sym_str] = ACTIONS(2077), + [anon_sym_char] = ACTIONS(2077), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2075), + [anon_sym_AMP] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_COLON_COLON] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(2075), + [anon_sym_SQUOTE] = ACTIONS(2077), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_const] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_default] = ACTIONS(2077), + [anon_sym_enum] = ACTIONS(2077), + [anon_sym_fn] = ACTIONS(2077), + [anon_sym_for] = ACTIONS(2077), + [anon_sym_gen] = ACTIONS(2077), + [anon_sym_if] = ACTIONS(2077), + [anon_sym_impl] = ACTIONS(2077), + [anon_sym_let] = ACTIONS(2077), + [anon_sym_loop] = ACTIONS(2077), + [anon_sym_match] = ACTIONS(2077), + [anon_sym_mod] = ACTIONS(2077), + [anon_sym_pub] = ACTIONS(2077), + [anon_sym_return] = ACTIONS(2077), + [anon_sym_static] = ACTIONS(2077), + [anon_sym_struct] = ACTIONS(2077), + [anon_sym_trait] = ACTIONS(2077), + [anon_sym_type] = ACTIONS(2077), + [anon_sym_union] = ACTIONS(2077), + [anon_sym_unsafe] = ACTIONS(2077), + [anon_sym_use] = ACTIONS(2077), + [anon_sym_while] = ACTIONS(2077), + [anon_sym_extern] = ACTIONS(2077), + [anon_sym_yield] = ACTIONS(2077), + [anon_sym_move] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2077), + [sym_integer_literal] = ACTIONS(2075), + [aux_sym_string_literal_token1] = ACTIONS(2075), + [sym_char_literal] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2077), + [sym_super] = ACTIONS(2077), + [sym_crate] = ACTIONS(2077), + [sym_metavariable] = ACTIONS(2075), + [sym__raw_string_literal_start] = ACTIONS(2075), + [sym_float_literal] = ACTIONS(2075), }, [STATE(569)] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [ts_builtin_sym_end] = ACTIONS(2097), - [sym_identifier] = ACTIONS(2099), - [anon_sym_SEMI] = ACTIONS(2097), - [anon_sym_macro_rules_BANG] = ACTIONS(2097), - [anon_sym_LPAREN] = ACTIONS(2097), - [anon_sym_LBRACK] = ACTIONS(2097), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_RBRACE] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(2097), - [anon_sym_u8] = ACTIONS(2099), - [anon_sym_i8] = ACTIONS(2099), - [anon_sym_u16] = ACTIONS(2099), - [anon_sym_i16] = ACTIONS(2099), - [anon_sym_u32] = ACTIONS(2099), - [anon_sym_i32] = ACTIONS(2099), - [anon_sym_u64] = ACTIONS(2099), - [anon_sym_i64] = ACTIONS(2099), - [anon_sym_u128] = ACTIONS(2099), - [anon_sym_i128] = ACTIONS(2099), - [anon_sym_isize] = ACTIONS(2099), - [anon_sym_usize] = ACTIONS(2099), - [anon_sym_f32] = ACTIONS(2099), - [anon_sym_f64] = ACTIONS(2099), - [anon_sym_bool] = ACTIONS(2099), - [anon_sym_str] = ACTIONS(2099), - [anon_sym_char] = ACTIONS(2099), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_BANG] = ACTIONS(2097), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_PIPE] = ACTIONS(2097), - [anon_sym_LT] = ACTIONS(2097), - [anon_sym_DOT_DOT] = ACTIONS(2097), - [anon_sym_COLON_COLON] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(2097), - [anon_sym_SQUOTE] = ACTIONS(2099), - [anon_sym_async] = ACTIONS(2099), - [anon_sym_break] = ACTIONS(2099), - [anon_sym_const] = ACTIONS(2099), - [anon_sym_continue] = ACTIONS(2099), - [anon_sym_default] = ACTIONS(2099), - [anon_sym_enum] = ACTIONS(2099), - [anon_sym_fn] = ACTIONS(2099), - [anon_sym_for] = ACTIONS(2099), - [anon_sym_gen] = ACTIONS(2099), - [anon_sym_if] = ACTIONS(2099), - [anon_sym_impl] = ACTIONS(2099), - [anon_sym_let] = ACTIONS(2099), - [anon_sym_loop] = ACTIONS(2099), - [anon_sym_match] = ACTIONS(2099), - [anon_sym_mod] = ACTIONS(2099), - [anon_sym_pub] = ACTIONS(2099), - [anon_sym_return] = ACTIONS(2099), - [anon_sym_static] = ACTIONS(2099), - [anon_sym_struct] = ACTIONS(2099), - [anon_sym_trait] = ACTIONS(2099), - [anon_sym_type] = ACTIONS(2099), - [anon_sym_union] = ACTIONS(2099), - [anon_sym_unsafe] = ACTIONS(2099), - [anon_sym_use] = ACTIONS(2099), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_extern] = ACTIONS(2099), - [anon_sym_yield] = ACTIONS(2099), - [anon_sym_move] = ACTIONS(2099), - [anon_sym_try] = ACTIONS(2099), - [sym_integer_literal] = ACTIONS(2097), - [aux_sym_string_literal_token1] = ACTIONS(2097), - [sym_char_literal] = ACTIONS(2097), - [anon_sym_true] = ACTIONS(2099), - [anon_sym_false] = ACTIONS(2099), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2099), - [sym_super] = ACTIONS(2099), - [sym_crate] = ACTIONS(2099), - [sym_metavariable] = ACTIONS(2097), - [sym__raw_string_literal_start] = ACTIONS(2097), - [sym_float_literal] = ACTIONS(2097), + [ts_builtin_sym_end] = ACTIONS(2079), + [sym_identifier] = ACTIONS(2081), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_macro_rules_BANG] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_LBRACK] = ACTIONS(2079), + [anon_sym_LBRACE] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2079), + [anon_sym_u8] = ACTIONS(2081), + [anon_sym_i8] = ACTIONS(2081), + [anon_sym_u16] = ACTIONS(2081), + [anon_sym_i16] = ACTIONS(2081), + [anon_sym_u32] = ACTIONS(2081), + [anon_sym_i32] = ACTIONS(2081), + [anon_sym_u64] = ACTIONS(2081), + [anon_sym_i64] = ACTIONS(2081), + [anon_sym_u128] = ACTIONS(2081), + [anon_sym_i128] = ACTIONS(2081), + [anon_sym_isize] = ACTIONS(2081), + [anon_sym_usize] = ACTIONS(2081), + [anon_sym_f32] = ACTIONS(2081), + [anon_sym_f64] = ACTIONS(2081), + [anon_sym_bool] = ACTIONS(2081), + [anon_sym_str] = ACTIONS(2081), + [anon_sym_char] = ACTIONS(2081), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_BANG] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2079), + [anon_sym_LT] = ACTIONS(2079), + [anon_sym_DOT_DOT] = ACTIONS(2079), + [anon_sym_COLON_COLON] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(2079), + [anon_sym_SQUOTE] = ACTIONS(2081), + [anon_sym_async] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2081), + [anon_sym_const] = ACTIONS(2081), + [anon_sym_continue] = ACTIONS(2081), + [anon_sym_default] = ACTIONS(2081), + [anon_sym_enum] = ACTIONS(2081), + [anon_sym_fn] = ACTIONS(2081), + [anon_sym_for] = ACTIONS(2081), + [anon_sym_gen] = ACTIONS(2081), + [anon_sym_if] = ACTIONS(2081), + [anon_sym_impl] = ACTIONS(2081), + [anon_sym_let] = ACTIONS(2081), + [anon_sym_loop] = ACTIONS(2081), + [anon_sym_match] = ACTIONS(2081), + [anon_sym_mod] = ACTIONS(2081), + [anon_sym_pub] = ACTIONS(2081), + [anon_sym_return] = ACTIONS(2081), + [anon_sym_static] = ACTIONS(2081), + [anon_sym_struct] = ACTIONS(2081), + [anon_sym_trait] = ACTIONS(2081), + [anon_sym_type] = ACTIONS(2081), + [anon_sym_union] = ACTIONS(2081), + [anon_sym_unsafe] = ACTIONS(2081), + [anon_sym_use] = ACTIONS(2081), + [anon_sym_while] = ACTIONS(2081), + [anon_sym_extern] = ACTIONS(2081), + [anon_sym_yield] = ACTIONS(2081), + [anon_sym_move] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(2081), + [sym_integer_literal] = ACTIONS(2079), + [aux_sym_string_literal_token1] = ACTIONS(2079), + [sym_char_literal] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2081), + [sym_super] = ACTIONS(2081), + [sym_crate] = ACTIONS(2081), + [sym_metavariable] = ACTIONS(2079), + [sym__raw_string_literal_start] = ACTIONS(2079), + [sym_float_literal] = ACTIONS(2079), }, [STATE(570)] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(2101), - [sym_identifier] = ACTIONS(2103), - [anon_sym_SEMI] = ACTIONS(2101), - [anon_sym_macro_rules_BANG] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2101), - [anon_sym_LBRACK] = ACTIONS(2101), - [anon_sym_LBRACE] = ACTIONS(2101), - [anon_sym_RBRACE] = ACTIONS(2101), - [anon_sym_STAR] = ACTIONS(2101), - [anon_sym_u8] = ACTIONS(2103), - [anon_sym_i8] = ACTIONS(2103), - [anon_sym_u16] = ACTIONS(2103), - [anon_sym_i16] = ACTIONS(2103), - [anon_sym_u32] = ACTIONS(2103), - [anon_sym_i32] = ACTIONS(2103), - [anon_sym_u64] = ACTIONS(2103), - [anon_sym_i64] = ACTIONS(2103), - [anon_sym_u128] = ACTIONS(2103), - [anon_sym_i128] = ACTIONS(2103), - [anon_sym_isize] = ACTIONS(2103), - [anon_sym_usize] = ACTIONS(2103), - [anon_sym_f32] = ACTIONS(2103), - [anon_sym_f64] = ACTIONS(2103), - [anon_sym_bool] = ACTIONS(2103), - [anon_sym_str] = ACTIONS(2103), - [anon_sym_char] = ACTIONS(2103), - [anon_sym_DASH] = ACTIONS(2101), - [anon_sym_BANG] = ACTIONS(2101), - [anon_sym_AMP] = ACTIONS(2101), - [anon_sym_PIPE] = ACTIONS(2101), - [anon_sym_LT] = ACTIONS(2101), - [anon_sym_DOT_DOT] = ACTIONS(2101), - [anon_sym_COLON_COLON] = ACTIONS(2101), - [anon_sym_POUND] = ACTIONS(2101), - [anon_sym_SQUOTE] = ACTIONS(2103), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_break] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(2103), - [anon_sym_continue] = ACTIONS(2103), - [anon_sym_default] = ACTIONS(2103), - [anon_sym_enum] = ACTIONS(2103), - [anon_sym_fn] = ACTIONS(2103), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_gen] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(2103), - [anon_sym_impl] = ACTIONS(2103), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_loop] = ACTIONS(2103), - [anon_sym_match] = ACTIONS(2103), - [anon_sym_mod] = ACTIONS(2103), - [anon_sym_pub] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2103), - [anon_sym_static] = ACTIONS(2103), - [anon_sym_struct] = ACTIONS(2103), - [anon_sym_trait] = ACTIONS(2103), - [anon_sym_type] = ACTIONS(2103), - [anon_sym_union] = ACTIONS(2103), - [anon_sym_unsafe] = ACTIONS(2103), - [anon_sym_use] = ACTIONS(2103), - [anon_sym_while] = ACTIONS(2103), - [anon_sym_extern] = ACTIONS(2103), - [anon_sym_yield] = ACTIONS(2103), - [anon_sym_move] = ACTIONS(2103), - [anon_sym_try] = ACTIONS(2103), - [sym_integer_literal] = ACTIONS(2101), - [aux_sym_string_literal_token1] = ACTIONS(2101), - [sym_char_literal] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(2103), - [anon_sym_false] = ACTIONS(2103), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2103), - [sym_super] = ACTIONS(2103), - [sym_crate] = ACTIONS(2103), - [sym_metavariable] = ACTIONS(2101), - [sym__raw_string_literal_start] = ACTIONS(2101), - [sym_float_literal] = ACTIONS(2101), + [ts_builtin_sym_end] = ACTIONS(2083), + [sym_identifier] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_macro_rules_BANG] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_STAR] = ACTIONS(2083), + [anon_sym_u8] = ACTIONS(2085), + [anon_sym_i8] = ACTIONS(2085), + [anon_sym_u16] = ACTIONS(2085), + [anon_sym_i16] = ACTIONS(2085), + [anon_sym_u32] = ACTIONS(2085), + [anon_sym_i32] = ACTIONS(2085), + [anon_sym_u64] = ACTIONS(2085), + [anon_sym_i64] = ACTIONS(2085), + [anon_sym_u128] = ACTIONS(2085), + [anon_sym_i128] = ACTIONS(2085), + [anon_sym_isize] = ACTIONS(2085), + [anon_sym_usize] = ACTIONS(2085), + [anon_sym_f32] = ACTIONS(2085), + [anon_sym_f64] = ACTIONS(2085), + [anon_sym_bool] = ACTIONS(2085), + [anon_sym_str] = ACTIONS(2085), + [anon_sym_char] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_PIPE] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_COLON_COLON] = ACTIONS(2083), + [anon_sym_POUND] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2085), + [anon_sym_async] = ACTIONS(2085), + [anon_sym_break] = ACTIONS(2085), + [anon_sym_const] = ACTIONS(2085), + [anon_sym_continue] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(2085), + [anon_sym_enum] = ACTIONS(2085), + [anon_sym_fn] = ACTIONS(2085), + [anon_sym_for] = ACTIONS(2085), + [anon_sym_gen] = ACTIONS(2085), + [anon_sym_if] = ACTIONS(2085), + [anon_sym_impl] = ACTIONS(2085), + [anon_sym_let] = ACTIONS(2085), + [anon_sym_loop] = ACTIONS(2085), + [anon_sym_match] = ACTIONS(2085), + [anon_sym_mod] = ACTIONS(2085), + [anon_sym_pub] = ACTIONS(2085), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_static] = ACTIONS(2085), + [anon_sym_struct] = ACTIONS(2085), + [anon_sym_trait] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2085), + [anon_sym_union] = ACTIONS(2085), + [anon_sym_unsafe] = ACTIONS(2085), + [anon_sym_use] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2085), + [anon_sym_extern] = ACTIONS(2085), + [anon_sym_yield] = ACTIONS(2085), + [anon_sym_move] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2085), + [sym_integer_literal] = ACTIONS(2083), + [aux_sym_string_literal_token1] = ACTIONS(2083), + [sym_char_literal] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(2085), + [anon_sym_false] = ACTIONS(2085), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2085), + [sym_super] = ACTIONS(2085), + [sym_crate] = ACTIONS(2085), + [sym_metavariable] = ACTIONS(2083), + [sym__raw_string_literal_start] = ACTIONS(2083), + [sym_float_literal] = ACTIONS(2083), }, [STATE(571)] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(2105), - [sym_identifier] = ACTIONS(2107), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_macro_rules_BANG] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_u8] = ACTIONS(2107), - [anon_sym_i8] = ACTIONS(2107), - [anon_sym_u16] = ACTIONS(2107), - [anon_sym_i16] = ACTIONS(2107), - [anon_sym_u32] = ACTIONS(2107), - [anon_sym_i32] = ACTIONS(2107), - [anon_sym_u64] = ACTIONS(2107), - [anon_sym_i64] = ACTIONS(2107), - [anon_sym_u128] = ACTIONS(2107), - [anon_sym_i128] = ACTIONS(2107), - [anon_sym_isize] = ACTIONS(2107), - [anon_sym_usize] = ACTIONS(2107), - [anon_sym_f32] = ACTIONS(2107), - [anon_sym_f64] = ACTIONS(2107), - [anon_sym_bool] = ACTIONS(2107), - [anon_sym_str] = ACTIONS(2107), - [anon_sym_char] = ACTIONS(2107), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_COLON_COLON] = ACTIONS(2105), - [anon_sym_POUND] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2107), - [anon_sym_async] = ACTIONS(2107), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_const] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2107), - [anon_sym_default] = ACTIONS(2107), - [anon_sym_enum] = ACTIONS(2107), - [anon_sym_fn] = ACTIONS(2107), - [anon_sym_for] = ACTIONS(2107), - [anon_sym_gen] = ACTIONS(2107), - [anon_sym_if] = ACTIONS(2107), - [anon_sym_impl] = ACTIONS(2107), - [anon_sym_let] = ACTIONS(2107), - [anon_sym_loop] = ACTIONS(2107), - [anon_sym_match] = ACTIONS(2107), - [anon_sym_mod] = ACTIONS(2107), - [anon_sym_pub] = ACTIONS(2107), - [anon_sym_return] = ACTIONS(2107), - [anon_sym_static] = ACTIONS(2107), - [anon_sym_struct] = ACTIONS(2107), - [anon_sym_trait] = ACTIONS(2107), - [anon_sym_type] = ACTIONS(2107), - [anon_sym_union] = ACTIONS(2107), - [anon_sym_unsafe] = ACTIONS(2107), - [anon_sym_use] = ACTIONS(2107), - [anon_sym_while] = ACTIONS(2107), - [anon_sym_extern] = ACTIONS(2107), - [anon_sym_yield] = ACTIONS(2107), - [anon_sym_move] = ACTIONS(2107), - [anon_sym_try] = ACTIONS(2107), - [sym_integer_literal] = ACTIONS(2105), - [aux_sym_string_literal_token1] = ACTIONS(2105), - [sym_char_literal] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(2107), - [anon_sym_false] = ACTIONS(2107), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2107), - [sym_super] = ACTIONS(2107), - [sym_crate] = ACTIONS(2107), - [sym_metavariable] = ACTIONS(2105), - [sym__raw_string_literal_start] = ACTIONS(2105), - [sym_float_literal] = ACTIONS(2105), + [ts_builtin_sym_end] = ACTIONS(2087), + [sym_identifier] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym_macro_rules_BANG] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(2087), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_STAR] = ACTIONS(2087), + [anon_sym_u8] = ACTIONS(2089), + [anon_sym_i8] = ACTIONS(2089), + [anon_sym_u16] = ACTIONS(2089), + [anon_sym_i16] = ACTIONS(2089), + [anon_sym_u32] = ACTIONS(2089), + [anon_sym_i32] = ACTIONS(2089), + [anon_sym_u64] = ACTIONS(2089), + [anon_sym_i64] = ACTIONS(2089), + [anon_sym_u128] = ACTIONS(2089), + [anon_sym_i128] = ACTIONS(2089), + [anon_sym_isize] = ACTIONS(2089), + [anon_sym_usize] = ACTIONS(2089), + [anon_sym_f32] = ACTIONS(2089), + [anon_sym_f64] = ACTIONS(2089), + [anon_sym_bool] = ACTIONS(2089), + [anon_sym_str] = ACTIONS(2089), + [anon_sym_char] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_BANG] = ACTIONS(2087), + [anon_sym_AMP] = ACTIONS(2087), + [anon_sym_PIPE] = ACTIONS(2087), + [anon_sym_LT] = ACTIONS(2087), + [anon_sym_DOT_DOT] = ACTIONS(2087), + [anon_sym_COLON_COLON] = ACTIONS(2087), + [anon_sym_POUND] = ACTIONS(2087), + [anon_sym_SQUOTE] = ACTIONS(2089), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_const] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_default] = ACTIONS(2089), + [anon_sym_enum] = ACTIONS(2089), + [anon_sym_fn] = ACTIONS(2089), + [anon_sym_for] = ACTIONS(2089), + [anon_sym_gen] = ACTIONS(2089), + [anon_sym_if] = ACTIONS(2089), + [anon_sym_impl] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2089), + [anon_sym_loop] = ACTIONS(2089), + [anon_sym_match] = ACTIONS(2089), + [anon_sym_mod] = ACTIONS(2089), + [anon_sym_pub] = ACTIONS(2089), + [anon_sym_return] = ACTIONS(2089), + [anon_sym_static] = ACTIONS(2089), + [anon_sym_struct] = ACTIONS(2089), + [anon_sym_trait] = ACTIONS(2089), + [anon_sym_type] = ACTIONS(2089), + [anon_sym_union] = ACTIONS(2089), + [anon_sym_unsafe] = ACTIONS(2089), + [anon_sym_use] = ACTIONS(2089), + [anon_sym_while] = ACTIONS(2089), + [anon_sym_extern] = ACTIONS(2089), + [anon_sym_yield] = ACTIONS(2089), + [anon_sym_move] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2089), + [sym_integer_literal] = ACTIONS(2087), + [aux_sym_string_literal_token1] = ACTIONS(2087), + [sym_char_literal] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2089), + [sym_super] = ACTIONS(2089), + [sym_crate] = ACTIONS(2089), + [sym_metavariable] = ACTIONS(2087), + [sym__raw_string_literal_start] = ACTIONS(2087), + [sym_float_literal] = ACTIONS(2087), }, [STATE(572)] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(2109), - [sym_identifier] = ACTIONS(2111), - [anon_sym_SEMI] = ACTIONS(2109), - [anon_sym_macro_rules_BANG] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_u8] = ACTIONS(2111), - [anon_sym_i8] = ACTIONS(2111), - [anon_sym_u16] = ACTIONS(2111), - [anon_sym_i16] = ACTIONS(2111), - [anon_sym_u32] = ACTIONS(2111), - [anon_sym_i32] = ACTIONS(2111), - [anon_sym_u64] = ACTIONS(2111), - [anon_sym_i64] = ACTIONS(2111), - [anon_sym_u128] = ACTIONS(2111), - [anon_sym_i128] = ACTIONS(2111), - [anon_sym_isize] = ACTIONS(2111), - [anon_sym_usize] = ACTIONS(2111), - [anon_sym_f32] = ACTIONS(2111), - [anon_sym_f64] = ACTIONS(2111), - [anon_sym_bool] = ACTIONS(2111), - [anon_sym_str] = ACTIONS(2111), - [anon_sym_char] = ACTIONS(2111), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_DOT_DOT] = ACTIONS(2109), - [anon_sym_COLON_COLON] = ACTIONS(2109), - [anon_sym_POUND] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2111), - [anon_sym_async] = ACTIONS(2111), - [anon_sym_break] = ACTIONS(2111), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_continue] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2111), - [anon_sym_enum] = ACTIONS(2111), - [anon_sym_fn] = ACTIONS(2111), - [anon_sym_for] = ACTIONS(2111), - [anon_sym_gen] = ACTIONS(2111), - [anon_sym_if] = ACTIONS(2111), - [anon_sym_impl] = ACTIONS(2111), - [anon_sym_let] = ACTIONS(2111), - [anon_sym_loop] = ACTIONS(2111), - [anon_sym_match] = ACTIONS(2111), - [anon_sym_mod] = ACTIONS(2111), - [anon_sym_pub] = ACTIONS(2111), - [anon_sym_return] = ACTIONS(2111), - [anon_sym_static] = ACTIONS(2111), - [anon_sym_struct] = ACTIONS(2111), - [anon_sym_trait] = ACTIONS(2111), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_union] = ACTIONS(2111), - [anon_sym_unsafe] = ACTIONS(2111), - [anon_sym_use] = ACTIONS(2111), - [anon_sym_while] = ACTIONS(2111), - [anon_sym_extern] = ACTIONS(2111), - [anon_sym_yield] = ACTIONS(2111), - [anon_sym_move] = ACTIONS(2111), - [anon_sym_try] = ACTIONS(2111), - [sym_integer_literal] = ACTIONS(2109), - [aux_sym_string_literal_token1] = ACTIONS(2109), - [sym_char_literal] = ACTIONS(2109), - [anon_sym_true] = ACTIONS(2111), - [anon_sym_false] = ACTIONS(2111), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2111), - [sym_super] = ACTIONS(2111), - [sym_crate] = ACTIONS(2111), - [sym_metavariable] = ACTIONS(2109), - [sym__raw_string_literal_start] = ACTIONS(2109), - [sym_float_literal] = ACTIONS(2109), + [ts_builtin_sym_end] = ACTIONS(2091), + [sym_identifier] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(2091), + [anon_sym_macro_rules_BANG] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(2091), + [anon_sym_LBRACK] = ACTIONS(2091), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_RBRACE] = ACTIONS(2091), + [anon_sym_STAR] = ACTIONS(2091), + [anon_sym_u8] = ACTIONS(2093), + [anon_sym_i8] = ACTIONS(2093), + [anon_sym_u16] = ACTIONS(2093), + [anon_sym_i16] = ACTIONS(2093), + [anon_sym_u32] = ACTIONS(2093), + [anon_sym_i32] = ACTIONS(2093), + [anon_sym_u64] = ACTIONS(2093), + [anon_sym_i64] = ACTIONS(2093), + [anon_sym_u128] = ACTIONS(2093), + [anon_sym_i128] = ACTIONS(2093), + [anon_sym_isize] = ACTIONS(2093), + [anon_sym_usize] = ACTIONS(2093), + [anon_sym_f32] = ACTIONS(2093), + [anon_sym_f64] = ACTIONS(2093), + [anon_sym_bool] = ACTIONS(2093), + [anon_sym_str] = ACTIONS(2093), + [anon_sym_char] = ACTIONS(2093), + [anon_sym_DASH] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(2091), + [anon_sym_AMP] = ACTIONS(2091), + [anon_sym_PIPE] = ACTIONS(2091), + [anon_sym_LT] = ACTIONS(2091), + [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_COLON_COLON] = ACTIONS(2091), + [anon_sym_POUND] = ACTIONS(2091), + [anon_sym_SQUOTE] = ACTIONS(2093), + [anon_sym_async] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2093), + [anon_sym_const] = ACTIONS(2093), + [anon_sym_continue] = ACTIONS(2093), + [anon_sym_default] = ACTIONS(2093), + [anon_sym_enum] = ACTIONS(2093), + [anon_sym_fn] = ACTIONS(2093), + [anon_sym_for] = ACTIONS(2093), + [anon_sym_gen] = ACTIONS(2093), + [anon_sym_if] = ACTIONS(2093), + [anon_sym_impl] = ACTIONS(2093), + [anon_sym_let] = ACTIONS(2093), + [anon_sym_loop] = ACTIONS(2093), + [anon_sym_match] = ACTIONS(2093), + [anon_sym_mod] = ACTIONS(2093), + [anon_sym_pub] = ACTIONS(2093), + [anon_sym_return] = ACTIONS(2093), + [anon_sym_static] = ACTIONS(2093), + [anon_sym_struct] = ACTIONS(2093), + [anon_sym_trait] = ACTIONS(2093), + [anon_sym_type] = ACTIONS(2093), + [anon_sym_union] = ACTIONS(2093), + [anon_sym_unsafe] = ACTIONS(2093), + [anon_sym_use] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2093), + [anon_sym_extern] = ACTIONS(2093), + [anon_sym_yield] = ACTIONS(2093), + [anon_sym_move] = ACTIONS(2093), + [anon_sym_try] = ACTIONS(2093), + [sym_integer_literal] = ACTIONS(2091), + [aux_sym_string_literal_token1] = ACTIONS(2091), + [sym_char_literal] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(2093), + [anon_sym_false] = ACTIONS(2093), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2093), + [sym_super] = ACTIONS(2093), + [sym_crate] = ACTIONS(2093), + [sym_metavariable] = ACTIONS(2091), + [sym__raw_string_literal_start] = ACTIONS(2091), + [sym_float_literal] = ACTIONS(2091), }, [STATE(573)] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2115), - [anon_sym_SEMI] = ACTIONS(2113), - [anon_sym_macro_rules_BANG] = ACTIONS(2113), - [anon_sym_LPAREN] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2113), - [anon_sym_LBRACE] = ACTIONS(2113), - [anon_sym_RBRACE] = ACTIONS(2113), - [anon_sym_STAR] = ACTIONS(2113), - [anon_sym_u8] = ACTIONS(2115), - [anon_sym_i8] = ACTIONS(2115), - [anon_sym_u16] = ACTIONS(2115), - [anon_sym_i16] = ACTIONS(2115), - [anon_sym_u32] = ACTIONS(2115), - [anon_sym_i32] = ACTIONS(2115), - [anon_sym_u64] = ACTIONS(2115), - [anon_sym_i64] = ACTIONS(2115), - [anon_sym_u128] = ACTIONS(2115), - [anon_sym_i128] = ACTIONS(2115), - [anon_sym_isize] = ACTIONS(2115), - [anon_sym_usize] = ACTIONS(2115), - [anon_sym_f32] = ACTIONS(2115), - [anon_sym_f64] = ACTIONS(2115), - [anon_sym_bool] = ACTIONS(2115), - [anon_sym_str] = ACTIONS(2115), - [anon_sym_char] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_BANG] = ACTIONS(2113), - [anon_sym_AMP] = ACTIONS(2113), - [anon_sym_PIPE] = ACTIONS(2113), - [anon_sym_LT] = ACTIONS(2113), - [anon_sym_DOT_DOT] = ACTIONS(2113), - [anon_sym_COLON_COLON] = ACTIONS(2113), - [anon_sym_POUND] = ACTIONS(2113), - [anon_sym_SQUOTE] = ACTIONS(2115), - [anon_sym_async] = ACTIONS(2115), - [anon_sym_break] = ACTIONS(2115), - [anon_sym_const] = ACTIONS(2115), - [anon_sym_continue] = ACTIONS(2115), - [anon_sym_default] = ACTIONS(2115), - [anon_sym_enum] = ACTIONS(2115), - [anon_sym_fn] = ACTIONS(2115), - [anon_sym_for] = ACTIONS(2115), - [anon_sym_gen] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(2115), - [anon_sym_impl] = ACTIONS(2115), - [anon_sym_let] = ACTIONS(2115), - [anon_sym_loop] = ACTIONS(2115), - [anon_sym_match] = ACTIONS(2115), - [anon_sym_mod] = ACTIONS(2115), - [anon_sym_pub] = ACTIONS(2115), - [anon_sym_return] = ACTIONS(2115), - [anon_sym_static] = ACTIONS(2115), - [anon_sym_struct] = ACTIONS(2115), - [anon_sym_trait] = ACTIONS(2115), - [anon_sym_type] = ACTIONS(2115), - [anon_sym_union] = ACTIONS(2115), - [anon_sym_unsafe] = ACTIONS(2115), - [anon_sym_use] = ACTIONS(2115), - [anon_sym_while] = ACTIONS(2115), - [anon_sym_extern] = ACTIONS(2115), - [anon_sym_yield] = ACTIONS(2115), - [anon_sym_move] = ACTIONS(2115), - [anon_sym_try] = ACTIONS(2115), - [sym_integer_literal] = ACTIONS(2113), - [aux_sym_string_literal_token1] = ACTIONS(2113), - [sym_char_literal] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(2115), - [anon_sym_false] = ACTIONS(2115), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2115), - [sym_super] = ACTIONS(2115), - [sym_crate] = ACTIONS(2115), - [sym_metavariable] = ACTIONS(2113), - [sym__raw_string_literal_start] = ACTIONS(2113), - [sym_float_literal] = ACTIONS(2113), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2095), + [anon_sym_macro_rules_BANG] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_STAR] = ACTIONS(2095), + [anon_sym_u8] = ACTIONS(2097), + [anon_sym_i8] = ACTIONS(2097), + [anon_sym_u16] = ACTIONS(2097), + [anon_sym_i16] = ACTIONS(2097), + [anon_sym_u32] = ACTIONS(2097), + [anon_sym_i32] = ACTIONS(2097), + [anon_sym_u64] = ACTIONS(2097), + [anon_sym_i64] = ACTIONS(2097), + [anon_sym_u128] = ACTIONS(2097), + [anon_sym_i128] = ACTIONS(2097), + [anon_sym_isize] = ACTIONS(2097), + [anon_sym_usize] = ACTIONS(2097), + [anon_sym_f32] = ACTIONS(2097), + [anon_sym_f64] = ACTIONS(2097), + [anon_sym_bool] = ACTIONS(2097), + [anon_sym_str] = ACTIONS(2097), + [anon_sym_char] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_BANG] = ACTIONS(2095), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_PIPE] = ACTIONS(2095), + [anon_sym_LT] = ACTIONS(2095), + [anon_sym_DOT_DOT] = ACTIONS(2095), + [anon_sym_COLON_COLON] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(2095), + [anon_sym_SQUOTE] = ACTIONS(2097), + [anon_sym_async] = ACTIONS(2097), + [anon_sym_break] = ACTIONS(2097), + [anon_sym_const] = ACTIONS(2097), + [anon_sym_continue] = ACTIONS(2097), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_enum] = ACTIONS(2097), + [anon_sym_fn] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2097), + [anon_sym_gen] = ACTIONS(2097), + [anon_sym_if] = ACTIONS(2097), + [anon_sym_impl] = ACTIONS(2097), + [anon_sym_let] = ACTIONS(2097), + [anon_sym_loop] = ACTIONS(2097), + [anon_sym_match] = ACTIONS(2097), + [anon_sym_mod] = ACTIONS(2097), + [anon_sym_pub] = ACTIONS(2097), + [anon_sym_return] = ACTIONS(2097), + [anon_sym_static] = ACTIONS(2097), + [anon_sym_struct] = ACTIONS(2097), + [anon_sym_trait] = ACTIONS(2097), + [anon_sym_type] = ACTIONS(2097), + [anon_sym_union] = ACTIONS(2097), + [anon_sym_unsafe] = ACTIONS(2097), + [anon_sym_use] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2097), + [anon_sym_extern] = ACTIONS(2097), + [anon_sym_yield] = ACTIONS(2097), + [anon_sym_move] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2097), + [sym_integer_literal] = ACTIONS(2095), + [aux_sym_string_literal_token1] = ACTIONS(2095), + [sym_char_literal] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2097), + [sym_super] = ACTIONS(2097), + [sym_crate] = ACTIONS(2097), + [sym_metavariable] = ACTIONS(2095), + [sym__raw_string_literal_start] = ACTIONS(2095), + [sym_float_literal] = ACTIONS(2095), }, [STATE(574)] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(2117), - [sym_identifier] = ACTIONS(2119), - [anon_sym_SEMI] = ACTIONS(2117), - [anon_sym_macro_rules_BANG] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2117), - [anon_sym_u8] = ACTIONS(2119), - [anon_sym_i8] = ACTIONS(2119), - [anon_sym_u16] = ACTIONS(2119), - [anon_sym_i16] = ACTIONS(2119), - [anon_sym_u32] = ACTIONS(2119), - [anon_sym_i32] = ACTIONS(2119), - [anon_sym_u64] = ACTIONS(2119), - [anon_sym_i64] = ACTIONS(2119), - [anon_sym_u128] = ACTIONS(2119), - [anon_sym_i128] = ACTIONS(2119), - [anon_sym_isize] = ACTIONS(2119), - [anon_sym_usize] = ACTIONS(2119), - [anon_sym_f32] = ACTIONS(2119), - [anon_sym_f64] = ACTIONS(2119), - [anon_sym_bool] = ACTIONS(2119), - [anon_sym_str] = ACTIONS(2119), - [anon_sym_char] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_PIPE] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_DOT_DOT] = ACTIONS(2117), - [anon_sym_COLON_COLON] = ACTIONS(2117), - [anon_sym_POUND] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2119), - [anon_sym_async] = ACTIONS(2119), - [anon_sym_break] = ACTIONS(2119), - [anon_sym_const] = ACTIONS(2119), - [anon_sym_continue] = ACTIONS(2119), - [anon_sym_default] = ACTIONS(2119), - [anon_sym_enum] = ACTIONS(2119), - [anon_sym_fn] = ACTIONS(2119), - [anon_sym_for] = ACTIONS(2119), - [anon_sym_gen] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(2119), - [anon_sym_impl] = ACTIONS(2119), - [anon_sym_let] = ACTIONS(2119), - [anon_sym_loop] = ACTIONS(2119), - [anon_sym_match] = ACTIONS(2119), - [anon_sym_mod] = ACTIONS(2119), - [anon_sym_pub] = ACTIONS(2119), - [anon_sym_return] = ACTIONS(2119), - [anon_sym_static] = ACTIONS(2119), - [anon_sym_struct] = ACTIONS(2119), - [anon_sym_trait] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2119), - [anon_sym_union] = ACTIONS(2119), - [anon_sym_unsafe] = ACTIONS(2119), - [anon_sym_use] = ACTIONS(2119), - [anon_sym_while] = ACTIONS(2119), - [anon_sym_extern] = ACTIONS(2119), - [anon_sym_yield] = ACTIONS(2119), - [anon_sym_move] = ACTIONS(2119), - [anon_sym_try] = ACTIONS(2119), - [sym_integer_literal] = ACTIONS(2117), - [aux_sym_string_literal_token1] = ACTIONS(2117), - [sym_char_literal] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2119), - [sym_super] = ACTIONS(2119), - [sym_crate] = ACTIONS(2119), - [sym_metavariable] = ACTIONS(2117), - [sym__raw_string_literal_start] = ACTIONS(2117), - [sym_float_literal] = ACTIONS(2117), + [ts_builtin_sym_end] = ACTIONS(2099), + [sym_identifier] = ACTIONS(2101), + [anon_sym_SEMI] = ACTIONS(2099), + [anon_sym_macro_rules_BANG] = ACTIONS(2099), + [anon_sym_LPAREN] = ACTIONS(2099), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_LBRACE] = ACTIONS(2099), + [anon_sym_RBRACE] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2099), + [anon_sym_u8] = ACTIONS(2101), + [anon_sym_i8] = ACTIONS(2101), + [anon_sym_u16] = ACTIONS(2101), + [anon_sym_i16] = ACTIONS(2101), + [anon_sym_u32] = ACTIONS(2101), + [anon_sym_i32] = ACTIONS(2101), + [anon_sym_u64] = ACTIONS(2101), + [anon_sym_i64] = ACTIONS(2101), + [anon_sym_u128] = ACTIONS(2101), + [anon_sym_i128] = ACTIONS(2101), + [anon_sym_isize] = ACTIONS(2101), + [anon_sym_usize] = ACTIONS(2101), + [anon_sym_f32] = ACTIONS(2101), + [anon_sym_f64] = ACTIONS(2101), + [anon_sym_bool] = ACTIONS(2101), + [anon_sym_str] = ACTIONS(2101), + [anon_sym_char] = ACTIONS(2101), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_BANG] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_LT] = ACTIONS(2099), + [anon_sym_DOT_DOT] = ACTIONS(2099), + [anon_sym_COLON_COLON] = ACTIONS(2099), + [anon_sym_POUND] = ACTIONS(2099), + [anon_sym_SQUOTE] = ACTIONS(2101), + [anon_sym_async] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(2101), + [anon_sym_continue] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(2101), + [anon_sym_enum] = ACTIONS(2101), + [anon_sym_fn] = ACTIONS(2101), + [anon_sym_for] = ACTIONS(2101), + [anon_sym_gen] = ACTIONS(2101), + [anon_sym_if] = ACTIONS(2101), + [anon_sym_impl] = ACTIONS(2101), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_loop] = ACTIONS(2101), + [anon_sym_match] = ACTIONS(2101), + [anon_sym_mod] = ACTIONS(2101), + [anon_sym_pub] = ACTIONS(2101), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_static] = ACTIONS(2101), + [anon_sym_struct] = ACTIONS(2101), + [anon_sym_trait] = ACTIONS(2101), + [anon_sym_type] = ACTIONS(2101), + [anon_sym_union] = ACTIONS(2101), + [anon_sym_unsafe] = ACTIONS(2101), + [anon_sym_use] = ACTIONS(2101), + [anon_sym_while] = ACTIONS(2101), + [anon_sym_extern] = ACTIONS(2101), + [anon_sym_yield] = ACTIONS(2101), + [anon_sym_move] = ACTIONS(2101), + [anon_sym_try] = ACTIONS(2101), + [sym_integer_literal] = ACTIONS(2099), + [aux_sym_string_literal_token1] = ACTIONS(2099), + [sym_char_literal] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(2101), + [anon_sym_false] = ACTIONS(2101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2101), + [sym_super] = ACTIONS(2101), + [sym_crate] = ACTIONS(2101), + [sym_metavariable] = ACTIONS(2099), + [sym__raw_string_literal_start] = ACTIONS(2099), + [sym_float_literal] = ACTIONS(2099), }, [STATE(575)] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(2121), - [sym_identifier] = ACTIONS(2123), - [anon_sym_SEMI] = ACTIONS(2121), - [anon_sym_macro_rules_BANG] = ACTIONS(2121), - [anon_sym_LPAREN] = ACTIONS(2121), - [anon_sym_LBRACK] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2121), - [anon_sym_RBRACE] = ACTIONS(2121), - [anon_sym_STAR] = ACTIONS(2121), - [anon_sym_u8] = ACTIONS(2123), - [anon_sym_i8] = ACTIONS(2123), - [anon_sym_u16] = ACTIONS(2123), - [anon_sym_i16] = ACTIONS(2123), - [anon_sym_u32] = ACTIONS(2123), - [anon_sym_i32] = ACTIONS(2123), - [anon_sym_u64] = ACTIONS(2123), - [anon_sym_i64] = ACTIONS(2123), - [anon_sym_u128] = ACTIONS(2123), - [anon_sym_i128] = ACTIONS(2123), - [anon_sym_isize] = ACTIONS(2123), - [anon_sym_usize] = ACTIONS(2123), - [anon_sym_f32] = ACTIONS(2123), - [anon_sym_f64] = ACTIONS(2123), - [anon_sym_bool] = ACTIONS(2123), - [anon_sym_str] = ACTIONS(2123), - [anon_sym_char] = ACTIONS(2123), - [anon_sym_DASH] = ACTIONS(2121), - [anon_sym_BANG] = ACTIONS(2121), - [anon_sym_AMP] = ACTIONS(2121), - [anon_sym_PIPE] = ACTIONS(2121), - [anon_sym_LT] = ACTIONS(2121), - [anon_sym_DOT_DOT] = ACTIONS(2121), - [anon_sym_COLON_COLON] = ACTIONS(2121), - [anon_sym_POUND] = ACTIONS(2121), - [anon_sym_SQUOTE] = ACTIONS(2123), - [anon_sym_async] = ACTIONS(2123), - [anon_sym_break] = ACTIONS(2123), - [anon_sym_const] = ACTIONS(2123), - [anon_sym_continue] = ACTIONS(2123), - [anon_sym_default] = ACTIONS(2123), - [anon_sym_enum] = ACTIONS(2123), - [anon_sym_fn] = ACTIONS(2123), - [anon_sym_for] = ACTIONS(2123), - [anon_sym_gen] = ACTIONS(2123), - [anon_sym_if] = ACTIONS(2123), - [anon_sym_impl] = ACTIONS(2123), - [anon_sym_let] = ACTIONS(2123), - [anon_sym_loop] = ACTIONS(2123), - [anon_sym_match] = ACTIONS(2123), - [anon_sym_mod] = ACTIONS(2123), - [anon_sym_pub] = ACTIONS(2123), - [anon_sym_return] = ACTIONS(2123), - [anon_sym_static] = ACTIONS(2123), - [anon_sym_struct] = ACTIONS(2123), - [anon_sym_trait] = ACTIONS(2123), - [anon_sym_type] = ACTIONS(2123), - [anon_sym_union] = ACTIONS(2123), - [anon_sym_unsafe] = ACTIONS(2123), - [anon_sym_use] = ACTIONS(2123), - [anon_sym_while] = ACTIONS(2123), - [anon_sym_extern] = ACTIONS(2123), - [anon_sym_yield] = ACTIONS(2123), - [anon_sym_move] = ACTIONS(2123), - [anon_sym_try] = ACTIONS(2123), - [sym_integer_literal] = ACTIONS(2121), - [aux_sym_string_literal_token1] = ACTIONS(2121), - [sym_char_literal] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2123), - [sym_super] = ACTIONS(2123), - [sym_crate] = ACTIONS(2123), - [sym_metavariable] = ACTIONS(2121), - [sym__raw_string_literal_start] = ACTIONS(2121), - [sym_float_literal] = ACTIONS(2121), + [ts_builtin_sym_end] = ACTIONS(2103), + [sym_identifier] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_macro_rules_BANG] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2103), + [anon_sym_u8] = ACTIONS(2105), + [anon_sym_i8] = ACTIONS(2105), + [anon_sym_u16] = ACTIONS(2105), + [anon_sym_i16] = ACTIONS(2105), + [anon_sym_u32] = ACTIONS(2105), + [anon_sym_i32] = ACTIONS(2105), + [anon_sym_u64] = ACTIONS(2105), + [anon_sym_i64] = ACTIONS(2105), + [anon_sym_u128] = ACTIONS(2105), + [anon_sym_i128] = ACTIONS(2105), + [anon_sym_isize] = ACTIONS(2105), + [anon_sym_usize] = ACTIONS(2105), + [anon_sym_f32] = ACTIONS(2105), + [anon_sym_f64] = ACTIONS(2105), + [anon_sym_bool] = ACTIONS(2105), + [anon_sym_str] = ACTIONS(2105), + [anon_sym_char] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_AMP] = ACTIONS(2103), + [anon_sym_PIPE] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2103), + [anon_sym_COLON_COLON] = ACTIONS(2103), + [anon_sym_POUND] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2105), + [anon_sym_async] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2105), + [anon_sym_enum] = ACTIONS(2105), + [anon_sym_fn] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_gen] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_impl] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_loop] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_mod] = ACTIONS(2105), + [anon_sym_pub] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_static] = ACTIONS(2105), + [anon_sym_struct] = ACTIONS(2105), + [anon_sym_trait] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2105), + [anon_sym_union] = ACTIONS(2105), + [anon_sym_unsafe] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_extern] = ACTIONS(2105), + [anon_sym_yield] = ACTIONS(2105), + [anon_sym_move] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [sym_integer_literal] = ACTIONS(2103), + [aux_sym_string_literal_token1] = ACTIONS(2103), + [sym_char_literal] = ACTIONS(2103), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2105), + [sym_super] = ACTIONS(2105), + [sym_crate] = ACTIONS(2105), + [sym_metavariable] = ACTIONS(2103), + [sym__raw_string_literal_start] = ACTIONS(2103), + [sym_float_literal] = ACTIONS(2103), }, [STATE(576)] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(2125), - [sym_identifier] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2125), - [anon_sym_macro_rules_BANG] = ACTIONS(2125), - [anon_sym_LPAREN] = ACTIONS(2125), - [anon_sym_LBRACK] = ACTIONS(2125), - [anon_sym_LBRACE] = ACTIONS(2125), - [anon_sym_RBRACE] = ACTIONS(2125), - [anon_sym_STAR] = ACTIONS(2125), - [anon_sym_u8] = ACTIONS(2127), - [anon_sym_i8] = ACTIONS(2127), - [anon_sym_u16] = ACTIONS(2127), - [anon_sym_i16] = ACTIONS(2127), - [anon_sym_u32] = ACTIONS(2127), - [anon_sym_i32] = ACTIONS(2127), - [anon_sym_u64] = ACTIONS(2127), - [anon_sym_i64] = ACTIONS(2127), - [anon_sym_u128] = ACTIONS(2127), - [anon_sym_i128] = ACTIONS(2127), - [anon_sym_isize] = ACTIONS(2127), - [anon_sym_usize] = ACTIONS(2127), - [anon_sym_f32] = ACTIONS(2127), - [anon_sym_f64] = ACTIONS(2127), - [anon_sym_bool] = ACTIONS(2127), - [anon_sym_str] = ACTIONS(2127), - [anon_sym_char] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2125), - [anon_sym_BANG] = ACTIONS(2125), - [anon_sym_AMP] = ACTIONS(2125), - [anon_sym_PIPE] = ACTIONS(2125), - [anon_sym_LT] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2125), - [anon_sym_COLON_COLON] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(2125), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [anon_sym_fn] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_gen] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_impl] = ACTIONS(2127), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_loop] = ACTIONS(2127), - [anon_sym_match] = ACTIONS(2127), - [anon_sym_mod] = ACTIONS(2127), - [anon_sym_pub] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_struct] = ACTIONS(2127), - [anon_sym_trait] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_union] = ACTIONS(2127), - [anon_sym_unsafe] = ACTIONS(2127), - [anon_sym_use] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2127), - [anon_sym_extern] = ACTIONS(2127), - [anon_sym_yield] = ACTIONS(2127), - [anon_sym_move] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2127), - [sym_integer_literal] = ACTIONS(2125), - [aux_sym_string_literal_token1] = ACTIONS(2125), - [sym_char_literal] = ACTIONS(2125), - [anon_sym_true] = ACTIONS(2127), - [anon_sym_false] = ACTIONS(2127), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2127), - [sym_super] = ACTIONS(2127), - [sym_crate] = ACTIONS(2127), - [sym_metavariable] = ACTIONS(2125), - [sym__raw_string_literal_start] = ACTIONS(2125), - [sym_float_literal] = ACTIONS(2125), + [ts_builtin_sym_end] = ACTIONS(2107), + [sym_identifier] = ACTIONS(2109), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_macro_rules_BANG] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_u8] = ACTIONS(2109), + [anon_sym_i8] = ACTIONS(2109), + [anon_sym_u16] = ACTIONS(2109), + [anon_sym_i16] = ACTIONS(2109), + [anon_sym_u32] = ACTIONS(2109), + [anon_sym_i32] = ACTIONS(2109), + [anon_sym_u64] = ACTIONS(2109), + [anon_sym_i64] = ACTIONS(2109), + [anon_sym_u128] = ACTIONS(2109), + [anon_sym_i128] = ACTIONS(2109), + [anon_sym_isize] = ACTIONS(2109), + [anon_sym_usize] = ACTIONS(2109), + [anon_sym_f32] = ACTIONS(2109), + [anon_sym_f64] = ACTIONS(2109), + [anon_sym_bool] = ACTIONS(2109), + [anon_sym_str] = ACTIONS(2109), + [anon_sym_char] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_LT] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2107), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_enum] = ACTIONS(2109), + [anon_sym_fn] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_gen] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_impl] = ACTIONS(2109), + [anon_sym_let] = ACTIONS(2109), + [anon_sym_loop] = ACTIONS(2109), + [anon_sym_match] = ACTIONS(2109), + [anon_sym_mod] = ACTIONS(2109), + [anon_sym_pub] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_struct] = ACTIONS(2109), + [anon_sym_trait] = ACTIONS(2109), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_union] = ACTIONS(2109), + [anon_sym_unsafe] = ACTIONS(2109), + [anon_sym_use] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_extern] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_move] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [sym_integer_literal] = ACTIONS(2107), + [aux_sym_string_literal_token1] = ACTIONS(2107), + [sym_char_literal] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(2109), + [anon_sym_false] = ACTIONS(2109), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_crate] = ACTIONS(2109), + [sym_metavariable] = ACTIONS(2107), + [sym__raw_string_literal_start] = ACTIONS(2107), + [sym_float_literal] = ACTIONS(2107), }, [STATE(577)] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(2129), - [sym_identifier] = ACTIONS(2131), - [anon_sym_SEMI] = ACTIONS(2129), - [anon_sym_macro_rules_BANG] = ACTIONS(2129), - [anon_sym_LPAREN] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(2129), - [anon_sym_LBRACE] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_u8] = ACTIONS(2131), - [anon_sym_i8] = ACTIONS(2131), - [anon_sym_u16] = ACTIONS(2131), - [anon_sym_i16] = ACTIONS(2131), - [anon_sym_u32] = ACTIONS(2131), - [anon_sym_i32] = ACTIONS(2131), - [anon_sym_u64] = ACTIONS(2131), - [anon_sym_i64] = ACTIONS(2131), - [anon_sym_u128] = ACTIONS(2131), - [anon_sym_i128] = ACTIONS(2131), - [anon_sym_isize] = ACTIONS(2131), - [anon_sym_usize] = ACTIONS(2131), - [anon_sym_f32] = ACTIONS(2131), - [anon_sym_f64] = ACTIONS(2131), - [anon_sym_bool] = ACTIONS(2131), - [anon_sym_str] = ACTIONS(2131), - [anon_sym_char] = ACTIONS(2131), - [anon_sym_DASH] = ACTIONS(2129), - [anon_sym_BANG] = ACTIONS(2129), - [anon_sym_AMP] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2129), - [anon_sym_DOT_DOT] = ACTIONS(2129), - [anon_sym_COLON_COLON] = ACTIONS(2129), - [anon_sym_POUND] = ACTIONS(2129), - [anon_sym_SQUOTE] = ACTIONS(2131), - [anon_sym_async] = ACTIONS(2131), - [anon_sym_break] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2131), - [anon_sym_continue] = ACTIONS(2131), - [anon_sym_default] = ACTIONS(2131), - [anon_sym_enum] = ACTIONS(2131), - [anon_sym_fn] = ACTIONS(2131), - [anon_sym_for] = ACTIONS(2131), - [anon_sym_gen] = ACTIONS(2131), - [anon_sym_if] = ACTIONS(2131), - [anon_sym_impl] = ACTIONS(2131), - [anon_sym_let] = ACTIONS(2131), - [anon_sym_loop] = ACTIONS(2131), - [anon_sym_match] = ACTIONS(2131), - [anon_sym_mod] = ACTIONS(2131), - [anon_sym_pub] = ACTIONS(2131), - [anon_sym_return] = ACTIONS(2131), - [anon_sym_static] = ACTIONS(2131), - [anon_sym_struct] = ACTIONS(2131), - [anon_sym_trait] = ACTIONS(2131), - [anon_sym_type] = ACTIONS(2131), - [anon_sym_union] = ACTIONS(2131), - [anon_sym_unsafe] = ACTIONS(2131), - [anon_sym_use] = ACTIONS(2131), - [anon_sym_while] = ACTIONS(2131), - [anon_sym_extern] = ACTIONS(2131), - [anon_sym_yield] = ACTIONS(2131), - [anon_sym_move] = ACTIONS(2131), - [anon_sym_try] = ACTIONS(2131), - [sym_integer_literal] = ACTIONS(2129), - [aux_sym_string_literal_token1] = ACTIONS(2129), - [sym_char_literal] = ACTIONS(2129), - [anon_sym_true] = ACTIONS(2131), - [anon_sym_false] = ACTIONS(2131), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2131), - [sym_super] = ACTIONS(2131), - [sym_crate] = ACTIONS(2131), - [sym_metavariable] = ACTIONS(2129), - [sym__raw_string_literal_start] = ACTIONS(2129), - [sym_float_literal] = ACTIONS(2129), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_identifier] = ACTIONS(2113), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_macro_rules_BANG] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_u8] = ACTIONS(2113), + [anon_sym_i8] = ACTIONS(2113), + [anon_sym_u16] = ACTIONS(2113), + [anon_sym_i16] = ACTIONS(2113), + [anon_sym_u32] = ACTIONS(2113), + [anon_sym_i32] = ACTIONS(2113), + [anon_sym_u64] = ACTIONS(2113), + [anon_sym_i64] = ACTIONS(2113), + [anon_sym_u128] = ACTIONS(2113), + [anon_sym_i128] = ACTIONS(2113), + [anon_sym_isize] = ACTIONS(2113), + [anon_sym_usize] = ACTIONS(2113), + [anon_sym_f32] = ACTIONS(2113), + [anon_sym_f64] = ACTIONS(2113), + [anon_sym_bool] = ACTIONS(2113), + [anon_sym_str] = ACTIONS(2113), + [anon_sym_char] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(2111), + [anon_sym_COLON_COLON] = ACTIONS(2111), + [anon_sym_POUND] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2113), + [anon_sym_async] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_default] = ACTIONS(2113), + [anon_sym_enum] = ACTIONS(2113), + [anon_sym_fn] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_gen] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_impl] = ACTIONS(2113), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_loop] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_mod] = ACTIONS(2113), + [anon_sym_pub] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_static] = ACTIONS(2113), + [anon_sym_struct] = ACTIONS(2113), + [anon_sym_trait] = ACTIONS(2113), + [anon_sym_type] = ACTIONS(2113), + [anon_sym_union] = ACTIONS(2113), + [anon_sym_unsafe] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_extern] = ACTIONS(2113), + [anon_sym_yield] = ACTIONS(2113), + [anon_sym_move] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [sym_integer_literal] = ACTIONS(2111), + [aux_sym_string_literal_token1] = ACTIONS(2111), + [sym_char_literal] = ACTIONS(2111), + [anon_sym_true] = ACTIONS(2113), + [anon_sym_false] = ACTIONS(2113), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2113), + [sym_super] = ACTIONS(2113), + [sym_crate] = ACTIONS(2113), + [sym_metavariable] = ACTIONS(2111), + [sym__raw_string_literal_start] = ACTIONS(2111), + [sym_float_literal] = ACTIONS(2111), }, [STATE(578)] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [ts_builtin_sym_end] = ACTIONS(2133), - [sym_identifier] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2133), - [anon_sym_macro_rules_BANG] = ACTIONS(2133), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_LBRACK] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2133), - [anon_sym_RBRACE] = ACTIONS(2133), - [anon_sym_STAR] = ACTIONS(2133), - [anon_sym_u8] = ACTIONS(2135), - [anon_sym_i8] = ACTIONS(2135), - [anon_sym_u16] = ACTIONS(2135), - [anon_sym_i16] = ACTIONS(2135), - [anon_sym_u32] = ACTIONS(2135), - [anon_sym_i32] = ACTIONS(2135), - [anon_sym_u64] = ACTIONS(2135), - [anon_sym_i64] = ACTIONS(2135), - [anon_sym_u128] = ACTIONS(2135), - [anon_sym_i128] = ACTIONS(2135), - [anon_sym_isize] = ACTIONS(2135), - [anon_sym_usize] = ACTIONS(2135), - [anon_sym_f32] = ACTIONS(2135), - [anon_sym_f64] = ACTIONS(2135), - [anon_sym_bool] = ACTIONS(2135), - [anon_sym_str] = ACTIONS(2135), - [anon_sym_char] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2133), - [anon_sym_BANG] = ACTIONS(2133), - [anon_sym_AMP] = ACTIONS(2133), - [anon_sym_PIPE] = ACTIONS(2133), - [anon_sym_LT] = ACTIONS(2133), - [anon_sym_DOT_DOT] = ACTIONS(2133), - [anon_sym_COLON_COLON] = ACTIONS(2133), - [anon_sym_POUND] = ACTIONS(2133), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_default] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [anon_sym_fn] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_gen] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_impl] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_loop] = ACTIONS(2135), - [anon_sym_match] = ACTIONS(2135), - [anon_sym_mod] = ACTIONS(2135), - [anon_sym_pub] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2135), - [anon_sym_trait] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_union] = ACTIONS(2135), - [anon_sym_unsafe] = ACTIONS(2135), - [anon_sym_use] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [anon_sym_extern] = ACTIONS(2135), - [anon_sym_yield] = ACTIONS(2135), - [anon_sym_move] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2135), - [sym_integer_literal] = ACTIONS(2133), - [aux_sym_string_literal_token1] = ACTIONS(2133), - [sym_char_literal] = ACTIONS(2133), - [anon_sym_true] = ACTIONS(2135), - [anon_sym_false] = ACTIONS(2135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_crate] = ACTIONS(2135), - [sym_metavariable] = ACTIONS(2133), - [sym__raw_string_literal_start] = ACTIONS(2133), - [sym_float_literal] = ACTIONS(2133), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_macro_rules_BANG] = ACTIONS(2115), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(2115), + [anon_sym_u8] = ACTIONS(2117), + [anon_sym_i8] = ACTIONS(2117), + [anon_sym_u16] = ACTIONS(2117), + [anon_sym_i16] = ACTIONS(2117), + [anon_sym_u32] = ACTIONS(2117), + [anon_sym_i32] = ACTIONS(2117), + [anon_sym_u64] = ACTIONS(2117), + [anon_sym_i64] = ACTIONS(2117), + [anon_sym_u128] = ACTIONS(2117), + [anon_sym_i128] = ACTIONS(2117), + [anon_sym_isize] = ACTIONS(2117), + [anon_sym_usize] = ACTIONS(2117), + [anon_sym_f32] = ACTIONS(2117), + [anon_sym_f64] = ACTIONS(2117), + [anon_sym_bool] = ACTIONS(2117), + [anon_sym_str] = ACTIONS(2117), + [anon_sym_char] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2115), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2115), + [anon_sym_PIPE] = ACTIONS(2115), + [anon_sym_LT] = ACTIONS(2115), + [anon_sym_DOT_DOT] = ACTIONS(2115), + [anon_sym_COLON_COLON] = ACTIONS(2115), + [anon_sym_POUND] = ACTIONS(2115), + [anon_sym_SQUOTE] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [anon_sym_fn] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_gen] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_impl] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_loop] = ACTIONS(2117), + [anon_sym_match] = ACTIONS(2117), + [anon_sym_mod] = ACTIONS(2117), + [anon_sym_pub] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_static] = ACTIONS(2117), + [anon_sym_struct] = ACTIONS(2117), + [anon_sym_trait] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_union] = ACTIONS(2117), + [anon_sym_unsafe] = ACTIONS(2117), + [anon_sym_use] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_extern] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_move] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [sym_integer_literal] = ACTIONS(2115), + [aux_sym_string_literal_token1] = ACTIONS(2115), + [sym_char_literal] = ACTIONS(2115), + [anon_sym_true] = ACTIONS(2117), + [anon_sym_false] = ACTIONS(2117), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2117), + [sym_super] = ACTIONS(2117), + [sym_crate] = ACTIONS(2117), + [sym_metavariable] = ACTIONS(2115), + [sym__raw_string_literal_start] = ACTIONS(2115), + [sym_float_literal] = ACTIONS(2115), }, [STATE(579)] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [ts_builtin_sym_end] = ACTIONS(2137), - [sym_identifier] = ACTIONS(2139), - [anon_sym_SEMI] = ACTIONS(2137), - [anon_sym_macro_rules_BANG] = ACTIONS(2137), - [anon_sym_LPAREN] = ACTIONS(2137), - [anon_sym_LBRACK] = ACTIONS(2137), - [anon_sym_LBRACE] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_u8] = ACTIONS(2139), - [anon_sym_i8] = ACTIONS(2139), - [anon_sym_u16] = ACTIONS(2139), - [anon_sym_i16] = ACTIONS(2139), - [anon_sym_u32] = ACTIONS(2139), - [anon_sym_i32] = ACTIONS(2139), - [anon_sym_u64] = ACTIONS(2139), - [anon_sym_i64] = ACTIONS(2139), - [anon_sym_u128] = ACTIONS(2139), - [anon_sym_i128] = ACTIONS(2139), - [anon_sym_isize] = ACTIONS(2139), - [anon_sym_usize] = ACTIONS(2139), - [anon_sym_f32] = ACTIONS(2139), - [anon_sym_f64] = ACTIONS(2139), - [anon_sym_bool] = ACTIONS(2139), - [anon_sym_str] = ACTIONS(2139), - [anon_sym_char] = ACTIONS(2139), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2137), - [anon_sym_DOT_DOT] = ACTIONS(2137), - [anon_sym_COLON_COLON] = ACTIONS(2137), - [anon_sym_POUND] = ACTIONS(2137), - [anon_sym_SQUOTE] = ACTIONS(2139), - [anon_sym_async] = ACTIONS(2139), - [anon_sym_break] = ACTIONS(2139), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_continue] = ACTIONS(2139), - [anon_sym_default] = ACTIONS(2139), - [anon_sym_enum] = ACTIONS(2139), - [anon_sym_fn] = ACTIONS(2139), - [anon_sym_for] = ACTIONS(2139), - [anon_sym_gen] = ACTIONS(2139), - [anon_sym_if] = ACTIONS(2139), - [anon_sym_impl] = ACTIONS(2139), - [anon_sym_let] = ACTIONS(2139), - [anon_sym_loop] = ACTIONS(2139), - [anon_sym_match] = ACTIONS(2139), - [anon_sym_mod] = ACTIONS(2139), - [anon_sym_pub] = ACTIONS(2139), - [anon_sym_return] = ACTIONS(2139), - [anon_sym_static] = ACTIONS(2139), - [anon_sym_struct] = ACTIONS(2139), - [anon_sym_trait] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_union] = ACTIONS(2139), - [anon_sym_unsafe] = ACTIONS(2139), - [anon_sym_use] = ACTIONS(2139), - [anon_sym_while] = ACTIONS(2139), - [anon_sym_extern] = ACTIONS(2139), - [anon_sym_yield] = ACTIONS(2139), - [anon_sym_move] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(2139), - [sym_integer_literal] = ACTIONS(2137), - [aux_sym_string_literal_token1] = ACTIONS(2137), - [sym_char_literal] = ACTIONS(2137), - [anon_sym_true] = ACTIONS(2139), - [anon_sym_false] = ACTIONS(2139), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2139), - [sym_super] = ACTIONS(2139), - [sym_crate] = ACTIONS(2139), - [sym_metavariable] = ACTIONS(2137), - [sym__raw_string_literal_start] = ACTIONS(2137), - [sym_float_literal] = ACTIONS(2137), + [ts_builtin_sym_end] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_macro_rules_BANG] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2119), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(2119), + [anon_sym_u8] = ACTIONS(2121), + [anon_sym_i8] = ACTIONS(2121), + [anon_sym_u16] = ACTIONS(2121), + [anon_sym_i16] = ACTIONS(2121), + [anon_sym_u32] = ACTIONS(2121), + [anon_sym_i32] = ACTIONS(2121), + [anon_sym_u64] = ACTIONS(2121), + [anon_sym_i64] = ACTIONS(2121), + [anon_sym_u128] = ACTIONS(2121), + [anon_sym_i128] = ACTIONS(2121), + [anon_sym_isize] = ACTIONS(2121), + [anon_sym_usize] = ACTIONS(2121), + [anon_sym_f32] = ACTIONS(2121), + [anon_sym_f64] = ACTIONS(2121), + [anon_sym_bool] = ACTIONS(2121), + [anon_sym_str] = ACTIONS(2121), + [anon_sym_char] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2119), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2119), + [anon_sym_LT] = ACTIONS(2119), + [anon_sym_DOT_DOT] = ACTIONS(2119), + [anon_sym_COLON_COLON] = ACTIONS(2119), + [anon_sym_POUND] = ACTIONS(2119), + [anon_sym_SQUOTE] = ACTIONS(2121), + [anon_sym_async] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [anon_sym_fn] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_gen] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_impl] = ACTIONS(2121), + [anon_sym_let] = ACTIONS(2121), + [anon_sym_loop] = ACTIONS(2121), + [anon_sym_match] = ACTIONS(2121), + [anon_sym_mod] = ACTIONS(2121), + [anon_sym_pub] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_static] = ACTIONS(2121), + [anon_sym_struct] = ACTIONS(2121), + [anon_sym_trait] = ACTIONS(2121), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_union] = ACTIONS(2121), + [anon_sym_unsafe] = ACTIONS(2121), + [anon_sym_use] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_extern] = ACTIONS(2121), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_move] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [sym_integer_literal] = ACTIONS(2119), + [aux_sym_string_literal_token1] = ACTIONS(2119), + [sym_char_literal] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2121), + [sym_super] = ACTIONS(2121), + [sym_crate] = ACTIONS(2121), + [sym_metavariable] = ACTIONS(2119), + [sym__raw_string_literal_start] = ACTIONS(2119), + [sym_float_literal] = ACTIONS(2119), }, [STATE(580)] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(2141), - [sym_identifier] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(2141), - [anon_sym_macro_rules_BANG] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_LBRACK] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2141), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_u8] = ACTIONS(2143), - [anon_sym_i8] = ACTIONS(2143), - [anon_sym_u16] = ACTIONS(2143), - [anon_sym_i16] = ACTIONS(2143), - [anon_sym_u32] = ACTIONS(2143), - [anon_sym_i32] = ACTIONS(2143), - [anon_sym_u64] = ACTIONS(2143), - [anon_sym_i64] = ACTIONS(2143), - [anon_sym_u128] = ACTIONS(2143), - [anon_sym_i128] = ACTIONS(2143), - [anon_sym_isize] = ACTIONS(2143), - [anon_sym_usize] = ACTIONS(2143), - [anon_sym_f32] = ACTIONS(2143), - [anon_sym_f64] = ACTIONS(2143), - [anon_sym_bool] = ACTIONS(2143), - [anon_sym_str] = ACTIONS(2143), - [anon_sym_char] = ACTIONS(2143), - [anon_sym_DASH] = ACTIONS(2141), - [anon_sym_BANG] = ACTIONS(2141), - [anon_sym_AMP] = ACTIONS(2141), - [anon_sym_PIPE] = ACTIONS(2141), - [anon_sym_LT] = ACTIONS(2141), - [anon_sym_DOT_DOT] = ACTIONS(2141), - [anon_sym_COLON_COLON] = ACTIONS(2141), - [anon_sym_POUND] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2143), - [anon_sym_async] = ACTIONS(2143), - [anon_sym_break] = ACTIONS(2143), - [anon_sym_const] = ACTIONS(2143), - [anon_sym_continue] = ACTIONS(2143), - [anon_sym_default] = ACTIONS(2143), - [anon_sym_enum] = ACTIONS(2143), - [anon_sym_fn] = ACTIONS(2143), - [anon_sym_for] = ACTIONS(2143), - [anon_sym_gen] = ACTIONS(2143), - [anon_sym_if] = ACTIONS(2143), - [anon_sym_impl] = ACTIONS(2143), - [anon_sym_let] = ACTIONS(2143), - [anon_sym_loop] = ACTIONS(2143), - [anon_sym_match] = ACTIONS(2143), - [anon_sym_mod] = ACTIONS(2143), - [anon_sym_pub] = ACTIONS(2143), - [anon_sym_return] = ACTIONS(2143), - [anon_sym_static] = ACTIONS(2143), - [anon_sym_struct] = ACTIONS(2143), - [anon_sym_trait] = ACTIONS(2143), - [anon_sym_type] = ACTIONS(2143), - [anon_sym_union] = ACTIONS(2143), - [anon_sym_unsafe] = ACTIONS(2143), - [anon_sym_use] = ACTIONS(2143), - [anon_sym_while] = ACTIONS(2143), - [anon_sym_extern] = ACTIONS(2143), - [anon_sym_yield] = ACTIONS(2143), - [anon_sym_move] = ACTIONS(2143), - [anon_sym_try] = ACTIONS(2143), - [sym_integer_literal] = ACTIONS(2141), - [aux_sym_string_literal_token1] = ACTIONS(2141), - [sym_char_literal] = ACTIONS(2141), - [anon_sym_true] = ACTIONS(2143), - [anon_sym_false] = ACTIONS(2143), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2143), - [sym_super] = ACTIONS(2143), - [sym_crate] = ACTIONS(2143), - [sym_metavariable] = ACTIONS(2141), - [sym__raw_string_literal_start] = ACTIONS(2141), - [sym_float_literal] = ACTIONS(2141), + [ts_builtin_sym_end] = ACTIONS(2123), + [sym_identifier] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2123), + [anon_sym_macro_rules_BANG] = ACTIONS(2123), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_LBRACE] = ACTIONS(2123), + [anon_sym_RBRACE] = ACTIONS(2123), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_u8] = ACTIONS(2125), + [anon_sym_i8] = ACTIONS(2125), + [anon_sym_u16] = ACTIONS(2125), + [anon_sym_i16] = ACTIONS(2125), + [anon_sym_u32] = ACTIONS(2125), + [anon_sym_i32] = ACTIONS(2125), + [anon_sym_u64] = ACTIONS(2125), + [anon_sym_i64] = ACTIONS(2125), + [anon_sym_u128] = ACTIONS(2125), + [anon_sym_i128] = ACTIONS(2125), + [anon_sym_isize] = ACTIONS(2125), + [anon_sym_usize] = ACTIONS(2125), + [anon_sym_f32] = ACTIONS(2125), + [anon_sym_f64] = ACTIONS(2125), + [anon_sym_bool] = ACTIONS(2125), + [anon_sym_str] = ACTIONS(2125), + [anon_sym_char] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2123), + [anon_sym_BANG] = ACTIONS(2123), + [anon_sym_AMP] = ACTIONS(2123), + [anon_sym_PIPE] = ACTIONS(2123), + [anon_sym_LT] = ACTIONS(2123), + [anon_sym_DOT_DOT] = ACTIONS(2123), + [anon_sym_COLON_COLON] = ACTIONS(2123), + [anon_sym_POUND] = ACTIONS(2123), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [anon_sym_fn] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_gen] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_impl] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_loop] = ACTIONS(2125), + [anon_sym_match] = ACTIONS(2125), + [anon_sym_mod] = ACTIONS(2125), + [anon_sym_pub] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_struct] = ACTIONS(2125), + [anon_sym_trait] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_union] = ACTIONS(2125), + [anon_sym_unsafe] = ACTIONS(2125), + [anon_sym_use] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_extern] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_move] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [sym_integer_literal] = ACTIONS(2123), + [aux_sym_string_literal_token1] = ACTIONS(2123), + [sym_char_literal] = ACTIONS(2123), + [anon_sym_true] = ACTIONS(2125), + [anon_sym_false] = ACTIONS(2125), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_crate] = ACTIONS(2125), + [sym_metavariable] = ACTIONS(2123), + [sym__raw_string_literal_start] = ACTIONS(2123), + [sym_float_literal] = ACTIONS(2123), }, [STATE(581)] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(2145), - [sym_identifier] = ACTIONS(2147), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_macro_rules_BANG] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(2145), - [anon_sym_u8] = ACTIONS(2147), - [anon_sym_i8] = ACTIONS(2147), - [anon_sym_u16] = ACTIONS(2147), - [anon_sym_i16] = ACTIONS(2147), - [anon_sym_u32] = ACTIONS(2147), - [anon_sym_i32] = ACTIONS(2147), - [anon_sym_u64] = ACTIONS(2147), - [anon_sym_i64] = ACTIONS(2147), - [anon_sym_u128] = ACTIONS(2147), - [anon_sym_i128] = ACTIONS(2147), - [anon_sym_isize] = ACTIONS(2147), - [anon_sym_usize] = ACTIONS(2147), - [anon_sym_f32] = ACTIONS(2147), - [anon_sym_f64] = ACTIONS(2147), - [anon_sym_bool] = ACTIONS(2147), - [anon_sym_str] = ACTIONS(2147), - [anon_sym_char] = ACTIONS(2147), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_AMP] = ACTIONS(2145), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2145), - [anon_sym_COLON_COLON] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2147), - [anon_sym_async] = ACTIONS(2147), - [anon_sym_break] = ACTIONS(2147), - [anon_sym_const] = ACTIONS(2147), - [anon_sym_continue] = ACTIONS(2147), - [anon_sym_default] = ACTIONS(2147), - [anon_sym_enum] = ACTIONS(2147), - [anon_sym_fn] = ACTIONS(2147), - [anon_sym_for] = ACTIONS(2147), - [anon_sym_gen] = ACTIONS(2147), - [anon_sym_if] = ACTIONS(2147), - [anon_sym_impl] = ACTIONS(2147), - [anon_sym_let] = ACTIONS(2147), - [anon_sym_loop] = ACTIONS(2147), - [anon_sym_match] = ACTIONS(2147), - [anon_sym_mod] = ACTIONS(2147), - [anon_sym_pub] = ACTIONS(2147), - [anon_sym_return] = ACTIONS(2147), - [anon_sym_static] = ACTIONS(2147), - [anon_sym_struct] = ACTIONS(2147), - [anon_sym_trait] = ACTIONS(2147), - [anon_sym_type] = ACTIONS(2147), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2147), - [anon_sym_use] = ACTIONS(2147), - [anon_sym_while] = ACTIONS(2147), - [anon_sym_extern] = ACTIONS(2147), - [anon_sym_yield] = ACTIONS(2147), - [anon_sym_move] = ACTIONS(2147), - [anon_sym_try] = ACTIONS(2147), - [sym_integer_literal] = ACTIONS(2145), - [aux_sym_string_literal_token1] = ACTIONS(2145), - [sym_char_literal] = ACTIONS(2145), - [anon_sym_true] = ACTIONS(2147), - [anon_sym_false] = ACTIONS(2147), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2147), - [sym_super] = ACTIONS(2147), - [sym_crate] = ACTIONS(2147), - [sym_metavariable] = ACTIONS(2145), - [sym__raw_string_literal_start] = ACTIONS(2145), - [sym_float_literal] = ACTIONS(2145), + [ts_builtin_sym_end] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2127), + [anon_sym_macro_rules_BANG] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_LBRACE] = ACTIONS(2127), + [anon_sym_RBRACE] = ACTIONS(2127), + [anon_sym_STAR] = ACTIONS(2127), + [anon_sym_u8] = ACTIONS(2129), + [anon_sym_i8] = ACTIONS(2129), + [anon_sym_u16] = ACTIONS(2129), + [anon_sym_i16] = ACTIONS(2129), + [anon_sym_u32] = ACTIONS(2129), + [anon_sym_i32] = ACTIONS(2129), + [anon_sym_u64] = ACTIONS(2129), + [anon_sym_i64] = ACTIONS(2129), + [anon_sym_u128] = ACTIONS(2129), + [anon_sym_i128] = ACTIONS(2129), + [anon_sym_isize] = ACTIONS(2129), + [anon_sym_usize] = ACTIONS(2129), + [anon_sym_f32] = ACTIONS(2129), + [anon_sym_f64] = ACTIONS(2129), + [anon_sym_bool] = ACTIONS(2129), + [anon_sym_str] = ACTIONS(2129), + [anon_sym_char] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2127), + [anon_sym_BANG] = ACTIONS(2127), + [anon_sym_AMP] = ACTIONS(2127), + [anon_sym_PIPE] = ACTIONS(2127), + [anon_sym_LT] = ACTIONS(2127), + [anon_sym_DOT_DOT] = ACTIONS(2127), + [anon_sym_COLON_COLON] = ACTIONS(2127), + [anon_sym_POUND] = ACTIONS(2127), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [anon_sym_fn] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_gen] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_impl] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_loop] = ACTIONS(2129), + [anon_sym_match] = ACTIONS(2129), + [anon_sym_mod] = ACTIONS(2129), + [anon_sym_pub] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_struct] = ACTIONS(2129), + [anon_sym_trait] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_union] = ACTIONS(2129), + [anon_sym_unsafe] = ACTIONS(2129), + [anon_sym_use] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_extern] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_move] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [sym_integer_literal] = ACTIONS(2127), + [aux_sym_string_literal_token1] = ACTIONS(2127), + [sym_char_literal] = ACTIONS(2127), + [anon_sym_true] = ACTIONS(2129), + [anon_sym_false] = ACTIONS(2129), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_crate] = ACTIONS(2129), + [sym_metavariable] = ACTIONS(2127), + [sym__raw_string_literal_start] = ACTIONS(2127), + [sym_float_literal] = ACTIONS(2127), }, [STATE(582)] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(2149), - [sym_identifier] = ACTIONS(2151), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_macro_rules_BANG] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2149), - [anon_sym_u8] = ACTIONS(2151), - [anon_sym_i8] = ACTIONS(2151), - [anon_sym_u16] = ACTIONS(2151), - [anon_sym_i16] = ACTIONS(2151), - [anon_sym_u32] = ACTIONS(2151), - [anon_sym_i32] = ACTIONS(2151), - [anon_sym_u64] = ACTIONS(2151), - [anon_sym_i64] = ACTIONS(2151), - [anon_sym_u128] = ACTIONS(2151), - [anon_sym_i128] = ACTIONS(2151), - [anon_sym_isize] = ACTIONS(2151), - [anon_sym_usize] = ACTIONS(2151), - [anon_sym_f32] = ACTIONS(2151), - [anon_sym_f64] = ACTIONS(2151), - [anon_sym_bool] = ACTIONS(2151), - [anon_sym_str] = ACTIONS(2151), - [anon_sym_char] = ACTIONS(2151), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_AMP] = ACTIONS(2149), - [anon_sym_PIPE] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_DOT_DOT] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(2149), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2151), - [anon_sym_async] = ACTIONS(2151), - [anon_sym_break] = ACTIONS(2151), - [anon_sym_const] = ACTIONS(2151), - [anon_sym_continue] = ACTIONS(2151), - [anon_sym_default] = ACTIONS(2151), - [anon_sym_enum] = ACTIONS(2151), - [anon_sym_fn] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2151), - [anon_sym_gen] = ACTIONS(2151), - [anon_sym_if] = ACTIONS(2151), - [anon_sym_impl] = ACTIONS(2151), - [anon_sym_let] = ACTIONS(2151), - [anon_sym_loop] = ACTIONS(2151), - [anon_sym_match] = ACTIONS(2151), - [anon_sym_mod] = ACTIONS(2151), - [anon_sym_pub] = ACTIONS(2151), - [anon_sym_return] = ACTIONS(2151), - [anon_sym_static] = ACTIONS(2151), - [anon_sym_struct] = ACTIONS(2151), - [anon_sym_trait] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2151), - [anon_sym_union] = ACTIONS(2151), - [anon_sym_unsafe] = ACTIONS(2151), - [anon_sym_use] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2151), - [anon_sym_extern] = ACTIONS(2151), - [anon_sym_yield] = ACTIONS(2151), - [anon_sym_move] = ACTIONS(2151), - [anon_sym_try] = ACTIONS(2151), - [sym_integer_literal] = ACTIONS(2149), - [aux_sym_string_literal_token1] = ACTIONS(2149), - [sym_char_literal] = ACTIONS(2149), - [anon_sym_true] = ACTIONS(2151), - [anon_sym_false] = ACTIONS(2151), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2151), - [sym_super] = ACTIONS(2151), - [sym_crate] = ACTIONS(2151), - [sym_metavariable] = ACTIONS(2149), - [sym__raw_string_literal_start] = ACTIONS(2149), - [sym_float_literal] = ACTIONS(2149), + [ts_builtin_sym_end] = ACTIONS(2131), + [sym_identifier] = ACTIONS(2133), + [anon_sym_SEMI] = ACTIONS(2131), + [anon_sym_macro_rules_BANG] = ACTIONS(2131), + [anon_sym_LPAREN] = ACTIONS(2131), + [anon_sym_LBRACK] = ACTIONS(2131), + [anon_sym_LBRACE] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2131), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_u8] = ACTIONS(2133), + [anon_sym_i8] = ACTIONS(2133), + [anon_sym_u16] = ACTIONS(2133), + [anon_sym_i16] = ACTIONS(2133), + [anon_sym_u32] = ACTIONS(2133), + [anon_sym_i32] = ACTIONS(2133), + [anon_sym_u64] = ACTIONS(2133), + [anon_sym_i64] = ACTIONS(2133), + [anon_sym_u128] = ACTIONS(2133), + [anon_sym_i128] = ACTIONS(2133), + [anon_sym_isize] = ACTIONS(2133), + [anon_sym_usize] = ACTIONS(2133), + [anon_sym_f32] = ACTIONS(2133), + [anon_sym_f64] = ACTIONS(2133), + [anon_sym_bool] = ACTIONS(2133), + [anon_sym_str] = ACTIONS(2133), + [anon_sym_char] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2131), + [anon_sym_BANG] = ACTIONS(2131), + [anon_sym_AMP] = ACTIONS(2131), + [anon_sym_PIPE] = ACTIONS(2131), + [anon_sym_LT] = ACTIONS(2131), + [anon_sym_DOT_DOT] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2131), + [anon_sym_POUND] = ACTIONS(2131), + [anon_sym_SQUOTE] = ACTIONS(2133), + [anon_sym_async] = ACTIONS(2133), + [anon_sym_break] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2133), + [anon_sym_continue] = ACTIONS(2133), + [anon_sym_default] = ACTIONS(2133), + [anon_sym_enum] = ACTIONS(2133), + [anon_sym_fn] = ACTIONS(2133), + [anon_sym_for] = ACTIONS(2133), + [anon_sym_gen] = ACTIONS(2133), + [anon_sym_if] = ACTIONS(2133), + [anon_sym_impl] = ACTIONS(2133), + [anon_sym_let] = ACTIONS(2133), + [anon_sym_loop] = ACTIONS(2133), + [anon_sym_match] = ACTIONS(2133), + [anon_sym_mod] = ACTIONS(2133), + [anon_sym_pub] = ACTIONS(2133), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_struct] = ACTIONS(2133), + [anon_sym_trait] = ACTIONS(2133), + [anon_sym_type] = ACTIONS(2133), + [anon_sym_union] = ACTIONS(2133), + [anon_sym_unsafe] = ACTIONS(2133), + [anon_sym_use] = ACTIONS(2133), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_yield] = ACTIONS(2133), + [anon_sym_move] = ACTIONS(2133), + [anon_sym_try] = ACTIONS(2133), + [sym_integer_literal] = ACTIONS(2131), + [aux_sym_string_literal_token1] = ACTIONS(2131), + [sym_char_literal] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(2133), + [anon_sym_false] = ACTIONS(2133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2133), + [sym_super] = ACTIONS(2133), + [sym_crate] = ACTIONS(2133), + [sym_metavariable] = ACTIONS(2131), + [sym__raw_string_literal_start] = ACTIONS(2131), + [sym_float_literal] = ACTIONS(2131), }, [STATE(583)] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(2153), - [sym_identifier] = ACTIONS(2155), - [anon_sym_SEMI] = ACTIONS(2153), - [anon_sym_macro_rules_BANG] = ACTIONS(2153), - [anon_sym_LPAREN] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(2153), - [anon_sym_RBRACE] = ACTIONS(2153), - [anon_sym_STAR] = ACTIONS(2153), - [anon_sym_u8] = ACTIONS(2155), - [anon_sym_i8] = ACTIONS(2155), - [anon_sym_u16] = ACTIONS(2155), - [anon_sym_i16] = ACTIONS(2155), - [anon_sym_u32] = ACTIONS(2155), - [anon_sym_i32] = ACTIONS(2155), - [anon_sym_u64] = ACTIONS(2155), - [anon_sym_i64] = ACTIONS(2155), - [anon_sym_u128] = ACTIONS(2155), - [anon_sym_i128] = ACTIONS(2155), - [anon_sym_isize] = ACTIONS(2155), - [anon_sym_usize] = ACTIONS(2155), - [anon_sym_f32] = ACTIONS(2155), - [anon_sym_f64] = ACTIONS(2155), - [anon_sym_bool] = ACTIONS(2155), - [anon_sym_str] = ACTIONS(2155), - [anon_sym_char] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2153), - [anon_sym_BANG] = ACTIONS(2153), - [anon_sym_AMP] = ACTIONS(2153), - [anon_sym_PIPE] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(2153), - [anon_sym_DOT_DOT] = ACTIONS(2153), - [anon_sym_COLON_COLON] = ACTIONS(2153), - [anon_sym_POUND] = ACTIONS(2153), - [anon_sym_SQUOTE] = ACTIONS(2155), - [anon_sym_async] = ACTIONS(2155), - [anon_sym_break] = ACTIONS(2155), - [anon_sym_const] = ACTIONS(2155), - [anon_sym_continue] = ACTIONS(2155), - [anon_sym_default] = ACTIONS(2155), - [anon_sym_enum] = ACTIONS(2155), - [anon_sym_fn] = ACTIONS(2155), - [anon_sym_for] = ACTIONS(2155), - [anon_sym_gen] = ACTIONS(2155), - [anon_sym_if] = ACTIONS(2155), - [anon_sym_impl] = ACTIONS(2155), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_loop] = ACTIONS(2155), - [anon_sym_match] = ACTIONS(2155), - [anon_sym_mod] = ACTIONS(2155), - [anon_sym_pub] = ACTIONS(2155), - [anon_sym_return] = ACTIONS(2155), - [anon_sym_static] = ACTIONS(2155), - [anon_sym_struct] = ACTIONS(2155), - [anon_sym_trait] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_union] = ACTIONS(2155), - [anon_sym_unsafe] = ACTIONS(2155), - [anon_sym_use] = ACTIONS(2155), - [anon_sym_while] = ACTIONS(2155), - [anon_sym_extern] = ACTIONS(2155), - [anon_sym_yield] = ACTIONS(2155), - [anon_sym_move] = ACTIONS(2155), - [anon_sym_try] = ACTIONS(2155), - [sym_integer_literal] = ACTIONS(2153), - [aux_sym_string_literal_token1] = ACTIONS(2153), - [sym_char_literal] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(2155), - [anon_sym_false] = ACTIONS(2155), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2155), - [sym_super] = ACTIONS(2155), - [sym_crate] = ACTIONS(2155), - [sym_metavariable] = ACTIONS(2153), - [sym__raw_string_literal_start] = ACTIONS(2153), - [sym_float_literal] = ACTIONS(2153), + [ts_builtin_sym_end] = ACTIONS(2135), + [sym_identifier] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2135), + [anon_sym_macro_rules_BANG] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2135), + [anon_sym_LBRACK] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2135), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_STAR] = ACTIONS(2135), + [anon_sym_u8] = ACTIONS(2137), + [anon_sym_i8] = ACTIONS(2137), + [anon_sym_u16] = ACTIONS(2137), + [anon_sym_i16] = ACTIONS(2137), + [anon_sym_u32] = ACTIONS(2137), + [anon_sym_i32] = ACTIONS(2137), + [anon_sym_u64] = ACTIONS(2137), + [anon_sym_i64] = ACTIONS(2137), + [anon_sym_u128] = ACTIONS(2137), + [anon_sym_i128] = ACTIONS(2137), + [anon_sym_isize] = ACTIONS(2137), + [anon_sym_usize] = ACTIONS(2137), + [anon_sym_f32] = ACTIONS(2137), + [anon_sym_f64] = ACTIONS(2137), + [anon_sym_bool] = ACTIONS(2137), + [anon_sym_str] = ACTIONS(2137), + [anon_sym_char] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_BANG] = ACTIONS(2135), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_PIPE] = ACTIONS(2135), + [anon_sym_LT] = ACTIONS(2135), + [anon_sym_DOT_DOT] = ACTIONS(2135), + [anon_sym_COLON_COLON] = ACTIONS(2135), + [anon_sym_POUND] = ACTIONS(2135), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_default] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [anon_sym_fn] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_gen] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_impl] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_loop] = ACTIONS(2137), + [anon_sym_match] = ACTIONS(2137), + [anon_sym_mod] = ACTIONS(2137), + [anon_sym_pub] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_struct] = ACTIONS(2137), + [anon_sym_trait] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_union] = ACTIONS(2137), + [anon_sym_unsafe] = ACTIONS(2137), + [anon_sym_use] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_extern] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_move] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [sym_integer_literal] = ACTIONS(2135), + [aux_sym_string_literal_token1] = ACTIONS(2135), + [sym_char_literal] = ACTIONS(2135), + [anon_sym_true] = ACTIONS(2137), + [anon_sym_false] = ACTIONS(2137), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2137), + [sym_super] = ACTIONS(2137), + [sym_crate] = ACTIONS(2137), + [sym_metavariable] = ACTIONS(2135), + [sym__raw_string_literal_start] = ACTIONS(2135), + [sym_float_literal] = ACTIONS(2135), }, [STATE(584)] = { [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [ts_builtin_sym_end] = ACTIONS(2157), - [sym_identifier] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2157), - [anon_sym_macro_rules_BANG] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2157), - [anon_sym_LBRACK] = ACTIONS(2157), - [anon_sym_LBRACE] = ACTIONS(2157), - [anon_sym_RBRACE] = ACTIONS(2157), - [anon_sym_STAR] = ACTIONS(2157), - [anon_sym_u8] = ACTIONS(2159), - [anon_sym_i8] = ACTIONS(2159), - [anon_sym_u16] = ACTIONS(2159), - [anon_sym_i16] = ACTIONS(2159), - [anon_sym_u32] = ACTIONS(2159), - [anon_sym_i32] = ACTIONS(2159), - [anon_sym_u64] = ACTIONS(2159), - [anon_sym_i64] = ACTIONS(2159), - [anon_sym_u128] = ACTIONS(2159), - [anon_sym_i128] = ACTIONS(2159), - [anon_sym_isize] = ACTIONS(2159), - [anon_sym_usize] = ACTIONS(2159), - [anon_sym_f32] = ACTIONS(2159), - [anon_sym_f64] = ACTIONS(2159), - [anon_sym_bool] = ACTIONS(2159), - [anon_sym_str] = ACTIONS(2159), - [anon_sym_char] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2157), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_PIPE] = ACTIONS(2157), - [anon_sym_LT] = ACTIONS(2157), - [anon_sym_DOT_DOT] = ACTIONS(2157), - [anon_sym_COLON_COLON] = ACTIONS(2157), - [anon_sym_POUND] = ACTIONS(2157), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_default] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [anon_sym_fn] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_gen] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_impl] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_loop] = ACTIONS(2159), - [anon_sym_match] = ACTIONS(2159), - [anon_sym_mod] = ACTIONS(2159), - [anon_sym_pub] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_struct] = ACTIONS(2159), - [anon_sym_trait] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_union] = ACTIONS(2159), - [anon_sym_unsafe] = ACTIONS(2159), - [anon_sym_use] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_extern] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_move] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [sym_integer_literal] = ACTIONS(2157), - [aux_sym_string_literal_token1] = ACTIONS(2157), - [sym_char_literal] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(2159), - [anon_sym_false] = ACTIONS(2159), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_crate] = ACTIONS(2159), - [sym_metavariable] = ACTIONS(2157), - [sym__raw_string_literal_start] = ACTIONS(2157), - [sym_float_literal] = ACTIONS(2157), + [ts_builtin_sym_end] = ACTIONS(2139), + [sym_identifier] = ACTIONS(2141), + [anon_sym_SEMI] = ACTIONS(2139), + [anon_sym_macro_rules_BANG] = ACTIONS(2139), + [anon_sym_LPAREN] = ACTIONS(2139), + [anon_sym_LBRACK] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2139), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_u8] = ACTIONS(2141), + [anon_sym_i8] = ACTIONS(2141), + [anon_sym_u16] = ACTIONS(2141), + [anon_sym_i16] = ACTIONS(2141), + [anon_sym_u32] = ACTIONS(2141), + [anon_sym_i32] = ACTIONS(2141), + [anon_sym_u64] = ACTIONS(2141), + [anon_sym_i64] = ACTIONS(2141), + [anon_sym_u128] = ACTIONS(2141), + [anon_sym_i128] = ACTIONS(2141), + [anon_sym_isize] = ACTIONS(2141), + [anon_sym_usize] = ACTIONS(2141), + [anon_sym_f32] = ACTIONS(2141), + [anon_sym_f64] = ACTIONS(2141), + [anon_sym_bool] = ACTIONS(2141), + [anon_sym_str] = ACTIONS(2141), + [anon_sym_char] = ACTIONS(2141), + [anon_sym_DASH] = ACTIONS(2139), + [anon_sym_BANG] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2139), + [anon_sym_DOT_DOT] = ACTIONS(2139), + [anon_sym_COLON_COLON] = ACTIONS(2139), + [anon_sym_POUND] = ACTIONS(2139), + [anon_sym_SQUOTE] = ACTIONS(2141), + [anon_sym_async] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2141), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_continue] = ACTIONS(2141), + [anon_sym_default] = ACTIONS(2141), + [anon_sym_enum] = ACTIONS(2141), + [anon_sym_fn] = ACTIONS(2141), + [anon_sym_for] = ACTIONS(2141), + [anon_sym_gen] = ACTIONS(2141), + [anon_sym_if] = ACTIONS(2141), + [anon_sym_impl] = ACTIONS(2141), + [anon_sym_let] = ACTIONS(2141), + [anon_sym_loop] = ACTIONS(2141), + [anon_sym_match] = ACTIONS(2141), + [anon_sym_mod] = ACTIONS(2141), + [anon_sym_pub] = ACTIONS(2141), + [anon_sym_return] = ACTIONS(2141), + [anon_sym_static] = ACTIONS(2141), + [anon_sym_struct] = ACTIONS(2141), + [anon_sym_trait] = ACTIONS(2141), + [anon_sym_type] = ACTIONS(2141), + [anon_sym_union] = ACTIONS(2141), + [anon_sym_unsafe] = ACTIONS(2141), + [anon_sym_use] = ACTIONS(2141), + [anon_sym_while] = ACTIONS(2141), + [anon_sym_extern] = ACTIONS(2141), + [anon_sym_yield] = ACTIONS(2141), + [anon_sym_move] = ACTIONS(2141), + [anon_sym_try] = ACTIONS(2141), + [sym_integer_literal] = ACTIONS(2139), + [aux_sym_string_literal_token1] = ACTIONS(2139), + [sym_char_literal] = ACTIONS(2139), + [anon_sym_true] = ACTIONS(2141), + [anon_sym_false] = ACTIONS(2141), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2141), + [sym_super] = ACTIONS(2141), + [sym_crate] = ACTIONS(2141), + [sym_metavariable] = ACTIONS(2139), + [sym__raw_string_literal_start] = ACTIONS(2139), + [sym_float_literal] = ACTIONS(2139), }, [STATE(585)] = { [sym_line_comment] = STATE(585), [sym_block_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2163), - [anon_sym_SEMI] = ACTIONS(2161), - [anon_sym_macro_rules_BANG] = ACTIONS(2161), - [anon_sym_LPAREN] = ACTIONS(2161), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_LBRACE] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2161), - [anon_sym_STAR] = ACTIONS(2161), - [anon_sym_u8] = ACTIONS(2163), - [anon_sym_i8] = ACTIONS(2163), - [anon_sym_u16] = ACTIONS(2163), - [anon_sym_i16] = ACTIONS(2163), - [anon_sym_u32] = ACTIONS(2163), - [anon_sym_i32] = ACTIONS(2163), - [anon_sym_u64] = ACTIONS(2163), - [anon_sym_i64] = ACTIONS(2163), - [anon_sym_u128] = ACTIONS(2163), - [anon_sym_i128] = ACTIONS(2163), - [anon_sym_isize] = ACTIONS(2163), - [anon_sym_usize] = ACTIONS(2163), - [anon_sym_f32] = ACTIONS(2163), - [anon_sym_f64] = ACTIONS(2163), - [anon_sym_bool] = ACTIONS(2163), - [anon_sym_str] = ACTIONS(2163), - [anon_sym_char] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2161), - [anon_sym_BANG] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2161), - [anon_sym_PIPE] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2161), - [anon_sym_DOT_DOT] = ACTIONS(2161), - [anon_sym_COLON_COLON] = ACTIONS(2161), - [anon_sym_POUND] = ACTIONS(2161), - [anon_sym_SQUOTE] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_break] = ACTIONS(2163), - [anon_sym_const] = ACTIONS(2163), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_default] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [anon_sym_fn] = ACTIONS(2163), - [anon_sym_for] = ACTIONS(2163), - [anon_sym_gen] = ACTIONS(2163), - [anon_sym_if] = ACTIONS(2163), - [anon_sym_impl] = ACTIONS(2163), - [anon_sym_let] = ACTIONS(2163), - [anon_sym_loop] = ACTIONS(2163), - [anon_sym_match] = ACTIONS(2163), - [anon_sym_mod] = ACTIONS(2163), - [anon_sym_pub] = ACTIONS(2163), - [anon_sym_return] = ACTIONS(2163), - [anon_sym_static] = ACTIONS(2163), - [anon_sym_struct] = ACTIONS(2163), - [anon_sym_trait] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_union] = ACTIONS(2163), - [anon_sym_unsafe] = ACTIONS(2163), - [anon_sym_use] = ACTIONS(2163), - [anon_sym_while] = ACTIONS(2163), - [anon_sym_extern] = ACTIONS(2163), - [anon_sym_yield] = ACTIONS(2163), - [anon_sym_move] = ACTIONS(2163), - [anon_sym_try] = ACTIONS(2163), - [sym_integer_literal] = ACTIONS(2161), - [aux_sym_string_literal_token1] = ACTIONS(2161), - [sym_char_literal] = ACTIONS(2161), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2163), - [sym_super] = ACTIONS(2163), - [sym_crate] = ACTIONS(2163), - [sym_metavariable] = ACTIONS(2161), - [sym__raw_string_literal_start] = ACTIONS(2161), - [sym_float_literal] = ACTIONS(2161), + [ts_builtin_sym_end] = ACTIONS(2143), + [sym_identifier] = ACTIONS(2145), + [anon_sym_SEMI] = ACTIONS(2143), + [anon_sym_macro_rules_BANG] = ACTIONS(2143), + [anon_sym_LPAREN] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_RBRACE] = ACTIONS(2143), + [anon_sym_STAR] = ACTIONS(2143), + [anon_sym_u8] = ACTIONS(2145), + [anon_sym_i8] = ACTIONS(2145), + [anon_sym_u16] = ACTIONS(2145), + [anon_sym_i16] = ACTIONS(2145), + [anon_sym_u32] = ACTIONS(2145), + [anon_sym_i32] = ACTIONS(2145), + [anon_sym_u64] = ACTIONS(2145), + [anon_sym_i64] = ACTIONS(2145), + [anon_sym_u128] = ACTIONS(2145), + [anon_sym_i128] = ACTIONS(2145), + [anon_sym_isize] = ACTIONS(2145), + [anon_sym_usize] = ACTIONS(2145), + [anon_sym_f32] = ACTIONS(2145), + [anon_sym_f64] = ACTIONS(2145), + [anon_sym_bool] = ACTIONS(2145), + [anon_sym_str] = ACTIONS(2145), + [anon_sym_char] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_BANG] = ACTIONS(2143), + [anon_sym_AMP] = ACTIONS(2143), + [anon_sym_PIPE] = ACTIONS(2143), + [anon_sym_LT] = ACTIONS(2143), + [anon_sym_DOT_DOT] = ACTIONS(2143), + [anon_sym_COLON_COLON] = ACTIONS(2143), + [anon_sym_POUND] = ACTIONS(2143), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_default] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [anon_sym_fn] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_gen] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_impl] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_loop] = ACTIONS(2145), + [anon_sym_match] = ACTIONS(2145), + [anon_sym_mod] = ACTIONS(2145), + [anon_sym_pub] = ACTIONS(2145), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_struct] = ACTIONS(2145), + [anon_sym_trait] = ACTIONS(2145), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_union] = ACTIONS(2145), + [anon_sym_unsafe] = ACTIONS(2145), + [anon_sym_use] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_extern] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_move] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [sym_integer_literal] = ACTIONS(2143), + [aux_sym_string_literal_token1] = ACTIONS(2143), + [sym_char_literal] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(2145), + [anon_sym_false] = ACTIONS(2145), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2145), + [sym_super] = ACTIONS(2145), + [sym_crate] = ACTIONS(2145), + [sym_metavariable] = ACTIONS(2143), + [sym__raw_string_literal_start] = ACTIONS(2143), + [sym_float_literal] = ACTIONS(2143), }, [STATE(586)] = { [sym_line_comment] = STATE(586), [sym_block_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2165), - [anon_sym_macro_rules_BANG] = ACTIONS(2165), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_LBRACK] = ACTIONS(2165), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2165), - [anon_sym_STAR] = ACTIONS(2165), - [anon_sym_u8] = ACTIONS(2167), - [anon_sym_i8] = ACTIONS(2167), - [anon_sym_u16] = ACTIONS(2167), - [anon_sym_i16] = ACTIONS(2167), - [anon_sym_u32] = ACTIONS(2167), - [anon_sym_i32] = ACTIONS(2167), - [anon_sym_u64] = ACTIONS(2167), - [anon_sym_i64] = ACTIONS(2167), - [anon_sym_u128] = ACTIONS(2167), - [anon_sym_i128] = ACTIONS(2167), - [anon_sym_isize] = ACTIONS(2167), - [anon_sym_usize] = ACTIONS(2167), - [anon_sym_f32] = ACTIONS(2167), - [anon_sym_f64] = ACTIONS(2167), - [anon_sym_bool] = ACTIONS(2167), - [anon_sym_str] = ACTIONS(2167), - [anon_sym_char] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2165), - [anon_sym_BANG] = ACTIONS(2165), - [anon_sym_AMP] = ACTIONS(2165), - [anon_sym_PIPE] = ACTIONS(2165), - [anon_sym_LT] = ACTIONS(2165), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_COLON_COLON] = ACTIONS(2165), - [anon_sym_POUND] = ACTIONS(2165), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [anon_sym_fn] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_gen] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_impl] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_loop] = ACTIONS(2167), - [anon_sym_match] = ACTIONS(2167), - [anon_sym_mod] = ACTIONS(2167), - [anon_sym_pub] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_struct] = ACTIONS(2167), - [anon_sym_trait] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_union] = ACTIONS(2167), - [anon_sym_unsafe] = ACTIONS(2167), - [anon_sym_use] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_extern] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_move] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [sym_integer_literal] = ACTIONS(2165), - [aux_sym_string_literal_token1] = ACTIONS(2165), - [sym_char_literal] = ACTIONS(2165), - [anon_sym_true] = ACTIONS(2167), - [anon_sym_false] = ACTIONS(2167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_crate] = ACTIONS(2167), - [sym_metavariable] = ACTIONS(2165), - [sym__raw_string_literal_start] = ACTIONS(2165), - [sym_float_literal] = ACTIONS(2165), + [ts_builtin_sym_end] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2147), + [anon_sym_macro_rules_BANG] = ACTIONS(2147), + [anon_sym_LPAREN] = ACTIONS(2147), + [anon_sym_LBRACK] = ACTIONS(2147), + [anon_sym_LBRACE] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2147), + [anon_sym_STAR] = ACTIONS(2147), + [anon_sym_u8] = ACTIONS(2149), + [anon_sym_i8] = ACTIONS(2149), + [anon_sym_u16] = ACTIONS(2149), + [anon_sym_i16] = ACTIONS(2149), + [anon_sym_u32] = ACTIONS(2149), + [anon_sym_i32] = ACTIONS(2149), + [anon_sym_u64] = ACTIONS(2149), + [anon_sym_i64] = ACTIONS(2149), + [anon_sym_u128] = ACTIONS(2149), + [anon_sym_i128] = ACTIONS(2149), + [anon_sym_isize] = ACTIONS(2149), + [anon_sym_usize] = ACTIONS(2149), + [anon_sym_f32] = ACTIONS(2149), + [anon_sym_f64] = ACTIONS(2149), + [anon_sym_bool] = ACTIONS(2149), + [anon_sym_str] = ACTIONS(2149), + [anon_sym_char] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2147), + [anon_sym_BANG] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2147), + [anon_sym_LT] = ACTIONS(2147), + [anon_sym_DOT_DOT] = ACTIONS(2147), + [anon_sym_COLON_COLON] = ACTIONS(2147), + [anon_sym_POUND] = ACTIONS(2147), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_default] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [anon_sym_fn] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_gen] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_impl] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_loop] = ACTIONS(2149), + [anon_sym_match] = ACTIONS(2149), + [anon_sym_mod] = ACTIONS(2149), + [anon_sym_pub] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_struct] = ACTIONS(2149), + [anon_sym_trait] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_union] = ACTIONS(2149), + [anon_sym_unsafe] = ACTIONS(2149), + [anon_sym_use] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_extern] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_move] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [sym_integer_literal] = ACTIONS(2147), + [aux_sym_string_literal_token1] = ACTIONS(2147), + [sym_char_literal] = ACTIONS(2147), + [anon_sym_true] = ACTIONS(2149), + [anon_sym_false] = ACTIONS(2149), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2149), + [sym_super] = ACTIONS(2149), + [sym_crate] = ACTIONS(2149), + [sym_metavariable] = ACTIONS(2147), + [sym__raw_string_literal_start] = ACTIONS(2147), + [sym_float_literal] = ACTIONS(2147), }, [STATE(587)] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(2169), - [sym_identifier] = ACTIONS(2171), - [anon_sym_SEMI] = ACTIONS(2169), - [anon_sym_macro_rules_BANG] = ACTIONS(2169), - [anon_sym_LPAREN] = ACTIONS(2169), - [anon_sym_LBRACK] = ACTIONS(2169), - [anon_sym_LBRACE] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2169), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_u8] = ACTIONS(2171), - [anon_sym_i8] = ACTIONS(2171), - [anon_sym_u16] = ACTIONS(2171), - [anon_sym_i16] = ACTIONS(2171), - [anon_sym_u32] = ACTIONS(2171), - [anon_sym_i32] = ACTIONS(2171), - [anon_sym_u64] = ACTIONS(2171), - [anon_sym_i64] = ACTIONS(2171), - [anon_sym_u128] = ACTIONS(2171), - [anon_sym_i128] = ACTIONS(2171), - [anon_sym_isize] = ACTIONS(2171), - [anon_sym_usize] = ACTIONS(2171), - [anon_sym_f32] = ACTIONS(2171), - [anon_sym_f64] = ACTIONS(2171), - [anon_sym_bool] = ACTIONS(2171), - [anon_sym_str] = ACTIONS(2171), - [anon_sym_char] = ACTIONS(2171), - [anon_sym_DASH] = ACTIONS(2169), - [anon_sym_BANG] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2169), - [anon_sym_DOT_DOT] = ACTIONS(2169), - [anon_sym_COLON_COLON] = ACTIONS(2169), - [anon_sym_POUND] = ACTIONS(2169), - [anon_sym_SQUOTE] = ACTIONS(2171), - [anon_sym_async] = ACTIONS(2171), - [anon_sym_break] = ACTIONS(2171), - [anon_sym_const] = ACTIONS(2171), - [anon_sym_continue] = ACTIONS(2171), - [anon_sym_default] = ACTIONS(2171), - [anon_sym_enum] = ACTIONS(2171), - [anon_sym_fn] = ACTIONS(2171), - [anon_sym_for] = ACTIONS(2171), - [anon_sym_gen] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(2171), - [anon_sym_impl] = ACTIONS(2171), - [anon_sym_let] = ACTIONS(2171), - [anon_sym_loop] = ACTIONS(2171), - [anon_sym_match] = ACTIONS(2171), - [anon_sym_mod] = ACTIONS(2171), - [anon_sym_pub] = ACTIONS(2171), - [anon_sym_return] = ACTIONS(2171), - [anon_sym_static] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2171), - [anon_sym_trait] = ACTIONS(2171), - [anon_sym_type] = ACTIONS(2171), - [anon_sym_union] = ACTIONS(2171), - [anon_sym_unsafe] = ACTIONS(2171), - [anon_sym_use] = ACTIONS(2171), - [anon_sym_while] = ACTIONS(2171), - [anon_sym_extern] = ACTIONS(2171), - [anon_sym_yield] = ACTIONS(2171), - [anon_sym_move] = ACTIONS(2171), - [anon_sym_try] = ACTIONS(2171), - [sym_integer_literal] = ACTIONS(2169), - [aux_sym_string_literal_token1] = ACTIONS(2169), - [sym_char_literal] = ACTIONS(2169), - [anon_sym_true] = ACTIONS(2171), - [anon_sym_false] = ACTIONS(2171), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2171), - [sym_super] = ACTIONS(2171), - [sym_crate] = ACTIONS(2171), - [sym_metavariable] = ACTIONS(2169), - [sym__raw_string_literal_start] = ACTIONS(2169), - [sym_float_literal] = ACTIONS(2169), + [ts_builtin_sym_end] = ACTIONS(2151), + [sym_identifier] = ACTIONS(2153), + [anon_sym_SEMI] = ACTIONS(2151), + [anon_sym_macro_rules_BANG] = ACTIONS(2151), + [anon_sym_LPAREN] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_u8] = ACTIONS(2153), + [anon_sym_i8] = ACTIONS(2153), + [anon_sym_u16] = ACTIONS(2153), + [anon_sym_i16] = ACTIONS(2153), + [anon_sym_u32] = ACTIONS(2153), + [anon_sym_i32] = ACTIONS(2153), + [anon_sym_u64] = ACTIONS(2153), + [anon_sym_i64] = ACTIONS(2153), + [anon_sym_u128] = ACTIONS(2153), + [anon_sym_i128] = ACTIONS(2153), + [anon_sym_isize] = ACTIONS(2153), + [anon_sym_usize] = ACTIONS(2153), + [anon_sym_f32] = ACTIONS(2153), + [anon_sym_f64] = ACTIONS(2153), + [anon_sym_bool] = ACTIONS(2153), + [anon_sym_str] = ACTIONS(2153), + [anon_sym_char] = ACTIONS(2153), + [anon_sym_DASH] = ACTIONS(2151), + [anon_sym_BANG] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_PIPE] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2151), + [anon_sym_DOT_DOT] = ACTIONS(2151), + [anon_sym_COLON_COLON] = ACTIONS(2151), + [anon_sym_POUND] = ACTIONS(2151), + [anon_sym_SQUOTE] = ACTIONS(2153), + [anon_sym_async] = ACTIONS(2153), + [anon_sym_break] = ACTIONS(2153), + [anon_sym_const] = ACTIONS(2153), + [anon_sym_continue] = ACTIONS(2153), + [anon_sym_default] = ACTIONS(2153), + [anon_sym_enum] = ACTIONS(2153), + [anon_sym_fn] = ACTIONS(2153), + [anon_sym_for] = ACTIONS(2153), + [anon_sym_gen] = ACTIONS(2153), + [anon_sym_if] = ACTIONS(2153), + [anon_sym_impl] = ACTIONS(2153), + [anon_sym_let] = ACTIONS(2153), + [anon_sym_loop] = ACTIONS(2153), + [anon_sym_match] = ACTIONS(2153), + [anon_sym_mod] = ACTIONS(2153), + [anon_sym_pub] = ACTIONS(2153), + [anon_sym_return] = ACTIONS(2153), + [anon_sym_static] = ACTIONS(2153), + [anon_sym_struct] = ACTIONS(2153), + [anon_sym_trait] = ACTIONS(2153), + [anon_sym_type] = ACTIONS(2153), + [anon_sym_union] = ACTIONS(2153), + [anon_sym_unsafe] = ACTIONS(2153), + [anon_sym_use] = ACTIONS(2153), + [anon_sym_while] = ACTIONS(2153), + [anon_sym_extern] = ACTIONS(2153), + [anon_sym_yield] = ACTIONS(2153), + [anon_sym_move] = ACTIONS(2153), + [anon_sym_try] = ACTIONS(2153), + [sym_integer_literal] = ACTIONS(2151), + [aux_sym_string_literal_token1] = ACTIONS(2151), + [sym_char_literal] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(2153), + [anon_sym_false] = ACTIONS(2153), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2153), + [sym_super] = ACTIONS(2153), + [sym_crate] = ACTIONS(2153), + [sym_metavariable] = ACTIONS(2151), + [sym__raw_string_literal_start] = ACTIONS(2151), + [sym_float_literal] = ACTIONS(2151), }, [STATE(588)] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(2173), - [sym_identifier] = ACTIONS(2175), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_macro_rules_BANG] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_STAR] = ACTIONS(2173), - [anon_sym_u8] = ACTIONS(2175), - [anon_sym_i8] = ACTIONS(2175), - [anon_sym_u16] = ACTIONS(2175), - [anon_sym_i16] = ACTIONS(2175), - [anon_sym_u32] = ACTIONS(2175), - [anon_sym_i32] = ACTIONS(2175), - [anon_sym_u64] = ACTIONS(2175), - [anon_sym_i64] = ACTIONS(2175), - [anon_sym_u128] = ACTIONS(2175), - [anon_sym_i128] = ACTIONS(2175), - [anon_sym_isize] = ACTIONS(2175), - [anon_sym_usize] = ACTIONS(2175), - [anon_sym_f32] = ACTIONS(2175), - [anon_sym_f64] = ACTIONS(2175), - [anon_sym_bool] = ACTIONS(2175), - [anon_sym_str] = ACTIONS(2175), - [anon_sym_char] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_AMP] = ACTIONS(2173), - [anon_sym_PIPE] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_DOT_DOT] = ACTIONS(2173), - [anon_sym_COLON_COLON] = ACTIONS(2173), - [anon_sym_POUND] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2175), - [anon_sym_async] = ACTIONS(2175), - [anon_sym_break] = ACTIONS(2175), - [anon_sym_const] = ACTIONS(2175), - [anon_sym_continue] = ACTIONS(2175), - [anon_sym_default] = ACTIONS(2175), - [anon_sym_enum] = ACTIONS(2175), - [anon_sym_fn] = ACTIONS(2175), - [anon_sym_for] = ACTIONS(2175), - [anon_sym_gen] = ACTIONS(2175), - [anon_sym_if] = ACTIONS(2175), - [anon_sym_impl] = ACTIONS(2175), - [anon_sym_let] = ACTIONS(2175), - [anon_sym_loop] = ACTIONS(2175), - [anon_sym_match] = ACTIONS(2175), - [anon_sym_mod] = ACTIONS(2175), - [anon_sym_pub] = ACTIONS(2175), - [anon_sym_return] = ACTIONS(2175), - [anon_sym_static] = ACTIONS(2175), - [anon_sym_struct] = ACTIONS(2175), - [anon_sym_trait] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2175), - [anon_sym_union] = ACTIONS(2175), - [anon_sym_unsafe] = ACTIONS(2175), - [anon_sym_use] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2175), - [anon_sym_extern] = ACTIONS(2175), - [anon_sym_yield] = ACTIONS(2175), - [anon_sym_move] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2175), - [sym_integer_literal] = ACTIONS(2173), - [aux_sym_string_literal_token1] = ACTIONS(2173), - [sym_char_literal] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(2175), - [anon_sym_false] = ACTIONS(2175), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2175), - [sym_super] = ACTIONS(2175), - [sym_crate] = ACTIONS(2175), - [sym_metavariable] = ACTIONS(2173), - [sym__raw_string_literal_start] = ACTIONS(2173), - [sym_float_literal] = ACTIONS(2173), + [ts_builtin_sym_end] = ACTIONS(2155), + [sym_identifier] = ACTIONS(2157), + [anon_sym_SEMI] = ACTIONS(2155), + [anon_sym_macro_rules_BANG] = ACTIONS(2155), + [anon_sym_LPAREN] = ACTIONS(2155), + [anon_sym_LBRACK] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2155), + [anon_sym_RBRACE] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2155), + [anon_sym_u8] = ACTIONS(2157), + [anon_sym_i8] = ACTIONS(2157), + [anon_sym_u16] = ACTIONS(2157), + [anon_sym_i16] = ACTIONS(2157), + [anon_sym_u32] = ACTIONS(2157), + [anon_sym_i32] = ACTIONS(2157), + [anon_sym_u64] = ACTIONS(2157), + [anon_sym_i64] = ACTIONS(2157), + [anon_sym_u128] = ACTIONS(2157), + [anon_sym_i128] = ACTIONS(2157), + [anon_sym_isize] = ACTIONS(2157), + [anon_sym_usize] = ACTIONS(2157), + [anon_sym_f32] = ACTIONS(2157), + [anon_sym_f64] = ACTIONS(2157), + [anon_sym_bool] = ACTIONS(2157), + [anon_sym_str] = ACTIONS(2157), + [anon_sym_char] = ACTIONS(2157), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_BANG] = ACTIONS(2155), + [anon_sym_AMP] = ACTIONS(2155), + [anon_sym_PIPE] = ACTIONS(2155), + [anon_sym_LT] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2155), + [anon_sym_COLON_COLON] = ACTIONS(2155), + [anon_sym_POUND] = ACTIONS(2155), + [anon_sym_SQUOTE] = ACTIONS(2157), + [anon_sym_async] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2157), + [anon_sym_const] = ACTIONS(2157), + [anon_sym_continue] = ACTIONS(2157), + [anon_sym_default] = ACTIONS(2157), + [anon_sym_enum] = ACTIONS(2157), + [anon_sym_fn] = ACTIONS(2157), + [anon_sym_for] = ACTIONS(2157), + [anon_sym_gen] = ACTIONS(2157), + [anon_sym_if] = ACTIONS(2157), + [anon_sym_impl] = ACTIONS(2157), + [anon_sym_let] = ACTIONS(2157), + [anon_sym_loop] = ACTIONS(2157), + [anon_sym_match] = ACTIONS(2157), + [anon_sym_mod] = ACTIONS(2157), + [anon_sym_pub] = ACTIONS(2157), + [anon_sym_return] = ACTIONS(2157), + [anon_sym_static] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2157), + [anon_sym_trait] = ACTIONS(2157), + [anon_sym_type] = ACTIONS(2157), + [anon_sym_union] = ACTIONS(2157), + [anon_sym_unsafe] = ACTIONS(2157), + [anon_sym_use] = ACTIONS(2157), + [anon_sym_while] = ACTIONS(2157), + [anon_sym_extern] = ACTIONS(2157), + [anon_sym_yield] = ACTIONS(2157), + [anon_sym_move] = ACTIONS(2157), + [anon_sym_try] = ACTIONS(2157), + [sym_integer_literal] = ACTIONS(2155), + [aux_sym_string_literal_token1] = ACTIONS(2155), + [sym_char_literal] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(2157), + [anon_sym_false] = ACTIONS(2157), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2157), + [sym_super] = ACTIONS(2157), + [sym_crate] = ACTIONS(2157), + [sym_metavariable] = ACTIONS(2155), + [sym__raw_string_literal_start] = ACTIONS(2155), + [sym_float_literal] = ACTIONS(2155), }, [STATE(589)] = { [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [ts_builtin_sym_end] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2179), - [anon_sym_SEMI] = ACTIONS(2177), - [anon_sym_macro_rules_BANG] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(2177), - [anon_sym_LBRACK] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2177), - [anon_sym_RBRACE] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_u8] = ACTIONS(2179), - [anon_sym_i8] = ACTIONS(2179), - [anon_sym_u16] = ACTIONS(2179), - [anon_sym_i16] = ACTIONS(2179), - [anon_sym_u32] = ACTIONS(2179), - [anon_sym_i32] = ACTIONS(2179), - [anon_sym_u64] = ACTIONS(2179), - [anon_sym_i64] = ACTIONS(2179), - [anon_sym_u128] = ACTIONS(2179), - [anon_sym_i128] = ACTIONS(2179), - [anon_sym_isize] = ACTIONS(2179), - [anon_sym_usize] = ACTIONS(2179), - [anon_sym_f32] = ACTIONS(2179), - [anon_sym_f64] = ACTIONS(2179), - [anon_sym_bool] = ACTIONS(2179), - [anon_sym_str] = ACTIONS(2179), - [anon_sym_char] = ACTIONS(2179), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_LT] = ACTIONS(2177), - [anon_sym_DOT_DOT] = ACTIONS(2177), - [anon_sym_COLON_COLON] = ACTIONS(2177), - [anon_sym_POUND] = ACTIONS(2177), - [anon_sym_SQUOTE] = ACTIONS(2179), - [anon_sym_async] = ACTIONS(2179), - [anon_sym_break] = ACTIONS(2179), - [anon_sym_const] = ACTIONS(2179), - [anon_sym_continue] = ACTIONS(2179), - [anon_sym_default] = ACTIONS(2179), - [anon_sym_enum] = ACTIONS(2179), - [anon_sym_fn] = ACTIONS(2179), - [anon_sym_for] = ACTIONS(2179), - [anon_sym_gen] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_impl] = ACTIONS(2179), - [anon_sym_let] = ACTIONS(2179), - [anon_sym_loop] = ACTIONS(2179), - [anon_sym_match] = ACTIONS(2179), - [anon_sym_mod] = ACTIONS(2179), - [anon_sym_pub] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2179), - [anon_sym_static] = ACTIONS(2179), - [anon_sym_struct] = ACTIONS(2179), - [anon_sym_trait] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2179), - [anon_sym_union] = ACTIONS(2179), - [anon_sym_unsafe] = ACTIONS(2179), - [anon_sym_use] = ACTIONS(2179), - [anon_sym_while] = ACTIONS(2179), - [anon_sym_extern] = ACTIONS(2179), - [anon_sym_yield] = ACTIONS(2179), - [anon_sym_move] = ACTIONS(2179), - [anon_sym_try] = ACTIONS(2179), - [sym_integer_literal] = ACTIONS(2177), - [aux_sym_string_literal_token1] = ACTIONS(2177), - [sym_char_literal] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(2179), - [anon_sym_false] = ACTIONS(2179), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2179), - [sym_super] = ACTIONS(2179), - [sym_crate] = ACTIONS(2179), - [sym_metavariable] = ACTIONS(2177), - [sym__raw_string_literal_start] = ACTIONS(2177), - [sym_float_literal] = ACTIONS(2177), + [ts_builtin_sym_end] = ACTIONS(2159), + [sym_identifier] = ACTIONS(2161), + [anon_sym_SEMI] = ACTIONS(2159), + [anon_sym_macro_rules_BANG] = ACTIONS(2159), + [anon_sym_LPAREN] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2159), + [anon_sym_STAR] = ACTIONS(2159), + [anon_sym_u8] = ACTIONS(2161), + [anon_sym_i8] = ACTIONS(2161), + [anon_sym_u16] = ACTIONS(2161), + [anon_sym_i16] = ACTIONS(2161), + [anon_sym_u32] = ACTIONS(2161), + [anon_sym_i32] = ACTIONS(2161), + [anon_sym_u64] = ACTIONS(2161), + [anon_sym_i64] = ACTIONS(2161), + [anon_sym_u128] = ACTIONS(2161), + [anon_sym_i128] = ACTIONS(2161), + [anon_sym_isize] = ACTIONS(2161), + [anon_sym_usize] = ACTIONS(2161), + [anon_sym_f32] = ACTIONS(2161), + [anon_sym_f64] = ACTIONS(2161), + [anon_sym_bool] = ACTIONS(2161), + [anon_sym_str] = ACTIONS(2161), + [anon_sym_char] = ACTIONS(2161), + [anon_sym_DASH] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(2159), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_PIPE] = ACTIONS(2159), + [anon_sym_LT] = ACTIONS(2159), + [anon_sym_DOT_DOT] = ACTIONS(2159), + [anon_sym_COLON_COLON] = ACTIONS(2159), + [anon_sym_POUND] = ACTIONS(2159), + [anon_sym_SQUOTE] = ACTIONS(2161), + [anon_sym_async] = ACTIONS(2161), + [anon_sym_break] = ACTIONS(2161), + [anon_sym_const] = ACTIONS(2161), + [anon_sym_continue] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(2161), + [anon_sym_enum] = ACTIONS(2161), + [anon_sym_fn] = ACTIONS(2161), + [anon_sym_for] = ACTIONS(2161), + [anon_sym_gen] = ACTIONS(2161), + [anon_sym_if] = ACTIONS(2161), + [anon_sym_impl] = ACTIONS(2161), + [anon_sym_let] = ACTIONS(2161), + [anon_sym_loop] = ACTIONS(2161), + [anon_sym_match] = ACTIONS(2161), + [anon_sym_mod] = ACTIONS(2161), + [anon_sym_pub] = ACTIONS(2161), + [anon_sym_return] = ACTIONS(2161), + [anon_sym_static] = ACTIONS(2161), + [anon_sym_struct] = ACTIONS(2161), + [anon_sym_trait] = ACTIONS(2161), + [anon_sym_type] = ACTIONS(2161), + [anon_sym_union] = ACTIONS(2161), + [anon_sym_unsafe] = ACTIONS(2161), + [anon_sym_use] = ACTIONS(2161), + [anon_sym_while] = ACTIONS(2161), + [anon_sym_extern] = ACTIONS(2161), + [anon_sym_yield] = ACTIONS(2161), + [anon_sym_move] = ACTIONS(2161), + [anon_sym_try] = ACTIONS(2161), + [sym_integer_literal] = ACTIONS(2159), + [aux_sym_string_literal_token1] = ACTIONS(2159), + [sym_char_literal] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(2161), + [anon_sym_false] = ACTIONS(2161), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2161), + [sym_super] = ACTIONS(2161), + [sym_crate] = ACTIONS(2161), + [sym_metavariable] = ACTIONS(2159), + [sym__raw_string_literal_start] = ACTIONS(2159), + [sym_float_literal] = ACTIONS(2159), }, [STATE(590)] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), - [ts_builtin_sym_end] = ACTIONS(2181), - [sym_identifier] = ACTIONS(2183), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_macro_rules_BANG] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_STAR] = ACTIONS(2181), - [anon_sym_u8] = ACTIONS(2183), - [anon_sym_i8] = ACTIONS(2183), - [anon_sym_u16] = ACTIONS(2183), - [anon_sym_i16] = ACTIONS(2183), - [anon_sym_u32] = ACTIONS(2183), - [anon_sym_i32] = ACTIONS(2183), - [anon_sym_u64] = ACTIONS(2183), - [anon_sym_i64] = ACTIONS(2183), - [anon_sym_u128] = ACTIONS(2183), - [anon_sym_i128] = ACTIONS(2183), - [anon_sym_isize] = ACTIONS(2183), - [anon_sym_usize] = ACTIONS(2183), - [anon_sym_f32] = ACTIONS(2183), - [anon_sym_f64] = ACTIONS(2183), - [anon_sym_bool] = ACTIONS(2183), - [anon_sym_str] = ACTIONS(2183), - [anon_sym_char] = ACTIONS(2183), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_AMP] = ACTIONS(2181), - [anon_sym_PIPE] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2181), - [anon_sym_COLON_COLON] = ACTIONS(2181), - [anon_sym_POUND] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2183), - [anon_sym_async] = ACTIONS(2183), - [anon_sym_break] = ACTIONS(2183), - [anon_sym_const] = ACTIONS(2183), - [anon_sym_continue] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2183), - [anon_sym_enum] = ACTIONS(2183), - [anon_sym_fn] = ACTIONS(2183), - [anon_sym_for] = ACTIONS(2183), - [anon_sym_gen] = ACTIONS(2183), - [anon_sym_if] = ACTIONS(2183), - [anon_sym_impl] = ACTIONS(2183), - [anon_sym_let] = ACTIONS(2183), - [anon_sym_loop] = ACTIONS(2183), - [anon_sym_match] = ACTIONS(2183), - [anon_sym_mod] = ACTIONS(2183), - [anon_sym_pub] = ACTIONS(2183), - [anon_sym_return] = ACTIONS(2183), - [anon_sym_static] = ACTIONS(2183), - [anon_sym_struct] = ACTIONS(2183), - [anon_sym_trait] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2183), - [anon_sym_union] = ACTIONS(2183), - [anon_sym_unsafe] = ACTIONS(2183), - [anon_sym_use] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2183), - [anon_sym_extern] = ACTIONS(2183), - [anon_sym_yield] = ACTIONS(2183), - [anon_sym_move] = ACTIONS(2183), - [anon_sym_try] = ACTIONS(2183), - [sym_integer_literal] = ACTIONS(2181), - [aux_sym_string_literal_token1] = ACTIONS(2181), - [sym_char_literal] = ACTIONS(2181), - [anon_sym_true] = ACTIONS(2183), - [anon_sym_false] = ACTIONS(2183), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2183), - [sym_super] = ACTIONS(2183), - [sym_crate] = ACTIONS(2183), - [sym_metavariable] = ACTIONS(2181), - [sym__raw_string_literal_start] = ACTIONS(2181), - [sym_float_literal] = ACTIONS(2181), + [ts_builtin_sym_end] = ACTIONS(2163), + [sym_identifier] = ACTIONS(2165), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_macro_rules_BANG] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_u8] = ACTIONS(2165), + [anon_sym_i8] = ACTIONS(2165), + [anon_sym_u16] = ACTIONS(2165), + [anon_sym_i16] = ACTIONS(2165), + [anon_sym_u32] = ACTIONS(2165), + [anon_sym_i32] = ACTIONS(2165), + [anon_sym_u64] = ACTIONS(2165), + [anon_sym_i64] = ACTIONS(2165), + [anon_sym_u128] = ACTIONS(2165), + [anon_sym_i128] = ACTIONS(2165), + [anon_sym_isize] = ACTIONS(2165), + [anon_sym_usize] = ACTIONS(2165), + [anon_sym_f32] = ACTIONS(2165), + [anon_sym_f64] = ACTIONS(2165), + [anon_sym_bool] = ACTIONS(2165), + [anon_sym_str] = ACTIONS(2165), + [anon_sym_char] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_DOT_DOT] = ACTIONS(2163), + [anon_sym_COLON_COLON] = ACTIONS(2163), + [anon_sym_POUND] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2165), + [anon_sym_const] = ACTIONS(2165), + [anon_sym_continue] = ACTIONS(2165), + [anon_sym_default] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(2165), + [anon_sym_fn] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2165), + [anon_sym_gen] = ACTIONS(2165), + [anon_sym_if] = ACTIONS(2165), + [anon_sym_impl] = ACTIONS(2165), + [anon_sym_let] = ACTIONS(2165), + [anon_sym_loop] = ACTIONS(2165), + [anon_sym_match] = ACTIONS(2165), + [anon_sym_mod] = ACTIONS(2165), + [anon_sym_pub] = ACTIONS(2165), + [anon_sym_return] = ACTIONS(2165), + [anon_sym_static] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2165), + [anon_sym_trait] = ACTIONS(2165), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_union] = ACTIONS(2165), + [anon_sym_unsafe] = ACTIONS(2165), + [anon_sym_use] = ACTIONS(2165), + [anon_sym_while] = ACTIONS(2165), + [anon_sym_extern] = ACTIONS(2165), + [anon_sym_yield] = ACTIONS(2165), + [anon_sym_move] = ACTIONS(2165), + [anon_sym_try] = ACTIONS(2165), + [sym_integer_literal] = ACTIONS(2163), + [aux_sym_string_literal_token1] = ACTIONS(2163), + [sym_char_literal] = ACTIONS(2163), + [anon_sym_true] = ACTIONS(2165), + [anon_sym_false] = ACTIONS(2165), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2165), + [sym_super] = ACTIONS(2165), + [sym_crate] = ACTIONS(2165), + [sym_metavariable] = ACTIONS(2163), + [sym__raw_string_literal_start] = ACTIONS(2163), + [sym_float_literal] = ACTIONS(2163), }, [STATE(591)] = { [sym_line_comment] = STATE(591), [sym_block_comment] = STATE(591), - [ts_builtin_sym_end] = ACTIONS(2185), - [sym_identifier] = ACTIONS(2187), - [anon_sym_SEMI] = ACTIONS(2185), - [anon_sym_macro_rules_BANG] = ACTIONS(2185), - [anon_sym_LPAREN] = ACTIONS(2185), - [anon_sym_LBRACK] = ACTIONS(2185), - [anon_sym_LBRACE] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_STAR] = ACTIONS(2185), - [anon_sym_u8] = ACTIONS(2187), - [anon_sym_i8] = ACTIONS(2187), - [anon_sym_u16] = ACTIONS(2187), - [anon_sym_i16] = ACTIONS(2187), - [anon_sym_u32] = ACTIONS(2187), - [anon_sym_i32] = ACTIONS(2187), - [anon_sym_u64] = ACTIONS(2187), - [anon_sym_i64] = ACTIONS(2187), - [anon_sym_u128] = ACTIONS(2187), - [anon_sym_i128] = ACTIONS(2187), - [anon_sym_isize] = ACTIONS(2187), - [anon_sym_usize] = ACTIONS(2187), - [anon_sym_f32] = ACTIONS(2187), - [anon_sym_f64] = ACTIONS(2187), - [anon_sym_bool] = ACTIONS(2187), - [anon_sym_str] = ACTIONS(2187), - [anon_sym_char] = ACTIONS(2187), - [anon_sym_DASH] = ACTIONS(2185), - [anon_sym_BANG] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2185), - [anon_sym_LT] = ACTIONS(2185), - [anon_sym_DOT_DOT] = ACTIONS(2185), - [anon_sym_COLON_COLON] = ACTIONS(2185), - [anon_sym_POUND] = ACTIONS(2185), - [anon_sym_SQUOTE] = ACTIONS(2187), - [anon_sym_async] = ACTIONS(2187), - [anon_sym_break] = ACTIONS(2187), - [anon_sym_const] = ACTIONS(2187), - [anon_sym_continue] = ACTIONS(2187), - [anon_sym_default] = ACTIONS(2187), - [anon_sym_enum] = ACTIONS(2187), - [anon_sym_fn] = ACTIONS(2187), - [anon_sym_for] = ACTIONS(2187), - [anon_sym_gen] = ACTIONS(2187), - [anon_sym_if] = ACTIONS(2187), - [anon_sym_impl] = ACTIONS(2187), - [anon_sym_let] = ACTIONS(2187), - [anon_sym_loop] = ACTIONS(2187), - [anon_sym_match] = ACTIONS(2187), - [anon_sym_mod] = ACTIONS(2187), - [anon_sym_pub] = ACTIONS(2187), - [anon_sym_return] = ACTIONS(2187), - [anon_sym_static] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(2187), - [anon_sym_trait] = ACTIONS(2187), - [anon_sym_type] = ACTIONS(2187), - [anon_sym_union] = ACTIONS(2187), - [anon_sym_unsafe] = ACTIONS(2187), - [anon_sym_use] = ACTIONS(2187), - [anon_sym_while] = ACTIONS(2187), - [anon_sym_extern] = ACTIONS(2187), - [anon_sym_yield] = ACTIONS(2187), - [anon_sym_move] = ACTIONS(2187), - [anon_sym_try] = ACTIONS(2187), - [sym_integer_literal] = ACTIONS(2185), - [aux_sym_string_literal_token1] = ACTIONS(2185), - [sym_char_literal] = ACTIONS(2185), - [anon_sym_true] = ACTIONS(2187), - [anon_sym_false] = ACTIONS(2187), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2187), - [sym_super] = ACTIONS(2187), - [sym_crate] = ACTIONS(2187), - [sym_metavariable] = ACTIONS(2185), - [sym__raw_string_literal_start] = ACTIONS(2185), - [sym_float_literal] = ACTIONS(2185), + [ts_builtin_sym_end] = ACTIONS(2167), + [sym_identifier] = ACTIONS(2169), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_macro_rules_BANG] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_u8] = ACTIONS(2169), + [anon_sym_i8] = ACTIONS(2169), + [anon_sym_u16] = ACTIONS(2169), + [anon_sym_i16] = ACTIONS(2169), + [anon_sym_u32] = ACTIONS(2169), + [anon_sym_i32] = ACTIONS(2169), + [anon_sym_u64] = ACTIONS(2169), + [anon_sym_i64] = ACTIONS(2169), + [anon_sym_u128] = ACTIONS(2169), + [anon_sym_i128] = ACTIONS(2169), + [anon_sym_isize] = ACTIONS(2169), + [anon_sym_usize] = ACTIONS(2169), + [anon_sym_f32] = ACTIONS(2169), + [anon_sym_f64] = ACTIONS(2169), + [anon_sym_bool] = ACTIONS(2169), + [anon_sym_str] = ACTIONS(2169), + [anon_sym_char] = ACTIONS(2169), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_DOT_DOT] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(2167), + [anon_sym_POUND] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2169), + [anon_sym_async] = ACTIONS(2169), + [anon_sym_break] = ACTIONS(2169), + [anon_sym_const] = ACTIONS(2169), + [anon_sym_continue] = ACTIONS(2169), + [anon_sym_default] = ACTIONS(2169), + [anon_sym_enum] = ACTIONS(2169), + [anon_sym_fn] = ACTIONS(2169), + [anon_sym_for] = ACTIONS(2169), + [anon_sym_gen] = ACTIONS(2169), + [anon_sym_if] = ACTIONS(2169), + [anon_sym_impl] = ACTIONS(2169), + [anon_sym_let] = ACTIONS(2169), + [anon_sym_loop] = ACTIONS(2169), + [anon_sym_match] = ACTIONS(2169), + [anon_sym_mod] = ACTIONS(2169), + [anon_sym_pub] = ACTIONS(2169), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_static] = ACTIONS(2169), + [anon_sym_struct] = ACTIONS(2169), + [anon_sym_trait] = ACTIONS(2169), + [anon_sym_type] = ACTIONS(2169), + [anon_sym_union] = ACTIONS(2169), + [anon_sym_unsafe] = ACTIONS(2169), + [anon_sym_use] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2169), + [anon_sym_extern] = ACTIONS(2169), + [anon_sym_yield] = ACTIONS(2169), + [anon_sym_move] = ACTIONS(2169), + [anon_sym_try] = ACTIONS(2169), + [sym_integer_literal] = ACTIONS(2167), + [aux_sym_string_literal_token1] = ACTIONS(2167), + [sym_char_literal] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(2169), + [anon_sym_false] = ACTIONS(2169), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2169), + [sym_super] = ACTIONS(2169), + [sym_crate] = ACTIONS(2169), + [sym_metavariable] = ACTIONS(2167), + [sym__raw_string_literal_start] = ACTIONS(2167), + [sym_float_literal] = ACTIONS(2167), }, [STATE(592)] = { [sym_line_comment] = STATE(592), [sym_block_comment] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(2189), - [sym_identifier] = ACTIONS(2191), - [anon_sym_SEMI] = ACTIONS(2189), - [anon_sym_macro_rules_BANG] = ACTIONS(2189), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_LBRACK] = ACTIONS(2189), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_STAR] = ACTIONS(2189), - [anon_sym_u8] = ACTIONS(2191), - [anon_sym_i8] = ACTIONS(2191), - [anon_sym_u16] = ACTIONS(2191), - [anon_sym_i16] = ACTIONS(2191), - [anon_sym_u32] = ACTIONS(2191), - [anon_sym_i32] = ACTIONS(2191), - [anon_sym_u64] = ACTIONS(2191), - [anon_sym_i64] = ACTIONS(2191), - [anon_sym_u128] = ACTIONS(2191), - [anon_sym_i128] = ACTIONS(2191), - [anon_sym_isize] = ACTIONS(2191), - [anon_sym_usize] = ACTIONS(2191), - [anon_sym_f32] = ACTIONS(2191), - [anon_sym_f64] = ACTIONS(2191), - [anon_sym_bool] = ACTIONS(2191), - [anon_sym_str] = ACTIONS(2191), - [anon_sym_char] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2189), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_AMP] = ACTIONS(2189), - [anon_sym_PIPE] = ACTIONS(2189), - [anon_sym_LT] = ACTIONS(2189), - [anon_sym_DOT_DOT] = ACTIONS(2189), - [anon_sym_COLON_COLON] = ACTIONS(2189), - [anon_sym_POUND] = ACTIONS(2189), - [anon_sym_SQUOTE] = ACTIONS(2191), - [anon_sym_async] = ACTIONS(2191), - [anon_sym_break] = ACTIONS(2191), - [anon_sym_const] = ACTIONS(2191), - [anon_sym_continue] = ACTIONS(2191), - [anon_sym_default] = ACTIONS(2191), - [anon_sym_enum] = ACTIONS(2191), - [anon_sym_fn] = ACTIONS(2191), - [anon_sym_for] = ACTIONS(2191), - [anon_sym_gen] = ACTIONS(2191), - [anon_sym_if] = ACTIONS(2191), - [anon_sym_impl] = ACTIONS(2191), - [anon_sym_let] = ACTIONS(2191), - [anon_sym_loop] = ACTIONS(2191), - [anon_sym_match] = ACTIONS(2191), - [anon_sym_mod] = ACTIONS(2191), - [anon_sym_pub] = ACTIONS(2191), - [anon_sym_return] = ACTIONS(2191), - [anon_sym_static] = ACTIONS(2191), - [anon_sym_struct] = ACTIONS(2191), - [anon_sym_trait] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2191), - [anon_sym_union] = ACTIONS(2191), - [anon_sym_unsafe] = ACTIONS(2191), - [anon_sym_use] = ACTIONS(2191), - [anon_sym_while] = ACTIONS(2191), - [anon_sym_extern] = ACTIONS(2191), - [anon_sym_yield] = ACTIONS(2191), - [anon_sym_move] = ACTIONS(2191), - [anon_sym_try] = ACTIONS(2191), - [sym_integer_literal] = ACTIONS(2189), - [aux_sym_string_literal_token1] = ACTIONS(2189), - [sym_char_literal] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(2191), - [anon_sym_false] = ACTIONS(2191), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2191), - [sym_super] = ACTIONS(2191), - [sym_crate] = ACTIONS(2191), - [sym_metavariable] = ACTIONS(2189), - [sym__raw_string_literal_start] = ACTIONS(2189), - [sym_float_literal] = ACTIONS(2189), + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_identifier] = ACTIONS(2173), + [anon_sym_SEMI] = ACTIONS(2171), + [anon_sym_macro_rules_BANG] = ACTIONS(2171), + [anon_sym_LPAREN] = ACTIONS(2171), + [anon_sym_LBRACK] = ACTIONS(2171), + [anon_sym_LBRACE] = ACTIONS(2171), + [anon_sym_RBRACE] = ACTIONS(2171), + [anon_sym_STAR] = ACTIONS(2171), + [anon_sym_u8] = ACTIONS(2173), + [anon_sym_i8] = ACTIONS(2173), + [anon_sym_u16] = ACTIONS(2173), + [anon_sym_i16] = ACTIONS(2173), + [anon_sym_u32] = ACTIONS(2173), + [anon_sym_i32] = ACTIONS(2173), + [anon_sym_u64] = ACTIONS(2173), + [anon_sym_i64] = ACTIONS(2173), + [anon_sym_u128] = ACTIONS(2173), + [anon_sym_i128] = ACTIONS(2173), + [anon_sym_isize] = ACTIONS(2173), + [anon_sym_usize] = ACTIONS(2173), + [anon_sym_f32] = ACTIONS(2173), + [anon_sym_f64] = ACTIONS(2173), + [anon_sym_bool] = ACTIONS(2173), + [anon_sym_str] = ACTIONS(2173), + [anon_sym_char] = ACTIONS(2173), + [anon_sym_DASH] = ACTIONS(2171), + [anon_sym_BANG] = ACTIONS(2171), + [anon_sym_AMP] = ACTIONS(2171), + [anon_sym_PIPE] = ACTIONS(2171), + [anon_sym_LT] = ACTIONS(2171), + [anon_sym_DOT_DOT] = ACTIONS(2171), + [anon_sym_COLON_COLON] = ACTIONS(2171), + [anon_sym_POUND] = ACTIONS(2171), + [anon_sym_SQUOTE] = ACTIONS(2173), + [anon_sym_async] = ACTIONS(2173), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_const] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2173), + [anon_sym_enum] = ACTIONS(2173), + [anon_sym_fn] = ACTIONS(2173), + [anon_sym_for] = ACTIONS(2173), + [anon_sym_gen] = ACTIONS(2173), + [anon_sym_if] = ACTIONS(2173), + [anon_sym_impl] = ACTIONS(2173), + [anon_sym_let] = ACTIONS(2173), + [anon_sym_loop] = ACTIONS(2173), + [anon_sym_match] = ACTIONS(2173), + [anon_sym_mod] = ACTIONS(2173), + [anon_sym_pub] = ACTIONS(2173), + [anon_sym_return] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2173), + [anon_sym_struct] = ACTIONS(2173), + [anon_sym_trait] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2173), + [anon_sym_union] = ACTIONS(2173), + [anon_sym_unsafe] = ACTIONS(2173), + [anon_sym_use] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2173), + [anon_sym_extern] = ACTIONS(2173), + [anon_sym_yield] = ACTIONS(2173), + [anon_sym_move] = ACTIONS(2173), + [anon_sym_try] = ACTIONS(2173), + [sym_integer_literal] = ACTIONS(2171), + [aux_sym_string_literal_token1] = ACTIONS(2171), + [sym_char_literal] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(2173), + [anon_sym_false] = ACTIONS(2173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2173), + [sym_super] = ACTIONS(2173), + [sym_crate] = ACTIONS(2173), + [sym_metavariable] = ACTIONS(2171), + [sym__raw_string_literal_start] = ACTIONS(2171), + [sym_float_literal] = ACTIONS(2171), }, [STATE(593)] = { [sym_line_comment] = STATE(593), [sym_block_comment] = STATE(593), - [ts_builtin_sym_end] = ACTIONS(2193), - [sym_identifier] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2193), - [anon_sym_macro_rules_BANG] = ACTIONS(2193), - [anon_sym_LPAREN] = ACTIONS(2193), - [anon_sym_LBRACK] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_RBRACE] = ACTIONS(2193), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_u8] = ACTIONS(2195), - [anon_sym_i8] = ACTIONS(2195), - [anon_sym_u16] = ACTIONS(2195), - [anon_sym_i16] = ACTIONS(2195), - [anon_sym_u32] = ACTIONS(2195), - [anon_sym_i32] = ACTIONS(2195), - [anon_sym_u64] = ACTIONS(2195), - [anon_sym_i64] = ACTIONS(2195), - [anon_sym_u128] = ACTIONS(2195), - [anon_sym_i128] = ACTIONS(2195), - [anon_sym_isize] = ACTIONS(2195), - [anon_sym_usize] = ACTIONS(2195), - [anon_sym_f32] = ACTIONS(2195), - [anon_sym_f64] = ACTIONS(2195), - [anon_sym_bool] = ACTIONS(2195), - [anon_sym_str] = ACTIONS(2195), - [anon_sym_char] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2193), - [anon_sym_BANG] = ACTIONS(2193), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_LT] = ACTIONS(2193), - [anon_sym_DOT_DOT] = ACTIONS(2193), - [anon_sym_COLON_COLON] = ACTIONS(2193), - [anon_sym_POUND] = ACTIONS(2193), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [anon_sym_fn] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_gen] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_impl] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_loop] = ACTIONS(2195), - [anon_sym_match] = ACTIONS(2195), - [anon_sym_mod] = ACTIONS(2195), - [anon_sym_pub] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(2195), - [anon_sym_trait] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_union] = ACTIONS(2195), - [anon_sym_unsafe] = ACTIONS(2195), - [anon_sym_use] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_extern] = ACTIONS(2195), - [anon_sym_yield] = ACTIONS(2195), - [anon_sym_move] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [sym_integer_literal] = ACTIONS(2193), - [aux_sym_string_literal_token1] = ACTIONS(2193), - [sym_char_literal] = ACTIONS(2193), - [anon_sym_true] = ACTIONS(2195), - [anon_sym_false] = ACTIONS(2195), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_crate] = ACTIONS(2195), - [sym_metavariable] = ACTIONS(2193), - [sym__raw_string_literal_start] = ACTIONS(2193), - [sym_float_literal] = ACTIONS(2193), + [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_STAR] = 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(1461), + [anon_sym_BANG] = ACTIONS(1461), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1461), + [anon_sym_LT] = ACTIONS(1461), + [anon_sym_DOT_DOT] = ACTIONS(1461), + [anon_sym_COLON_COLON] = ACTIONS(1461), + [anon_sym_POUND] = ACTIONS(1461), + [anon_sym_SQUOTE] = 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(594)] = { [sym_line_comment] = STATE(594), [sym_block_comment] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(2197), - [sym_identifier] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2197), - [anon_sym_macro_rules_BANG] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2197), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_RBRACE] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2197), - [anon_sym_u8] = ACTIONS(2199), - [anon_sym_i8] = ACTIONS(2199), - [anon_sym_u16] = ACTIONS(2199), - [anon_sym_i16] = ACTIONS(2199), - [anon_sym_u32] = ACTIONS(2199), - [anon_sym_i32] = ACTIONS(2199), - [anon_sym_u64] = ACTIONS(2199), - [anon_sym_i64] = ACTIONS(2199), - [anon_sym_u128] = ACTIONS(2199), - [anon_sym_i128] = ACTIONS(2199), - [anon_sym_isize] = ACTIONS(2199), - [anon_sym_usize] = ACTIONS(2199), - [anon_sym_f32] = ACTIONS(2199), - [anon_sym_f64] = ACTIONS(2199), - [anon_sym_bool] = ACTIONS(2199), - [anon_sym_str] = ACTIONS(2199), - [anon_sym_char] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_PIPE] = ACTIONS(2197), - [anon_sym_LT] = ACTIONS(2197), - [anon_sym_DOT_DOT] = ACTIONS(2197), - [anon_sym_COLON_COLON] = ACTIONS(2197), - [anon_sym_POUND] = ACTIONS(2197), - [anon_sym_SQUOTE] = ACTIONS(2199), - [anon_sym_async] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_default] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [anon_sym_fn] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_gen] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_impl] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_loop] = ACTIONS(2199), - [anon_sym_match] = ACTIONS(2199), - [anon_sym_mod] = ACTIONS(2199), - [anon_sym_pub] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_struct] = ACTIONS(2199), - [anon_sym_trait] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_union] = ACTIONS(2199), - [anon_sym_unsafe] = ACTIONS(2199), - [anon_sym_use] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_extern] = ACTIONS(2199), - [anon_sym_yield] = ACTIONS(2199), - [anon_sym_move] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2199), - [sym_integer_literal] = ACTIONS(2197), - [aux_sym_string_literal_token1] = ACTIONS(2197), - [sym_char_literal] = ACTIONS(2197), - [anon_sym_true] = ACTIONS(2199), - [anon_sym_false] = ACTIONS(2199), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2199), - [sym_super] = ACTIONS(2199), - [sym_crate] = ACTIONS(2199), - [sym_metavariable] = ACTIONS(2197), - [sym__raw_string_literal_start] = ACTIONS(2197), - [sym_float_literal] = ACTIONS(2197), + [ts_builtin_sym_end] = ACTIONS(2175), + [sym_identifier] = ACTIONS(2177), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_macro_rules_BANG] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_u8] = ACTIONS(2177), + [anon_sym_i8] = ACTIONS(2177), + [anon_sym_u16] = ACTIONS(2177), + [anon_sym_i16] = ACTIONS(2177), + [anon_sym_u32] = ACTIONS(2177), + [anon_sym_i32] = ACTIONS(2177), + [anon_sym_u64] = ACTIONS(2177), + [anon_sym_i64] = ACTIONS(2177), + [anon_sym_u128] = ACTIONS(2177), + [anon_sym_i128] = ACTIONS(2177), + [anon_sym_isize] = ACTIONS(2177), + [anon_sym_usize] = ACTIONS(2177), + [anon_sym_f32] = ACTIONS(2177), + [anon_sym_f64] = ACTIONS(2177), + [anon_sym_bool] = ACTIONS(2177), + [anon_sym_str] = ACTIONS(2177), + [anon_sym_char] = ACTIONS(2177), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_DOT_DOT] = ACTIONS(2175), + [anon_sym_COLON_COLON] = ACTIONS(2175), + [anon_sym_POUND] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2177), + [anon_sym_async] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2177), + [anon_sym_const] = ACTIONS(2177), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2177), + [anon_sym_enum] = ACTIONS(2177), + [anon_sym_fn] = ACTIONS(2177), + [anon_sym_for] = ACTIONS(2177), + [anon_sym_gen] = ACTIONS(2177), + [anon_sym_if] = ACTIONS(2177), + [anon_sym_impl] = ACTIONS(2177), + [anon_sym_let] = ACTIONS(2177), + [anon_sym_loop] = ACTIONS(2177), + [anon_sym_match] = ACTIONS(2177), + [anon_sym_mod] = ACTIONS(2177), + [anon_sym_pub] = ACTIONS(2177), + [anon_sym_return] = ACTIONS(2177), + [anon_sym_static] = ACTIONS(2177), + [anon_sym_struct] = ACTIONS(2177), + [anon_sym_trait] = ACTIONS(2177), + [anon_sym_type] = ACTIONS(2177), + [anon_sym_union] = ACTIONS(2177), + [anon_sym_unsafe] = ACTIONS(2177), + [anon_sym_use] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2177), + [anon_sym_extern] = ACTIONS(2177), + [anon_sym_yield] = ACTIONS(2177), + [anon_sym_move] = ACTIONS(2177), + [anon_sym_try] = ACTIONS(2177), + [sym_integer_literal] = ACTIONS(2175), + [aux_sym_string_literal_token1] = ACTIONS(2175), + [sym_char_literal] = ACTIONS(2175), + [anon_sym_true] = ACTIONS(2177), + [anon_sym_false] = ACTIONS(2177), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2177), + [sym_super] = ACTIONS(2177), + [sym_crate] = ACTIONS(2177), + [sym_metavariable] = ACTIONS(2175), + [sym__raw_string_literal_start] = ACTIONS(2175), + [sym_float_literal] = ACTIONS(2175), }, [STATE(595)] = { [sym_line_comment] = STATE(595), [sym_block_comment] = STATE(595), - [ts_builtin_sym_end] = ACTIONS(2201), - [sym_identifier] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2201), - [anon_sym_macro_rules_BANG] = ACTIONS(2201), - [anon_sym_LPAREN] = ACTIONS(2201), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2201), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_u8] = ACTIONS(2203), - [anon_sym_i8] = ACTIONS(2203), - [anon_sym_u16] = ACTIONS(2203), - [anon_sym_i16] = ACTIONS(2203), - [anon_sym_u32] = ACTIONS(2203), - [anon_sym_i32] = ACTIONS(2203), - [anon_sym_u64] = ACTIONS(2203), - [anon_sym_i64] = ACTIONS(2203), - [anon_sym_u128] = ACTIONS(2203), - [anon_sym_i128] = ACTIONS(2203), - [anon_sym_isize] = ACTIONS(2203), - [anon_sym_usize] = ACTIONS(2203), - [anon_sym_f32] = ACTIONS(2203), - [anon_sym_f64] = ACTIONS(2203), - [anon_sym_bool] = ACTIONS(2203), - [anon_sym_str] = ACTIONS(2203), - [anon_sym_char] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2201), - [anon_sym_BANG] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_PIPE] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2201), - [anon_sym_DOT_DOT] = ACTIONS(2201), - [anon_sym_COLON_COLON] = ACTIONS(2201), - [anon_sym_POUND] = ACTIONS(2201), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [anon_sym_fn] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_gen] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_impl] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_loop] = ACTIONS(2203), - [anon_sym_match] = ACTIONS(2203), - [anon_sym_mod] = ACTIONS(2203), - [anon_sym_pub] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_struct] = ACTIONS(2203), - [anon_sym_trait] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_union] = ACTIONS(2203), - [anon_sym_unsafe] = ACTIONS(2203), - [anon_sym_use] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_extern] = ACTIONS(2203), - [anon_sym_yield] = ACTIONS(2203), - [anon_sym_move] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2203), - [sym_integer_literal] = ACTIONS(2201), - [aux_sym_string_literal_token1] = ACTIONS(2201), - [sym_char_literal] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(2203), - [anon_sym_false] = ACTIONS(2203), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_crate] = ACTIONS(2203), - [sym_metavariable] = ACTIONS(2201), - [sym__raw_string_literal_start] = ACTIONS(2201), - [sym_float_literal] = ACTIONS(2201), + [ts_builtin_sym_end] = ACTIONS(2179), + [sym_identifier] = ACTIONS(2181), + [anon_sym_SEMI] = ACTIONS(2179), + [anon_sym_macro_rules_BANG] = ACTIONS(2179), + [anon_sym_LPAREN] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2179), + [anon_sym_STAR] = ACTIONS(2179), + [anon_sym_u8] = ACTIONS(2181), + [anon_sym_i8] = ACTIONS(2181), + [anon_sym_u16] = ACTIONS(2181), + [anon_sym_i16] = ACTIONS(2181), + [anon_sym_u32] = ACTIONS(2181), + [anon_sym_i32] = ACTIONS(2181), + [anon_sym_u64] = ACTIONS(2181), + [anon_sym_i64] = ACTIONS(2181), + [anon_sym_u128] = ACTIONS(2181), + [anon_sym_i128] = ACTIONS(2181), + [anon_sym_isize] = ACTIONS(2181), + [anon_sym_usize] = ACTIONS(2181), + [anon_sym_f32] = ACTIONS(2181), + [anon_sym_f64] = ACTIONS(2181), + [anon_sym_bool] = ACTIONS(2181), + [anon_sym_str] = ACTIONS(2181), + [anon_sym_char] = ACTIONS(2181), + [anon_sym_DASH] = ACTIONS(2179), + [anon_sym_BANG] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2179), + [anon_sym_LT] = ACTIONS(2179), + [anon_sym_DOT_DOT] = ACTIONS(2179), + [anon_sym_COLON_COLON] = ACTIONS(2179), + [anon_sym_POUND] = ACTIONS(2179), + [anon_sym_SQUOTE] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2181), + [anon_sym_break] = ACTIONS(2181), + [anon_sym_const] = ACTIONS(2181), + [anon_sym_continue] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2181), + [anon_sym_enum] = ACTIONS(2181), + [anon_sym_fn] = ACTIONS(2181), + [anon_sym_for] = ACTIONS(2181), + [anon_sym_gen] = ACTIONS(2181), + [anon_sym_if] = ACTIONS(2181), + [anon_sym_impl] = ACTIONS(2181), + [anon_sym_let] = ACTIONS(2181), + [anon_sym_loop] = ACTIONS(2181), + [anon_sym_match] = ACTIONS(2181), + [anon_sym_mod] = ACTIONS(2181), + [anon_sym_pub] = ACTIONS(2181), + [anon_sym_return] = ACTIONS(2181), + [anon_sym_static] = ACTIONS(2181), + [anon_sym_struct] = ACTIONS(2181), + [anon_sym_trait] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2181), + [anon_sym_union] = ACTIONS(2181), + [anon_sym_unsafe] = ACTIONS(2181), + [anon_sym_use] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2181), + [anon_sym_extern] = ACTIONS(2181), + [anon_sym_yield] = ACTIONS(2181), + [anon_sym_move] = ACTIONS(2181), + [anon_sym_try] = ACTIONS(2181), + [sym_integer_literal] = ACTIONS(2179), + [aux_sym_string_literal_token1] = ACTIONS(2179), + [sym_char_literal] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(2181), + [anon_sym_false] = ACTIONS(2181), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2181), + [sym_super] = ACTIONS(2181), + [sym_crate] = ACTIONS(2181), + [sym_metavariable] = ACTIONS(2179), + [sym__raw_string_literal_start] = ACTIONS(2179), + [sym_float_literal] = ACTIONS(2179), }, [STATE(596)] = { [sym_line_comment] = STATE(596), [sym_block_comment] = STATE(596), - [ts_builtin_sym_end] = ACTIONS(2205), - [sym_identifier] = ACTIONS(2207), - [anon_sym_SEMI] = ACTIONS(2205), - [anon_sym_macro_rules_BANG] = ACTIONS(2205), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_LBRACK] = ACTIONS(2205), - [anon_sym_LBRACE] = ACTIONS(2205), - [anon_sym_RBRACE] = ACTIONS(2205), - [anon_sym_STAR] = ACTIONS(2205), - [anon_sym_u8] = ACTIONS(2207), - [anon_sym_i8] = ACTIONS(2207), - [anon_sym_u16] = ACTIONS(2207), - [anon_sym_i16] = ACTIONS(2207), - [anon_sym_u32] = ACTIONS(2207), - [anon_sym_i32] = ACTIONS(2207), - [anon_sym_u64] = ACTIONS(2207), - [anon_sym_i64] = ACTIONS(2207), - [anon_sym_u128] = ACTIONS(2207), - [anon_sym_i128] = ACTIONS(2207), - [anon_sym_isize] = ACTIONS(2207), - [anon_sym_usize] = ACTIONS(2207), - [anon_sym_f32] = ACTIONS(2207), - [anon_sym_f64] = ACTIONS(2207), - [anon_sym_bool] = ACTIONS(2207), - [anon_sym_str] = ACTIONS(2207), - [anon_sym_char] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2205), - [anon_sym_BANG] = ACTIONS(2205), - [anon_sym_AMP] = ACTIONS(2205), - [anon_sym_PIPE] = ACTIONS(2205), - [anon_sym_LT] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2205), - [anon_sym_COLON_COLON] = ACTIONS(2205), - [anon_sym_POUND] = ACTIONS(2205), - [anon_sym_SQUOTE] = ACTIONS(2207), - [anon_sym_async] = ACTIONS(2207), - [anon_sym_break] = ACTIONS(2207), - [anon_sym_const] = ACTIONS(2207), - [anon_sym_continue] = ACTIONS(2207), - [anon_sym_default] = ACTIONS(2207), - [anon_sym_enum] = ACTIONS(2207), - [anon_sym_fn] = ACTIONS(2207), - [anon_sym_for] = ACTIONS(2207), - [anon_sym_gen] = ACTIONS(2207), - [anon_sym_if] = ACTIONS(2207), - [anon_sym_impl] = ACTIONS(2207), - [anon_sym_let] = ACTIONS(2207), - [anon_sym_loop] = ACTIONS(2207), - [anon_sym_match] = ACTIONS(2207), - [anon_sym_mod] = ACTIONS(2207), - [anon_sym_pub] = ACTIONS(2207), - [anon_sym_return] = ACTIONS(2207), - [anon_sym_static] = ACTIONS(2207), - [anon_sym_struct] = ACTIONS(2207), - [anon_sym_trait] = ACTIONS(2207), - [anon_sym_type] = ACTIONS(2207), - [anon_sym_union] = ACTIONS(2207), - [anon_sym_unsafe] = ACTIONS(2207), - [anon_sym_use] = ACTIONS(2207), - [anon_sym_while] = ACTIONS(2207), - [anon_sym_extern] = ACTIONS(2207), - [anon_sym_yield] = ACTIONS(2207), - [anon_sym_move] = ACTIONS(2207), - [anon_sym_try] = ACTIONS(2207), - [sym_integer_literal] = ACTIONS(2205), - [aux_sym_string_literal_token1] = ACTIONS(2205), - [sym_char_literal] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(2207), - [anon_sym_false] = ACTIONS(2207), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2207), - [sym_super] = ACTIONS(2207), - [sym_crate] = ACTIONS(2207), - [sym_metavariable] = ACTIONS(2205), - [sym__raw_string_literal_start] = ACTIONS(2205), - [sym_float_literal] = ACTIONS(2205), + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2185), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_macro_rules_BANG] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_u8] = ACTIONS(2185), + [anon_sym_i8] = ACTIONS(2185), + [anon_sym_u16] = ACTIONS(2185), + [anon_sym_i16] = ACTIONS(2185), + [anon_sym_u32] = ACTIONS(2185), + [anon_sym_i32] = ACTIONS(2185), + [anon_sym_u64] = ACTIONS(2185), + [anon_sym_i64] = ACTIONS(2185), + [anon_sym_u128] = ACTIONS(2185), + [anon_sym_i128] = ACTIONS(2185), + [anon_sym_isize] = ACTIONS(2185), + [anon_sym_usize] = ACTIONS(2185), + [anon_sym_f32] = ACTIONS(2185), + [anon_sym_f64] = ACTIONS(2185), + [anon_sym_bool] = ACTIONS(2185), + [anon_sym_str] = ACTIONS(2185), + [anon_sym_char] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_PIPE] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_COLON_COLON] = ACTIONS(2183), + [anon_sym_POUND] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_break] = ACTIONS(2185), + [anon_sym_const] = ACTIONS(2185), + [anon_sym_continue] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [anon_sym_fn] = ACTIONS(2185), + [anon_sym_for] = ACTIONS(2185), + [anon_sym_gen] = ACTIONS(2185), + [anon_sym_if] = ACTIONS(2185), + [anon_sym_impl] = ACTIONS(2185), + [anon_sym_let] = ACTIONS(2185), + [anon_sym_loop] = ACTIONS(2185), + [anon_sym_match] = ACTIONS(2185), + [anon_sym_mod] = ACTIONS(2185), + [anon_sym_pub] = ACTIONS(2185), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_static] = ACTIONS(2185), + [anon_sym_struct] = ACTIONS(2185), + [anon_sym_trait] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_union] = ACTIONS(2185), + [anon_sym_unsafe] = ACTIONS(2185), + [anon_sym_use] = ACTIONS(2185), + [anon_sym_while] = ACTIONS(2185), + [anon_sym_extern] = ACTIONS(2185), + [anon_sym_yield] = ACTIONS(2185), + [anon_sym_move] = ACTIONS(2185), + [anon_sym_try] = ACTIONS(2185), + [sym_integer_literal] = ACTIONS(2183), + [aux_sym_string_literal_token1] = ACTIONS(2183), + [sym_char_literal] = ACTIONS(2183), + [anon_sym_true] = ACTIONS(2185), + [anon_sym_false] = ACTIONS(2185), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2185), + [sym_super] = ACTIONS(2185), + [sym_crate] = ACTIONS(2185), + [sym_metavariable] = ACTIONS(2183), + [sym__raw_string_literal_start] = ACTIONS(2183), + [sym_float_literal] = ACTIONS(2183), }, [STATE(597)] = { [sym_line_comment] = STATE(597), [sym_block_comment] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2209), - [sym_identifier] = ACTIONS(2211), - [anon_sym_SEMI] = ACTIONS(2209), - [anon_sym_macro_rules_BANG] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2209), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2209), - [anon_sym_RBRACE] = ACTIONS(2209), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_u8] = ACTIONS(2211), - [anon_sym_i8] = ACTIONS(2211), - [anon_sym_u16] = ACTIONS(2211), - [anon_sym_i16] = ACTIONS(2211), - [anon_sym_u32] = ACTIONS(2211), - [anon_sym_i32] = ACTIONS(2211), - [anon_sym_u64] = ACTIONS(2211), - [anon_sym_i64] = ACTIONS(2211), - [anon_sym_u128] = ACTIONS(2211), - [anon_sym_i128] = ACTIONS(2211), - [anon_sym_isize] = ACTIONS(2211), - [anon_sym_usize] = ACTIONS(2211), - [anon_sym_f32] = ACTIONS(2211), - [anon_sym_f64] = ACTIONS(2211), - [anon_sym_bool] = ACTIONS(2211), - [anon_sym_str] = ACTIONS(2211), - [anon_sym_char] = ACTIONS(2211), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_BANG] = ACTIONS(2209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), - [anon_sym_LT] = ACTIONS(2209), - [anon_sym_DOT_DOT] = ACTIONS(2209), - [anon_sym_COLON_COLON] = ACTIONS(2209), - [anon_sym_POUND] = ACTIONS(2209), - [anon_sym_SQUOTE] = ACTIONS(2211), - [anon_sym_async] = ACTIONS(2211), - [anon_sym_break] = ACTIONS(2211), - [anon_sym_const] = ACTIONS(2211), - [anon_sym_continue] = ACTIONS(2211), - [anon_sym_default] = ACTIONS(2211), - [anon_sym_enum] = ACTIONS(2211), - [anon_sym_fn] = ACTIONS(2211), - [anon_sym_for] = ACTIONS(2211), - [anon_sym_gen] = ACTIONS(2211), - [anon_sym_if] = ACTIONS(2211), - [anon_sym_impl] = ACTIONS(2211), - [anon_sym_let] = ACTIONS(2211), - [anon_sym_loop] = ACTIONS(2211), - [anon_sym_match] = ACTIONS(2211), - [anon_sym_mod] = ACTIONS(2211), - [anon_sym_pub] = ACTIONS(2211), - [anon_sym_return] = ACTIONS(2211), - [anon_sym_static] = ACTIONS(2211), - [anon_sym_struct] = ACTIONS(2211), - [anon_sym_trait] = ACTIONS(2211), - [anon_sym_type] = ACTIONS(2211), - [anon_sym_union] = ACTIONS(2211), - [anon_sym_unsafe] = ACTIONS(2211), - [anon_sym_use] = ACTIONS(2211), - [anon_sym_while] = ACTIONS(2211), - [anon_sym_extern] = ACTIONS(2211), - [anon_sym_yield] = ACTIONS(2211), - [anon_sym_move] = ACTIONS(2211), - [anon_sym_try] = ACTIONS(2211), - [sym_integer_literal] = ACTIONS(2209), - [aux_sym_string_literal_token1] = ACTIONS(2209), - [sym_char_literal] = ACTIONS(2209), - [anon_sym_true] = ACTIONS(2211), - [anon_sym_false] = ACTIONS(2211), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2211), - [sym_super] = ACTIONS(2211), - [sym_crate] = ACTIONS(2211), - [sym_metavariable] = ACTIONS(2209), - [sym__raw_string_literal_start] = ACTIONS(2209), - [sym_float_literal] = ACTIONS(2209), + [ts_builtin_sym_end] = ACTIONS(2187), + [sym_identifier] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2187), + [anon_sym_macro_rules_BANG] = ACTIONS(2187), + [anon_sym_LPAREN] = ACTIONS(2187), + [anon_sym_LBRACK] = ACTIONS(2187), + [anon_sym_LBRACE] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2187), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_u8] = ACTIONS(2189), + [anon_sym_i8] = ACTIONS(2189), + [anon_sym_u16] = ACTIONS(2189), + [anon_sym_i16] = ACTIONS(2189), + [anon_sym_u32] = ACTIONS(2189), + [anon_sym_i32] = ACTIONS(2189), + [anon_sym_u64] = ACTIONS(2189), + [anon_sym_i64] = ACTIONS(2189), + [anon_sym_u128] = ACTIONS(2189), + [anon_sym_i128] = ACTIONS(2189), + [anon_sym_isize] = ACTIONS(2189), + [anon_sym_usize] = ACTIONS(2189), + [anon_sym_f32] = ACTIONS(2189), + [anon_sym_f64] = ACTIONS(2189), + [anon_sym_bool] = ACTIONS(2189), + [anon_sym_str] = ACTIONS(2189), + [anon_sym_char] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2187), + [anon_sym_BANG] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_LT] = ACTIONS(2187), + [anon_sym_DOT_DOT] = ACTIONS(2187), + [anon_sym_COLON_COLON] = ACTIONS(2187), + [anon_sym_POUND] = ACTIONS(2187), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [anon_sym_fn] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_gen] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_impl] = ACTIONS(2189), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_loop] = ACTIONS(2189), + [anon_sym_match] = ACTIONS(2189), + [anon_sym_mod] = ACTIONS(2189), + [anon_sym_pub] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_struct] = ACTIONS(2189), + [anon_sym_trait] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_union] = ACTIONS(2189), + [anon_sym_unsafe] = ACTIONS(2189), + [anon_sym_use] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_extern] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_move] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [sym_integer_literal] = ACTIONS(2187), + [aux_sym_string_literal_token1] = ACTIONS(2187), + [sym_char_literal] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(2189), + [anon_sym_false] = ACTIONS(2189), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2189), + [sym_super] = ACTIONS(2189), + [sym_crate] = ACTIONS(2189), + [sym_metavariable] = ACTIONS(2187), + [sym__raw_string_literal_start] = ACTIONS(2187), + [sym_float_literal] = ACTIONS(2187), }, [STATE(598)] = { [sym_line_comment] = STATE(598), [sym_block_comment] = STATE(598), - [ts_builtin_sym_end] = ACTIONS(2213), - [sym_identifier] = ACTIONS(2215), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_macro_rules_BANG] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2213), - [anon_sym_u8] = ACTIONS(2215), - [anon_sym_i8] = ACTIONS(2215), - [anon_sym_u16] = ACTIONS(2215), - [anon_sym_i16] = ACTIONS(2215), - [anon_sym_u32] = ACTIONS(2215), - [anon_sym_i32] = ACTIONS(2215), - [anon_sym_u64] = ACTIONS(2215), - [anon_sym_i64] = ACTIONS(2215), - [anon_sym_u128] = ACTIONS(2215), - [anon_sym_i128] = ACTIONS(2215), - [anon_sym_isize] = ACTIONS(2215), - [anon_sym_usize] = ACTIONS(2215), - [anon_sym_f32] = ACTIONS(2215), - [anon_sym_f64] = ACTIONS(2215), - [anon_sym_bool] = ACTIONS(2215), - [anon_sym_str] = ACTIONS(2215), - [anon_sym_char] = ACTIONS(2215), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(2213), - [anon_sym_PIPE] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_DOT_DOT] = ACTIONS(2213), - [anon_sym_COLON_COLON] = ACTIONS(2213), - [anon_sym_POUND] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2215), - [anon_sym_async] = ACTIONS(2215), - [anon_sym_break] = ACTIONS(2215), - [anon_sym_const] = ACTIONS(2215), - [anon_sym_continue] = ACTIONS(2215), - [anon_sym_default] = ACTIONS(2215), - [anon_sym_enum] = ACTIONS(2215), - [anon_sym_fn] = ACTIONS(2215), - [anon_sym_for] = ACTIONS(2215), - [anon_sym_gen] = ACTIONS(2215), - [anon_sym_if] = ACTIONS(2215), - [anon_sym_impl] = ACTIONS(2215), - [anon_sym_let] = ACTIONS(2215), - [anon_sym_loop] = ACTIONS(2215), - [anon_sym_match] = ACTIONS(2215), - [anon_sym_mod] = ACTIONS(2215), - [anon_sym_pub] = ACTIONS(2215), - [anon_sym_return] = ACTIONS(2215), - [anon_sym_static] = ACTIONS(2215), - [anon_sym_struct] = ACTIONS(2215), - [anon_sym_trait] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2215), - [anon_sym_union] = ACTIONS(2215), - [anon_sym_unsafe] = ACTIONS(2215), - [anon_sym_use] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2215), - [anon_sym_extern] = ACTIONS(2215), - [anon_sym_yield] = ACTIONS(2215), - [anon_sym_move] = ACTIONS(2215), - [anon_sym_try] = ACTIONS(2215), - [sym_integer_literal] = ACTIONS(2213), - [aux_sym_string_literal_token1] = ACTIONS(2213), - [sym_char_literal] = ACTIONS(2213), - [anon_sym_true] = ACTIONS(2215), - [anon_sym_false] = ACTIONS(2215), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2215), - [sym_super] = ACTIONS(2215), - [sym_crate] = ACTIONS(2215), - [sym_metavariable] = ACTIONS(2213), - [sym__raw_string_literal_start] = ACTIONS(2213), - [sym_float_literal] = ACTIONS(2213), + [ts_builtin_sym_end] = ACTIONS(2191), + [sym_identifier] = ACTIONS(2193), + [anon_sym_SEMI] = ACTIONS(2191), + [anon_sym_macro_rules_BANG] = ACTIONS(2191), + [anon_sym_LPAREN] = ACTIONS(2191), + [anon_sym_LBRACK] = ACTIONS(2191), + [anon_sym_LBRACE] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2191), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_u8] = ACTIONS(2193), + [anon_sym_i8] = ACTIONS(2193), + [anon_sym_u16] = ACTIONS(2193), + [anon_sym_i16] = ACTIONS(2193), + [anon_sym_u32] = ACTIONS(2193), + [anon_sym_i32] = ACTIONS(2193), + [anon_sym_u64] = ACTIONS(2193), + [anon_sym_i64] = ACTIONS(2193), + [anon_sym_u128] = ACTIONS(2193), + [anon_sym_i128] = ACTIONS(2193), + [anon_sym_isize] = ACTIONS(2193), + [anon_sym_usize] = ACTIONS(2193), + [anon_sym_f32] = ACTIONS(2193), + [anon_sym_f64] = ACTIONS(2193), + [anon_sym_bool] = ACTIONS(2193), + [anon_sym_str] = ACTIONS(2193), + [anon_sym_char] = ACTIONS(2193), + [anon_sym_DASH] = ACTIONS(2191), + [anon_sym_BANG] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2191), + [anon_sym_DOT_DOT] = ACTIONS(2191), + [anon_sym_COLON_COLON] = ACTIONS(2191), + [anon_sym_POUND] = ACTIONS(2191), + [anon_sym_SQUOTE] = ACTIONS(2193), + [anon_sym_async] = ACTIONS(2193), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_const] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_default] = ACTIONS(2193), + [anon_sym_enum] = ACTIONS(2193), + [anon_sym_fn] = ACTIONS(2193), + [anon_sym_for] = ACTIONS(2193), + [anon_sym_gen] = ACTIONS(2193), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_impl] = ACTIONS(2193), + [anon_sym_let] = ACTIONS(2193), + [anon_sym_loop] = ACTIONS(2193), + [anon_sym_match] = ACTIONS(2193), + [anon_sym_mod] = ACTIONS(2193), + [anon_sym_pub] = ACTIONS(2193), + [anon_sym_return] = ACTIONS(2193), + [anon_sym_static] = ACTIONS(2193), + [anon_sym_struct] = ACTIONS(2193), + [anon_sym_trait] = ACTIONS(2193), + [anon_sym_type] = ACTIONS(2193), + [anon_sym_union] = ACTIONS(2193), + [anon_sym_unsafe] = ACTIONS(2193), + [anon_sym_use] = ACTIONS(2193), + [anon_sym_while] = ACTIONS(2193), + [anon_sym_extern] = ACTIONS(2193), + [anon_sym_yield] = ACTIONS(2193), + [anon_sym_move] = ACTIONS(2193), + [anon_sym_try] = ACTIONS(2193), + [sym_integer_literal] = ACTIONS(2191), + [aux_sym_string_literal_token1] = ACTIONS(2191), + [sym_char_literal] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(2193), + [anon_sym_false] = ACTIONS(2193), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2193), + [sym_super] = ACTIONS(2193), + [sym_crate] = ACTIONS(2193), + [sym_metavariable] = ACTIONS(2191), + [sym__raw_string_literal_start] = ACTIONS(2191), + [sym_float_literal] = ACTIONS(2191), }, [STATE(599)] = { [sym_line_comment] = STATE(599), [sym_block_comment] = STATE(599), - [ts_builtin_sym_end] = ACTIONS(2217), - [sym_identifier] = ACTIONS(2219), - [anon_sym_SEMI] = ACTIONS(2217), - [anon_sym_macro_rules_BANG] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_LBRACK] = ACTIONS(2217), - [anon_sym_LBRACE] = ACTIONS(2217), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_STAR] = ACTIONS(2217), - [anon_sym_u8] = ACTIONS(2219), - [anon_sym_i8] = ACTIONS(2219), - [anon_sym_u16] = ACTIONS(2219), - [anon_sym_i16] = ACTIONS(2219), - [anon_sym_u32] = ACTIONS(2219), - [anon_sym_i32] = ACTIONS(2219), - [anon_sym_u64] = ACTIONS(2219), - [anon_sym_i64] = ACTIONS(2219), - [anon_sym_u128] = ACTIONS(2219), - [anon_sym_i128] = ACTIONS(2219), - [anon_sym_isize] = ACTIONS(2219), - [anon_sym_usize] = ACTIONS(2219), - [anon_sym_f32] = ACTIONS(2219), - [anon_sym_f64] = ACTIONS(2219), - [anon_sym_bool] = ACTIONS(2219), - [anon_sym_str] = ACTIONS(2219), - [anon_sym_char] = ACTIONS(2219), - [anon_sym_DASH] = ACTIONS(2217), - [anon_sym_BANG] = ACTIONS(2217), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_PIPE] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(2217), - [anon_sym_DOT_DOT] = ACTIONS(2217), - [anon_sym_COLON_COLON] = ACTIONS(2217), - [anon_sym_POUND] = ACTIONS(2217), - [anon_sym_SQUOTE] = ACTIONS(2219), - [anon_sym_async] = ACTIONS(2219), - [anon_sym_break] = ACTIONS(2219), - [anon_sym_const] = ACTIONS(2219), - [anon_sym_continue] = ACTIONS(2219), - [anon_sym_default] = ACTIONS(2219), - [anon_sym_enum] = ACTIONS(2219), - [anon_sym_fn] = ACTIONS(2219), - [anon_sym_for] = ACTIONS(2219), - [anon_sym_gen] = ACTIONS(2219), - [anon_sym_if] = ACTIONS(2219), - [anon_sym_impl] = ACTIONS(2219), - [anon_sym_let] = ACTIONS(2219), - [anon_sym_loop] = ACTIONS(2219), - [anon_sym_match] = ACTIONS(2219), - [anon_sym_mod] = ACTIONS(2219), - [anon_sym_pub] = ACTIONS(2219), - [anon_sym_return] = ACTIONS(2219), - [anon_sym_static] = ACTIONS(2219), - [anon_sym_struct] = ACTIONS(2219), - [anon_sym_trait] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2219), - [anon_sym_union] = ACTIONS(2219), - [anon_sym_unsafe] = ACTIONS(2219), - [anon_sym_use] = ACTIONS(2219), - [anon_sym_while] = ACTIONS(2219), - [anon_sym_extern] = ACTIONS(2219), - [anon_sym_yield] = ACTIONS(2219), - [anon_sym_move] = ACTIONS(2219), - [anon_sym_try] = ACTIONS(2219), - [sym_integer_literal] = ACTIONS(2217), - [aux_sym_string_literal_token1] = ACTIONS(2217), - [sym_char_literal] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(2219), - [anon_sym_false] = ACTIONS(2219), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2219), - [sym_super] = ACTIONS(2219), - [sym_crate] = ACTIONS(2219), - [sym_metavariable] = ACTIONS(2217), - [sym__raw_string_literal_start] = ACTIONS(2217), - [sym_float_literal] = ACTIONS(2217), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2195), + [anon_sym_macro_rules_BANG] = ACTIONS(2195), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_LBRACK] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_RBRACE] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2195), + [anon_sym_u8] = ACTIONS(2197), + [anon_sym_i8] = ACTIONS(2197), + [anon_sym_u16] = ACTIONS(2197), + [anon_sym_i16] = ACTIONS(2197), + [anon_sym_u32] = ACTIONS(2197), + [anon_sym_i32] = ACTIONS(2197), + [anon_sym_u64] = ACTIONS(2197), + [anon_sym_i64] = ACTIONS(2197), + [anon_sym_u128] = ACTIONS(2197), + [anon_sym_i128] = ACTIONS(2197), + [anon_sym_isize] = ACTIONS(2197), + [anon_sym_usize] = ACTIONS(2197), + [anon_sym_f32] = ACTIONS(2197), + [anon_sym_f64] = ACTIONS(2197), + [anon_sym_bool] = ACTIONS(2197), + [anon_sym_str] = ACTIONS(2197), + [anon_sym_char] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_BANG] = ACTIONS(2195), + [anon_sym_AMP] = ACTIONS(2195), + [anon_sym_PIPE] = ACTIONS(2195), + [anon_sym_LT] = ACTIONS(2195), + [anon_sym_DOT_DOT] = ACTIONS(2195), + [anon_sym_COLON_COLON] = ACTIONS(2195), + [anon_sym_POUND] = ACTIONS(2195), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [anon_sym_fn] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_gen] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_impl] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_loop] = ACTIONS(2197), + [anon_sym_match] = ACTIONS(2197), + [anon_sym_mod] = ACTIONS(2197), + [anon_sym_pub] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_struct] = ACTIONS(2197), + [anon_sym_trait] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_union] = ACTIONS(2197), + [anon_sym_unsafe] = ACTIONS(2197), + [anon_sym_use] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_extern] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_move] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [sym_integer_literal] = ACTIONS(2195), + [aux_sym_string_literal_token1] = ACTIONS(2195), + [sym_char_literal] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(2197), + [anon_sym_false] = ACTIONS(2197), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_crate] = ACTIONS(2197), + [sym_metavariable] = ACTIONS(2195), + [sym__raw_string_literal_start] = ACTIONS(2195), + [sym_float_literal] = ACTIONS(2195), }, [STATE(600)] = { [sym_line_comment] = STATE(600), [sym_block_comment] = STATE(600), - [ts_builtin_sym_end] = ACTIONS(2221), - [sym_identifier] = ACTIONS(2223), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_macro_rules_BANG] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2221), - [anon_sym_u8] = ACTIONS(2223), - [anon_sym_i8] = ACTIONS(2223), - [anon_sym_u16] = ACTIONS(2223), - [anon_sym_i16] = ACTIONS(2223), - [anon_sym_u32] = ACTIONS(2223), - [anon_sym_i32] = ACTIONS(2223), - [anon_sym_u64] = ACTIONS(2223), - [anon_sym_i64] = ACTIONS(2223), - [anon_sym_u128] = ACTIONS(2223), - [anon_sym_i128] = ACTIONS(2223), - [anon_sym_isize] = ACTIONS(2223), - [anon_sym_usize] = ACTIONS(2223), - [anon_sym_f32] = ACTIONS(2223), - [anon_sym_f64] = ACTIONS(2223), - [anon_sym_bool] = ACTIONS(2223), - [anon_sym_str] = ACTIONS(2223), - [anon_sym_char] = ACTIONS(2223), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_AMP] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_DOT_DOT] = ACTIONS(2221), - [anon_sym_COLON_COLON] = ACTIONS(2221), - [anon_sym_POUND] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2223), - [anon_sym_async] = ACTIONS(2223), - [anon_sym_break] = ACTIONS(2223), - [anon_sym_const] = ACTIONS(2223), - [anon_sym_continue] = ACTIONS(2223), - [anon_sym_default] = ACTIONS(2223), - [anon_sym_enum] = ACTIONS(2223), - [anon_sym_fn] = ACTIONS(2223), - [anon_sym_for] = ACTIONS(2223), - [anon_sym_gen] = ACTIONS(2223), - [anon_sym_if] = ACTIONS(2223), - [anon_sym_impl] = ACTIONS(2223), - [anon_sym_let] = ACTIONS(2223), - [anon_sym_loop] = ACTIONS(2223), - [anon_sym_match] = ACTIONS(2223), - [anon_sym_mod] = ACTIONS(2223), - [anon_sym_pub] = ACTIONS(2223), - [anon_sym_return] = ACTIONS(2223), - [anon_sym_static] = ACTIONS(2223), - [anon_sym_struct] = ACTIONS(2223), - [anon_sym_trait] = ACTIONS(2223), - [anon_sym_type] = ACTIONS(2223), - [anon_sym_union] = ACTIONS(2223), - [anon_sym_unsafe] = ACTIONS(2223), - [anon_sym_use] = ACTIONS(2223), - [anon_sym_while] = ACTIONS(2223), - [anon_sym_extern] = ACTIONS(2223), - [anon_sym_yield] = ACTIONS(2223), - [anon_sym_move] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2223), - [sym_integer_literal] = ACTIONS(2221), - [aux_sym_string_literal_token1] = ACTIONS(2221), - [sym_char_literal] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(2223), - [anon_sym_false] = ACTIONS(2223), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2223), - [sym_super] = ACTIONS(2223), - [sym_crate] = ACTIONS(2223), - [sym_metavariable] = ACTIONS(2221), - [sym__raw_string_literal_start] = ACTIONS(2221), - [sym_float_literal] = ACTIONS(2221), + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2201), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_macro_rules_BANG] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2199), + [anon_sym_LBRACK] = ACTIONS(2199), + [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2199), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_u8] = ACTIONS(2201), + [anon_sym_i8] = ACTIONS(2201), + [anon_sym_u16] = ACTIONS(2201), + [anon_sym_i16] = ACTIONS(2201), + [anon_sym_u32] = ACTIONS(2201), + [anon_sym_i32] = ACTIONS(2201), + [anon_sym_u64] = ACTIONS(2201), + [anon_sym_i64] = ACTIONS(2201), + [anon_sym_u128] = ACTIONS(2201), + [anon_sym_i128] = ACTIONS(2201), + [anon_sym_isize] = ACTIONS(2201), + [anon_sym_usize] = ACTIONS(2201), + [anon_sym_f32] = ACTIONS(2201), + [anon_sym_f64] = ACTIONS(2201), + [anon_sym_bool] = ACTIONS(2201), + [anon_sym_str] = ACTIONS(2201), + [anon_sym_char] = ACTIONS(2201), + [anon_sym_DASH] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2199), + [anon_sym_COLON_COLON] = ACTIONS(2199), + [anon_sym_POUND] = ACTIONS(2199), + [anon_sym_SQUOTE] = ACTIONS(2201), + [anon_sym_async] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2201), + [anon_sym_const] = ACTIONS(2201), + [anon_sym_continue] = ACTIONS(2201), + [anon_sym_default] = ACTIONS(2201), + [anon_sym_enum] = ACTIONS(2201), + [anon_sym_fn] = ACTIONS(2201), + [anon_sym_for] = ACTIONS(2201), + [anon_sym_gen] = ACTIONS(2201), + [anon_sym_if] = ACTIONS(2201), + [anon_sym_impl] = ACTIONS(2201), + [anon_sym_let] = ACTIONS(2201), + [anon_sym_loop] = ACTIONS(2201), + [anon_sym_match] = ACTIONS(2201), + [anon_sym_mod] = ACTIONS(2201), + [anon_sym_pub] = ACTIONS(2201), + [anon_sym_return] = ACTIONS(2201), + [anon_sym_static] = ACTIONS(2201), + [anon_sym_struct] = ACTIONS(2201), + [anon_sym_trait] = ACTIONS(2201), + [anon_sym_type] = ACTIONS(2201), + [anon_sym_union] = ACTIONS(2201), + [anon_sym_unsafe] = ACTIONS(2201), + [anon_sym_use] = ACTIONS(2201), + [anon_sym_while] = ACTIONS(2201), + [anon_sym_extern] = ACTIONS(2201), + [anon_sym_yield] = ACTIONS(2201), + [anon_sym_move] = ACTIONS(2201), + [anon_sym_try] = ACTIONS(2201), + [sym_integer_literal] = ACTIONS(2199), + [aux_sym_string_literal_token1] = ACTIONS(2199), + [sym_char_literal] = ACTIONS(2199), + [anon_sym_true] = ACTIONS(2201), + [anon_sym_false] = ACTIONS(2201), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2201), + [sym_super] = ACTIONS(2201), + [sym_crate] = ACTIONS(2201), + [sym_metavariable] = ACTIONS(2199), + [sym__raw_string_literal_start] = ACTIONS(2199), + [sym_float_literal] = ACTIONS(2199), }, [STATE(601)] = { [sym_line_comment] = STATE(601), [sym_block_comment] = STATE(601), - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_identifier] = ACTIONS(2227), - [anon_sym_SEMI] = ACTIONS(2225), - [anon_sym_macro_rules_BANG] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_LBRACK] = ACTIONS(2225), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_STAR] = ACTIONS(2225), - [anon_sym_u8] = ACTIONS(2227), - [anon_sym_i8] = ACTIONS(2227), - [anon_sym_u16] = ACTIONS(2227), - [anon_sym_i16] = ACTIONS(2227), - [anon_sym_u32] = ACTIONS(2227), - [anon_sym_i32] = ACTIONS(2227), - [anon_sym_u64] = ACTIONS(2227), - [anon_sym_i64] = ACTIONS(2227), - [anon_sym_u128] = ACTIONS(2227), - [anon_sym_i128] = ACTIONS(2227), - [anon_sym_isize] = ACTIONS(2227), - [anon_sym_usize] = ACTIONS(2227), - [anon_sym_f32] = ACTIONS(2227), - [anon_sym_f64] = ACTIONS(2227), - [anon_sym_bool] = ACTIONS(2227), - [anon_sym_str] = ACTIONS(2227), - [anon_sym_char] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2225), - [anon_sym_BANG] = ACTIONS(2225), - [anon_sym_AMP] = ACTIONS(2225), - [anon_sym_PIPE] = ACTIONS(2225), - [anon_sym_LT] = ACTIONS(2225), - [anon_sym_DOT_DOT] = ACTIONS(2225), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_POUND] = ACTIONS(2225), - [anon_sym_SQUOTE] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_break] = ACTIONS(2227), - [anon_sym_const] = ACTIONS(2227), - [anon_sym_continue] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [anon_sym_fn] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_gen] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_impl] = ACTIONS(2227), - [anon_sym_let] = ACTIONS(2227), - [anon_sym_loop] = ACTIONS(2227), - [anon_sym_match] = ACTIONS(2227), - [anon_sym_mod] = ACTIONS(2227), - [anon_sym_pub] = ACTIONS(2227), - [anon_sym_return] = ACTIONS(2227), - [anon_sym_static] = ACTIONS(2227), - [anon_sym_struct] = ACTIONS(2227), - [anon_sym_trait] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_union] = ACTIONS(2227), - [anon_sym_unsafe] = ACTIONS(2227), - [anon_sym_use] = ACTIONS(2227), - [anon_sym_while] = ACTIONS(2227), - [anon_sym_extern] = ACTIONS(2227), - [anon_sym_yield] = ACTIONS(2227), - [anon_sym_move] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2227), - [sym_integer_literal] = ACTIONS(2225), - [aux_sym_string_literal_token1] = ACTIONS(2225), - [sym_char_literal] = ACTIONS(2225), - [anon_sym_true] = ACTIONS(2227), - [anon_sym_false] = ACTIONS(2227), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2227), - [sym_super] = ACTIONS(2227), - [sym_crate] = ACTIONS(2227), - [sym_metavariable] = ACTIONS(2225), - [sym__raw_string_literal_start] = ACTIONS(2225), - [sym_float_literal] = ACTIONS(2225), + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2203), + [anon_sym_macro_rules_BANG] = ACTIONS(2203), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(2203), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [anon_sym_STAR] = ACTIONS(2203), + [anon_sym_u8] = ACTIONS(2205), + [anon_sym_i8] = ACTIONS(2205), + [anon_sym_u16] = ACTIONS(2205), + [anon_sym_i16] = ACTIONS(2205), + [anon_sym_u32] = ACTIONS(2205), + [anon_sym_i32] = ACTIONS(2205), + [anon_sym_u64] = ACTIONS(2205), + [anon_sym_i64] = ACTIONS(2205), + [anon_sym_u128] = ACTIONS(2205), + [anon_sym_i128] = ACTIONS(2205), + [anon_sym_isize] = ACTIONS(2205), + [anon_sym_usize] = ACTIONS(2205), + [anon_sym_f32] = ACTIONS(2205), + [anon_sym_f64] = ACTIONS(2205), + [anon_sym_bool] = ACTIONS(2205), + [anon_sym_str] = ACTIONS(2205), + [anon_sym_char] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2203), + [anon_sym_BANG] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(2203), + [anon_sym_LT] = ACTIONS(2203), + [anon_sym_DOT_DOT] = ACTIONS(2203), + [anon_sym_COLON_COLON] = ACTIONS(2203), + [anon_sym_POUND] = ACTIONS(2203), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [anon_sym_fn] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_gen] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_impl] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_loop] = ACTIONS(2205), + [anon_sym_match] = ACTIONS(2205), + [anon_sym_mod] = ACTIONS(2205), + [anon_sym_pub] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_struct] = ACTIONS(2205), + [anon_sym_trait] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_union] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2205), + [anon_sym_use] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_extern] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_move] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [sym_integer_literal] = ACTIONS(2203), + [aux_sym_string_literal_token1] = ACTIONS(2203), + [sym_char_literal] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(2205), + [anon_sym_false] = ACTIONS(2205), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_crate] = ACTIONS(2205), + [sym_metavariable] = ACTIONS(2203), + [sym__raw_string_literal_start] = ACTIONS(2203), + [sym_float_literal] = ACTIONS(2203), }, [STATE(602)] = { [sym_line_comment] = STATE(602), [sym_block_comment] = STATE(602), - [ts_builtin_sym_end] = ACTIONS(2229), - [sym_identifier] = ACTIONS(2231), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_macro_rules_BANG] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2229), - [anon_sym_u8] = ACTIONS(2231), - [anon_sym_i8] = ACTIONS(2231), - [anon_sym_u16] = ACTIONS(2231), - [anon_sym_i16] = ACTIONS(2231), - [anon_sym_u32] = ACTIONS(2231), - [anon_sym_i32] = ACTIONS(2231), - [anon_sym_u64] = ACTIONS(2231), - [anon_sym_i64] = ACTIONS(2231), - [anon_sym_u128] = ACTIONS(2231), - [anon_sym_i128] = ACTIONS(2231), - [anon_sym_isize] = ACTIONS(2231), - [anon_sym_usize] = ACTIONS(2231), - [anon_sym_f32] = ACTIONS(2231), - [anon_sym_f64] = ACTIONS(2231), - [anon_sym_bool] = ACTIONS(2231), - [anon_sym_str] = ACTIONS(2231), - [anon_sym_char] = ACTIONS(2231), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_PIPE] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_DOT_DOT] = ACTIONS(2229), - [anon_sym_COLON_COLON] = ACTIONS(2229), - [anon_sym_POUND] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2231), - [anon_sym_async] = ACTIONS(2231), - [anon_sym_break] = ACTIONS(2231), - [anon_sym_const] = ACTIONS(2231), - [anon_sym_continue] = ACTIONS(2231), - [anon_sym_default] = ACTIONS(2231), - [anon_sym_enum] = ACTIONS(2231), - [anon_sym_fn] = ACTIONS(2231), - [anon_sym_for] = ACTIONS(2231), - [anon_sym_gen] = ACTIONS(2231), - [anon_sym_if] = ACTIONS(2231), - [anon_sym_impl] = ACTIONS(2231), - [anon_sym_let] = ACTIONS(2231), - [anon_sym_loop] = ACTIONS(2231), - [anon_sym_match] = ACTIONS(2231), - [anon_sym_mod] = ACTIONS(2231), - [anon_sym_pub] = ACTIONS(2231), - [anon_sym_return] = ACTIONS(2231), - [anon_sym_static] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(2231), - [anon_sym_trait] = ACTIONS(2231), - [anon_sym_type] = ACTIONS(2231), - [anon_sym_union] = ACTIONS(2231), - [anon_sym_unsafe] = ACTIONS(2231), - [anon_sym_use] = ACTIONS(2231), - [anon_sym_while] = ACTIONS(2231), - [anon_sym_extern] = ACTIONS(2231), - [anon_sym_yield] = ACTIONS(2231), - [anon_sym_move] = ACTIONS(2231), - [anon_sym_try] = ACTIONS(2231), - [sym_integer_literal] = ACTIONS(2229), - [aux_sym_string_literal_token1] = ACTIONS(2229), - [sym_char_literal] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2231), - [anon_sym_false] = ACTIONS(2231), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2231), - [sym_super] = ACTIONS(2231), - [sym_crate] = ACTIONS(2231), - [sym_metavariable] = ACTIONS(2229), - [sym__raw_string_literal_start] = ACTIONS(2229), - [sym_float_literal] = ACTIONS(2229), + [ts_builtin_sym_end] = ACTIONS(2207), + [sym_identifier] = ACTIONS(2209), + [anon_sym_SEMI] = ACTIONS(2207), + [anon_sym_macro_rules_BANG] = ACTIONS(2207), + [anon_sym_LPAREN] = ACTIONS(2207), + [anon_sym_LBRACK] = ACTIONS(2207), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2207), + [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_u8] = ACTIONS(2209), + [anon_sym_i8] = ACTIONS(2209), + [anon_sym_u16] = ACTIONS(2209), + [anon_sym_i16] = ACTIONS(2209), + [anon_sym_u32] = ACTIONS(2209), + [anon_sym_i32] = ACTIONS(2209), + [anon_sym_u64] = ACTIONS(2209), + [anon_sym_i64] = ACTIONS(2209), + [anon_sym_u128] = ACTIONS(2209), + [anon_sym_i128] = ACTIONS(2209), + [anon_sym_isize] = ACTIONS(2209), + [anon_sym_usize] = ACTIONS(2209), + [anon_sym_f32] = ACTIONS(2209), + [anon_sym_f64] = ACTIONS(2209), + [anon_sym_bool] = ACTIONS(2209), + [anon_sym_str] = ACTIONS(2209), + [anon_sym_char] = ACTIONS(2209), + [anon_sym_DASH] = ACTIONS(2207), + [anon_sym_BANG] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2207), + [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_COLON_COLON] = ACTIONS(2207), + [anon_sym_POUND] = ACTIONS(2207), + [anon_sym_SQUOTE] = ACTIONS(2209), + [anon_sym_async] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2209), + [anon_sym_const] = ACTIONS(2209), + [anon_sym_continue] = ACTIONS(2209), + [anon_sym_default] = ACTIONS(2209), + [anon_sym_enum] = ACTIONS(2209), + [anon_sym_fn] = ACTIONS(2209), + [anon_sym_for] = ACTIONS(2209), + [anon_sym_gen] = ACTIONS(2209), + [anon_sym_if] = ACTIONS(2209), + [anon_sym_impl] = ACTIONS(2209), + [anon_sym_let] = ACTIONS(2209), + [anon_sym_loop] = ACTIONS(2209), + [anon_sym_match] = ACTIONS(2209), + [anon_sym_mod] = ACTIONS(2209), + [anon_sym_pub] = ACTIONS(2209), + [anon_sym_return] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(2209), + [anon_sym_struct] = ACTIONS(2209), + [anon_sym_trait] = ACTIONS(2209), + [anon_sym_type] = ACTIONS(2209), + [anon_sym_union] = ACTIONS(2209), + [anon_sym_unsafe] = ACTIONS(2209), + [anon_sym_use] = ACTIONS(2209), + [anon_sym_while] = ACTIONS(2209), + [anon_sym_extern] = ACTIONS(2209), + [anon_sym_yield] = ACTIONS(2209), + [anon_sym_move] = ACTIONS(2209), + [anon_sym_try] = ACTIONS(2209), + [sym_integer_literal] = ACTIONS(2207), + [aux_sym_string_literal_token1] = ACTIONS(2207), + [sym_char_literal] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(2209), + [anon_sym_false] = ACTIONS(2209), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2209), + [sym_super] = ACTIONS(2209), + [sym_crate] = ACTIONS(2209), + [sym_metavariable] = ACTIONS(2207), + [sym__raw_string_literal_start] = ACTIONS(2207), + [sym_float_literal] = ACTIONS(2207), }, [STATE(603)] = { - [sym_empty_statement] = STATE(1314), - [sym_macro_definition] = STATE(1314), - [sym_attribute_item] = STATE(1314), - [sym_inner_attribute_item] = STATE(1314), - [sym_mod_item] = STATE(1314), - [sym_foreign_mod_item] = STATE(1314), - [sym_struct_item] = STATE(1314), - [sym_union_item] = STATE(1314), - [sym_enum_item] = STATE(1314), - [sym_extern_crate_declaration] = STATE(1314), - [sym_const_item] = STATE(1314), - [sym_static_item] = STATE(1314), - [sym_type_item] = STATE(1314), - [sym_function_item] = STATE(1314), - [sym_function_signature_item] = STATE(1314), - [sym_function_modifiers] = STATE(3640), - [sym_impl_item] = STATE(1314), - [sym_trait_item] = STATE(1314), - [sym_associated_type] = STATE(1314), - [sym_let_declaration] = STATE(1314), - [sym_use_declaration] = STATE(1314), - [sym_extern_modifier] = STATE(2199), - [sym_visibility_modifier] = STATE(1957), - [sym_bracketed_type] = STATE(3370), - [sym_generic_type_with_turbofish] = STATE(3395), - [sym_macro_invocation] = STATE(1314), - [sym_scoped_identifier] = STATE(3297), [sym_line_comment] = STATE(603), [sym_block_comment] = STATE(603), - [aux_sym_declaration_list_repeat1] = STATE(736), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_macro_rules_BANG] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_u8] = ACTIONS(2241), - [anon_sym_i8] = ACTIONS(2241), - [anon_sym_u16] = ACTIONS(2241), - [anon_sym_i16] = ACTIONS(2241), - [anon_sym_u32] = ACTIONS(2241), - [anon_sym_i32] = ACTIONS(2241), - [anon_sym_u64] = ACTIONS(2241), - [anon_sym_i64] = ACTIONS(2241), - [anon_sym_u128] = ACTIONS(2241), - [anon_sym_i128] = ACTIONS(2241), - [anon_sym_isize] = ACTIONS(2241), - [anon_sym_usize] = ACTIONS(2241), - [anon_sym_f32] = ACTIONS(2241), - [anon_sym_f64] = ACTIONS(2241), - [anon_sym_bool] = ACTIONS(2241), - [anon_sym_str] = ACTIONS(2241), - [anon_sym_char] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(2247), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2251), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_gen] = ACTIONS(2255), - [anon_sym_impl] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_mod] = ACTIONS(2261), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2265), - [anon_sym_trait] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2279), - [sym_super] = ACTIONS(2279), - [sym_crate] = ACTIONS(2281), - [sym_metavariable] = ACTIONS(2283), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_macro_rules_BANG] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_LBRACE] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2211), + [anon_sym_STAR] = ACTIONS(2211), + [anon_sym_u8] = ACTIONS(2213), + [anon_sym_i8] = ACTIONS(2213), + [anon_sym_u16] = ACTIONS(2213), + [anon_sym_i16] = ACTIONS(2213), + [anon_sym_u32] = ACTIONS(2213), + [anon_sym_i32] = ACTIONS(2213), + [anon_sym_u64] = ACTIONS(2213), + [anon_sym_i64] = ACTIONS(2213), + [anon_sym_u128] = ACTIONS(2213), + [anon_sym_i128] = ACTIONS(2213), + [anon_sym_isize] = ACTIONS(2213), + [anon_sym_usize] = ACTIONS(2213), + [anon_sym_f32] = ACTIONS(2213), + [anon_sym_f64] = ACTIONS(2213), + [anon_sym_bool] = ACTIONS(2213), + [anon_sym_str] = ACTIONS(2213), + [anon_sym_char] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2211), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_LT] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2211), + [anon_sym_COLON_COLON] = ACTIONS(2211), + [anon_sym_POUND] = ACTIONS(2211), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [anon_sym_fn] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_gen] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_impl] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_loop] = ACTIONS(2213), + [anon_sym_match] = ACTIONS(2213), + [anon_sym_mod] = ACTIONS(2213), + [anon_sym_pub] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_struct] = ACTIONS(2213), + [anon_sym_trait] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_union] = ACTIONS(2213), + [anon_sym_unsafe] = ACTIONS(2213), + [anon_sym_use] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_extern] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_move] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [sym_integer_literal] = ACTIONS(2211), + [aux_sym_string_literal_token1] = ACTIONS(2211), + [sym_char_literal] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(2213), + [anon_sym_false] = ACTIONS(2213), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_crate] = ACTIONS(2213), + [sym_metavariable] = ACTIONS(2211), + [sym__raw_string_literal_start] = ACTIONS(2211), + [sym_float_literal] = ACTIONS(2211), }, [STATE(604)] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(2285), - [sym_identifier] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2285), - [anon_sym_macro_rules_BANG] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(2285), - [anon_sym_LBRACK] = ACTIONS(2285), - [anon_sym_LBRACE] = ACTIONS(2285), - [anon_sym_RBRACE] = ACTIONS(2285), - [anon_sym_STAR] = ACTIONS(2285), - [anon_sym_u8] = ACTIONS(2287), - [anon_sym_i8] = ACTIONS(2287), - [anon_sym_u16] = ACTIONS(2287), - [anon_sym_i16] = ACTIONS(2287), - [anon_sym_u32] = ACTIONS(2287), - [anon_sym_i32] = ACTIONS(2287), - [anon_sym_u64] = ACTIONS(2287), - [anon_sym_i64] = ACTIONS(2287), - [anon_sym_u128] = ACTIONS(2287), - [anon_sym_i128] = ACTIONS(2287), - [anon_sym_isize] = ACTIONS(2287), - [anon_sym_usize] = ACTIONS(2287), - [anon_sym_f32] = ACTIONS(2287), - [anon_sym_f64] = ACTIONS(2287), - [anon_sym_bool] = ACTIONS(2287), - [anon_sym_str] = ACTIONS(2287), - [anon_sym_char] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2285), - [anon_sym_BANG] = ACTIONS(2285), - [anon_sym_AMP] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2285), - [anon_sym_LT] = ACTIONS(2285), - [anon_sym_DOT_DOT] = ACTIONS(2285), - [anon_sym_COLON_COLON] = ACTIONS(2285), - [anon_sym_POUND] = ACTIONS(2285), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [anon_sym_fn] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_gen] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_impl] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_loop] = ACTIONS(2287), - [anon_sym_match] = ACTIONS(2287), - [anon_sym_mod] = ACTIONS(2287), - [anon_sym_pub] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_struct] = ACTIONS(2287), - [anon_sym_trait] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_union] = ACTIONS(2287), - [anon_sym_unsafe] = ACTIONS(2287), - [anon_sym_use] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_move] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [sym_integer_literal] = ACTIONS(2285), - [aux_sym_string_literal_token1] = ACTIONS(2285), - [sym_char_literal] = ACTIONS(2285), - [anon_sym_true] = ACTIONS(2287), - [anon_sym_false] = ACTIONS(2287), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_crate] = ACTIONS(2287), - [sym_metavariable] = ACTIONS(2285), - [sym__raw_string_literal_start] = ACTIONS(2285), - [sym_float_literal] = ACTIONS(2285), + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_identifier] = ACTIONS(2217), + [anon_sym_SEMI] = ACTIONS(2215), + [anon_sym_macro_rules_BANG] = ACTIONS(2215), + [anon_sym_LPAREN] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2215), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_u8] = ACTIONS(2217), + [anon_sym_i8] = ACTIONS(2217), + [anon_sym_u16] = ACTIONS(2217), + [anon_sym_i16] = ACTIONS(2217), + [anon_sym_u32] = ACTIONS(2217), + [anon_sym_i32] = ACTIONS(2217), + [anon_sym_u64] = ACTIONS(2217), + [anon_sym_i64] = ACTIONS(2217), + [anon_sym_u128] = ACTIONS(2217), + [anon_sym_i128] = ACTIONS(2217), + [anon_sym_isize] = ACTIONS(2217), + [anon_sym_usize] = ACTIONS(2217), + [anon_sym_f32] = ACTIONS(2217), + [anon_sym_f64] = ACTIONS(2217), + [anon_sym_bool] = ACTIONS(2217), + [anon_sym_str] = ACTIONS(2217), + [anon_sym_char] = ACTIONS(2217), + [anon_sym_DASH] = ACTIONS(2215), + [anon_sym_BANG] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2215), + [anon_sym_DOT_DOT] = ACTIONS(2215), + [anon_sym_COLON_COLON] = ACTIONS(2215), + [anon_sym_POUND] = ACTIONS(2215), + [anon_sym_SQUOTE] = ACTIONS(2217), + [anon_sym_async] = ACTIONS(2217), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_const] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_default] = ACTIONS(2217), + [anon_sym_enum] = ACTIONS(2217), + [anon_sym_fn] = ACTIONS(2217), + [anon_sym_for] = ACTIONS(2217), + [anon_sym_gen] = ACTIONS(2217), + [anon_sym_if] = ACTIONS(2217), + [anon_sym_impl] = ACTIONS(2217), + [anon_sym_let] = ACTIONS(2217), + [anon_sym_loop] = ACTIONS(2217), + [anon_sym_match] = ACTIONS(2217), + [anon_sym_mod] = ACTIONS(2217), + [anon_sym_pub] = ACTIONS(2217), + [anon_sym_return] = ACTIONS(2217), + [anon_sym_static] = ACTIONS(2217), + [anon_sym_struct] = ACTIONS(2217), + [anon_sym_trait] = ACTIONS(2217), + [anon_sym_type] = ACTIONS(2217), + [anon_sym_union] = ACTIONS(2217), + [anon_sym_unsafe] = ACTIONS(2217), + [anon_sym_use] = ACTIONS(2217), + [anon_sym_while] = ACTIONS(2217), + [anon_sym_extern] = ACTIONS(2217), + [anon_sym_yield] = ACTIONS(2217), + [anon_sym_move] = ACTIONS(2217), + [anon_sym_try] = ACTIONS(2217), + [sym_integer_literal] = ACTIONS(2215), + [aux_sym_string_literal_token1] = ACTIONS(2215), + [sym_char_literal] = ACTIONS(2215), + [anon_sym_true] = ACTIONS(2217), + [anon_sym_false] = ACTIONS(2217), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2217), + [sym_super] = ACTIONS(2217), + [sym_crate] = ACTIONS(2217), + [sym_metavariable] = ACTIONS(2215), + [sym__raw_string_literal_start] = ACTIONS(2215), + [sym_float_literal] = ACTIONS(2215), }, [STATE(605)] = { [sym_line_comment] = STATE(605), [sym_block_comment] = STATE(605), - [ts_builtin_sym_end] = ACTIONS(2289), - [sym_identifier] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_macro_rules_BANG] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_u8] = ACTIONS(2291), - [anon_sym_i8] = ACTIONS(2291), - [anon_sym_u16] = ACTIONS(2291), - [anon_sym_i16] = ACTIONS(2291), - [anon_sym_u32] = ACTIONS(2291), - [anon_sym_i32] = ACTIONS(2291), - [anon_sym_u64] = ACTIONS(2291), - [anon_sym_i64] = ACTIONS(2291), - [anon_sym_u128] = ACTIONS(2291), - [anon_sym_i128] = ACTIONS(2291), - [anon_sym_isize] = ACTIONS(2291), - [anon_sym_usize] = ACTIONS(2291), - [anon_sym_f32] = ACTIONS(2291), - [anon_sym_f64] = ACTIONS(2291), - [anon_sym_bool] = ACTIONS(2291), - [anon_sym_str] = ACTIONS(2291), - [anon_sym_char] = ACTIONS(2291), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_DOT_DOT] = ACTIONS(2289), - [anon_sym_COLON_COLON] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(2289), - [anon_sym_SQUOTE] = ACTIONS(2291), - [anon_sym_async] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_default] = ACTIONS(2291), - [anon_sym_enum] = ACTIONS(2291), - [anon_sym_fn] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_gen] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_impl] = ACTIONS(2291), - [anon_sym_let] = ACTIONS(2291), - [anon_sym_loop] = ACTIONS(2291), - [anon_sym_match] = ACTIONS(2291), - [anon_sym_mod] = ACTIONS(2291), - [anon_sym_pub] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_static] = ACTIONS(2291), - [anon_sym_struct] = ACTIONS(2291), - [anon_sym_trait] = ACTIONS(2291), - [anon_sym_type] = ACTIONS(2291), - [anon_sym_union] = ACTIONS(2291), - [anon_sym_unsafe] = ACTIONS(2291), - [anon_sym_use] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_extern] = ACTIONS(2291), - [anon_sym_yield] = ACTIONS(2291), - [anon_sym_move] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2291), - [sym_integer_literal] = ACTIONS(2289), - [aux_sym_string_literal_token1] = ACTIONS(2289), - [sym_char_literal] = ACTIONS(2289), - [anon_sym_true] = ACTIONS(2291), - [anon_sym_false] = ACTIONS(2291), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2291), - [sym_super] = ACTIONS(2291), - [sym_crate] = ACTIONS(2291), - [sym_metavariable] = ACTIONS(2289), - [sym__raw_string_literal_start] = ACTIONS(2289), - [sym_float_literal] = ACTIONS(2289), + [ts_builtin_sym_end] = ACTIONS(2219), + [sym_identifier] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2219), + [anon_sym_macro_rules_BANG] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2219), + [anon_sym_LBRACK] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2219), + [anon_sym_RBRACE] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_u8] = ACTIONS(2221), + [anon_sym_i8] = ACTIONS(2221), + [anon_sym_u16] = ACTIONS(2221), + [anon_sym_i16] = ACTIONS(2221), + [anon_sym_u32] = ACTIONS(2221), + [anon_sym_i32] = ACTIONS(2221), + [anon_sym_u64] = ACTIONS(2221), + [anon_sym_i64] = ACTIONS(2221), + [anon_sym_u128] = ACTIONS(2221), + [anon_sym_i128] = ACTIONS(2221), + [anon_sym_isize] = ACTIONS(2221), + [anon_sym_usize] = ACTIONS(2221), + [anon_sym_f32] = ACTIONS(2221), + [anon_sym_f64] = ACTIONS(2221), + [anon_sym_bool] = ACTIONS(2221), + [anon_sym_str] = ACTIONS(2221), + [anon_sym_char] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_BANG] = ACTIONS(2219), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_LT] = ACTIONS(2219), + [anon_sym_DOT_DOT] = ACTIONS(2219), + [anon_sym_COLON_COLON] = ACTIONS(2219), + [anon_sym_POUND] = ACTIONS(2219), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [anon_sym_fn] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_gen] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_impl] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_loop] = ACTIONS(2221), + [anon_sym_match] = ACTIONS(2221), + [anon_sym_mod] = ACTIONS(2221), + [anon_sym_pub] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_struct] = ACTIONS(2221), + [anon_sym_trait] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_union] = ACTIONS(2221), + [anon_sym_unsafe] = ACTIONS(2221), + [anon_sym_use] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_extern] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_move] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [sym_integer_literal] = ACTIONS(2219), + [aux_sym_string_literal_token1] = ACTIONS(2219), + [sym_char_literal] = ACTIONS(2219), + [anon_sym_true] = ACTIONS(2221), + [anon_sym_false] = ACTIONS(2221), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_crate] = ACTIONS(2221), + [sym_metavariable] = ACTIONS(2219), + [sym__raw_string_literal_start] = ACTIONS(2219), + [sym_float_literal] = ACTIONS(2219), }, [STATE(606)] = { [sym_line_comment] = STATE(606), [sym_block_comment] = STATE(606), - [ts_builtin_sym_end] = ACTIONS(2293), - [sym_identifier] = ACTIONS(2295), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_macro_rules_BANG] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(2293), - [anon_sym_LBRACK] = ACTIONS(2293), - [anon_sym_LBRACE] = ACTIONS(2293), - [anon_sym_RBRACE] = ACTIONS(2293), - [anon_sym_STAR] = ACTIONS(2293), - [anon_sym_u8] = ACTIONS(2295), - [anon_sym_i8] = ACTIONS(2295), - [anon_sym_u16] = ACTIONS(2295), - [anon_sym_i16] = ACTIONS(2295), - [anon_sym_u32] = ACTIONS(2295), - [anon_sym_i32] = ACTIONS(2295), - [anon_sym_u64] = ACTIONS(2295), - [anon_sym_i64] = ACTIONS(2295), - [anon_sym_u128] = ACTIONS(2295), - [anon_sym_i128] = ACTIONS(2295), - [anon_sym_isize] = ACTIONS(2295), - [anon_sym_usize] = ACTIONS(2295), - [anon_sym_f32] = ACTIONS(2295), - [anon_sym_f64] = ACTIONS(2295), - [anon_sym_bool] = ACTIONS(2295), - [anon_sym_str] = ACTIONS(2295), - [anon_sym_char] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(2293), - [anon_sym_BANG] = ACTIONS(2293), - [anon_sym_AMP] = ACTIONS(2293), - [anon_sym_PIPE] = ACTIONS(2293), - [anon_sym_LT] = ACTIONS(2293), - [anon_sym_DOT_DOT] = ACTIONS(2293), - [anon_sym_COLON_COLON] = ACTIONS(2293), - [anon_sym_POUND] = ACTIONS(2293), - [anon_sym_SQUOTE] = ACTIONS(2295), - [anon_sym_async] = ACTIONS(2295), - [anon_sym_break] = ACTIONS(2295), - [anon_sym_const] = ACTIONS(2295), - [anon_sym_continue] = ACTIONS(2295), - [anon_sym_default] = ACTIONS(2295), - [anon_sym_enum] = ACTIONS(2295), - [anon_sym_fn] = ACTIONS(2295), - [anon_sym_for] = ACTIONS(2295), - [anon_sym_gen] = ACTIONS(2295), - [anon_sym_if] = ACTIONS(2295), - [anon_sym_impl] = ACTIONS(2295), - [anon_sym_let] = ACTIONS(2295), - [anon_sym_loop] = ACTIONS(2295), - [anon_sym_match] = ACTIONS(2295), - [anon_sym_mod] = ACTIONS(2295), - [anon_sym_pub] = ACTIONS(2295), - [anon_sym_return] = ACTIONS(2295), - [anon_sym_static] = ACTIONS(2295), - [anon_sym_struct] = ACTIONS(2295), - [anon_sym_trait] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2295), - [anon_sym_union] = ACTIONS(2295), - [anon_sym_unsafe] = ACTIONS(2295), - [anon_sym_use] = ACTIONS(2295), - [anon_sym_while] = ACTIONS(2295), - [anon_sym_extern] = ACTIONS(2295), - [anon_sym_yield] = ACTIONS(2295), - [anon_sym_move] = ACTIONS(2295), - [anon_sym_try] = ACTIONS(2295), - [sym_integer_literal] = ACTIONS(2293), - [aux_sym_string_literal_token1] = ACTIONS(2293), - [sym_char_literal] = ACTIONS(2293), - [anon_sym_true] = ACTIONS(2295), - [anon_sym_false] = ACTIONS(2295), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2295), - [sym_super] = ACTIONS(2295), - [sym_crate] = ACTIONS(2295), - [sym_metavariable] = ACTIONS(2293), - [sym__raw_string_literal_start] = ACTIONS(2293), - [sym_float_literal] = ACTIONS(2293), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2223), + [anon_sym_macro_rules_BANG] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2223), + [anon_sym_LBRACK] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2223), + [anon_sym_RBRACE] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2223), + [anon_sym_u8] = ACTIONS(2225), + [anon_sym_i8] = ACTIONS(2225), + [anon_sym_u16] = ACTIONS(2225), + [anon_sym_i16] = ACTIONS(2225), + [anon_sym_u32] = ACTIONS(2225), + [anon_sym_i32] = ACTIONS(2225), + [anon_sym_u64] = ACTIONS(2225), + [anon_sym_i64] = ACTIONS(2225), + [anon_sym_u128] = ACTIONS(2225), + [anon_sym_i128] = ACTIONS(2225), + [anon_sym_isize] = ACTIONS(2225), + [anon_sym_usize] = ACTIONS(2225), + [anon_sym_f32] = ACTIONS(2225), + [anon_sym_f64] = ACTIONS(2225), + [anon_sym_bool] = ACTIONS(2225), + [anon_sym_str] = ACTIONS(2225), + [anon_sym_char] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_BANG] = ACTIONS(2223), + [anon_sym_AMP] = ACTIONS(2223), + [anon_sym_PIPE] = ACTIONS(2223), + [anon_sym_LT] = ACTIONS(2223), + [anon_sym_DOT_DOT] = ACTIONS(2223), + [anon_sym_COLON_COLON] = ACTIONS(2223), + [anon_sym_POUND] = ACTIONS(2223), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [anon_sym_fn] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_gen] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_impl] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_loop] = ACTIONS(2225), + [anon_sym_match] = ACTIONS(2225), + [anon_sym_mod] = ACTIONS(2225), + [anon_sym_pub] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_struct] = ACTIONS(2225), + [anon_sym_trait] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_union] = ACTIONS(2225), + [anon_sym_unsafe] = ACTIONS(2225), + [anon_sym_use] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_extern] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_move] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [sym_integer_literal] = ACTIONS(2223), + [aux_sym_string_literal_token1] = ACTIONS(2223), + [sym_char_literal] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(2225), + [anon_sym_false] = ACTIONS(2225), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_crate] = ACTIONS(2225), + [sym_metavariable] = ACTIONS(2223), + [sym__raw_string_literal_start] = ACTIONS(2223), + [sym_float_literal] = ACTIONS(2223), }, [STATE(607)] = { [sym_line_comment] = STATE(607), [sym_block_comment] = STATE(607), - [ts_builtin_sym_end] = ACTIONS(2297), - [sym_identifier] = ACTIONS(2299), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_macro_rules_BANG] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_u8] = ACTIONS(2299), - [anon_sym_i8] = ACTIONS(2299), - [anon_sym_u16] = ACTIONS(2299), - [anon_sym_i16] = ACTIONS(2299), - [anon_sym_u32] = ACTIONS(2299), - [anon_sym_i32] = ACTIONS(2299), - [anon_sym_u64] = ACTIONS(2299), - [anon_sym_i64] = ACTIONS(2299), - [anon_sym_u128] = ACTIONS(2299), - [anon_sym_i128] = ACTIONS(2299), - [anon_sym_isize] = ACTIONS(2299), - [anon_sym_usize] = ACTIONS(2299), - [anon_sym_f32] = ACTIONS(2299), - [anon_sym_f64] = ACTIONS(2299), - [anon_sym_bool] = ACTIONS(2299), - [anon_sym_str] = ACTIONS(2299), - [anon_sym_char] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_DOT_DOT] = ACTIONS(2297), - [anon_sym_COLON_COLON] = ACTIONS(2297), - [anon_sym_POUND] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2299), - [anon_sym_async] = ACTIONS(2299), - [anon_sym_break] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [anon_sym_continue] = ACTIONS(2299), - [anon_sym_default] = ACTIONS(2299), - [anon_sym_enum] = ACTIONS(2299), - [anon_sym_fn] = ACTIONS(2299), - [anon_sym_for] = ACTIONS(2299), - [anon_sym_gen] = ACTIONS(2299), - [anon_sym_if] = ACTIONS(2299), - [anon_sym_impl] = ACTIONS(2299), - [anon_sym_let] = ACTIONS(2299), - [anon_sym_loop] = ACTIONS(2299), - [anon_sym_match] = ACTIONS(2299), - [anon_sym_mod] = ACTIONS(2299), - [anon_sym_pub] = ACTIONS(2299), - [anon_sym_return] = ACTIONS(2299), - [anon_sym_static] = ACTIONS(2299), - [anon_sym_struct] = ACTIONS(2299), - [anon_sym_trait] = ACTIONS(2299), - [anon_sym_type] = ACTIONS(2299), - [anon_sym_union] = ACTIONS(2299), - [anon_sym_unsafe] = ACTIONS(2299), - [anon_sym_use] = ACTIONS(2299), - [anon_sym_while] = ACTIONS(2299), - [anon_sym_extern] = ACTIONS(2299), - [anon_sym_yield] = ACTIONS(2299), - [anon_sym_move] = ACTIONS(2299), - [anon_sym_try] = ACTIONS(2299), - [sym_integer_literal] = ACTIONS(2297), - [aux_sym_string_literal_token1] = ACTIONS(2297), - [sym_char_literal] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2299), - [anon_sym_false] = ACTIONS(2299), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2299), - [sym_super] = ACTIONS(2299), - [sym_crate] = ACTIONS(2299), - [sym_metavariable] = ACTIONS(2297), - [sym__raw_string_literal_start] = ACTIONS(2297), - [sym_float_literal] = ACTIONS(2297), + [ts_builtin_sym_end] = ACTIONS(2227), + [sym_identifier] = ACTIONS(2229), + [anon_sym_SEMI] = ACTIONS(2227), + [anon_sym_macro_rules_BANG] = ACTIONS(2227), + [anon_sym_LPAREN] = ACTIONS(2227), + [anon_sym_LBRACK] = ACTIONS(2227), + [anon_sym_LBRACE] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2227), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_u8] = ACTIONS(2229), + [anon_sym_i8] = ACTIONS(2229), + [anon_sym_u16] = ACTIONS(2229), + [anon_sym_i16] = ACTIONS(2229), + [anon_sym_u32] = ACTIONS(2229), + [anon_sym_i32] = ACTIONS(2229), + [anon_sym_u64] = ACTIONS(2229), + [anon_sym_i64] = ACTIONS(2229), + [anon_sym_u128] = ACTIONS(2229), + [anon_sym_i128] = ACTIONS(2229), + [anon_sym_isize] = ACTIONS(2229), + [anon_sym_usize] = ACTIONS(2229), + [anon_sym_f32] = ACTIONS(2229), + [anon_sym_f64] = ACTIONS(2229), + [anon_sym_bool] = ACTIONS(2229), + [anon_sym_str] = ACTIONS(2229), + [anon_sym_char] = ACTIONS(2229), + [anon_sym_DASH] = ACTIONS(2227), + [anon_sym_BANG] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2227), + [anon_sym_COLON_COLON] = ACTIONS(2227), + [anon_sym_POUND] = ACTIONS(2227), + [anon_sym_SQUOTE] = ACTIONS(2229), + [anon_sym_async] = ACTIONS(2229), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_const] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_default] = ACTIONS(2229), + [anon_sym_enum] = ACTIONS(2229), + [anon_sym_fn] = ACTIONS(2229), + [anon_sym_for] = ACTIONS(2229), + [anon_sym_gen] = ACTIONS(2229), + [anon_sym_if] = ACTIONS(2229), + [anon_sym_impl] = ACTIONS(2229), + [anon_sym_let] = ACTIONS(2229), + [anon_sym_loop] = ACTIONS(2229), + [anon_sym_match] = ACTIONS(2229), + [anon_sym_mod] = ACTIONS(2229), + [anon_sym_pub] = ACTIONS(2229), + [anon_sym_return] = ACTIONS(2229), + [anon_sym_static] = ACTIONS(2229), + [anon_sym_struct] = ACTIONS(2229), + [anon_sym_trait] = ACTIONS(2229), + [anon_sym_type] = ACTIONS(2229), + [anon_sym_union] = ACTIONS(2229), + [anon_sym_unsafe] = ACTIONS(2229), + [anon_sym_use] = ACTIONS(2229), + [anon_sym_while] = ACTIONS(2229), + [anon_sym_extern] = ACTIONS(2229), + [anon_sym_yield] = ACTIONS(2229), + [anon_sym_move] = ACTIONS(2229), + [anon_sym_try] = ACTIONS(2229), + [sym_integer_literal] = ACTIONS(2227), + [aux_sym_string_literal_token1] = ACTIONS(2227), + [sym_char_literal] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(2229), + [anon_sym_false] = ACTIONS(2229), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2229), + [sym_super] = ACTIONS(2229), + [sym_crate] = ACTIONS(2229), + [sym_metavariable] = ACTIONS(2227), + [sym__raw_string_literal_start] = ACTIONS(2227), + [sym_float_literal] = ACTIONS(2227), }, [STATE(608)] = { [sym_line_comment] = STATE(608), [sym_block_comment] = STATE(608), - [ts_builtin_sym_end] = ACTIONS(2301), - [sym_identifier] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(2301), - [anon_sym_macro_rules_BANG] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2301), - [anon_sym_LBRACK] = ACTIONS(2301), - [anon_sym_LBRACE] = ACTIONS(2301), - [anon_sym_RBRACE] = ACTIONS(2301), - [anon_sym_STAR] = ACTIONS(2301), - [anon_sym_u8] = ACTIONS(2303), - [anon_sym_i8] = ACTIONS(2303), - [anon_sym_u16] = ACTIONS(2303), - [anon_sym_i16] = ACTIONS(2303), - [anon_sym_u32] = ACTIONS(2303), - [anon_sym_i32] = ACTIONS(2303), - [anon_sym_u64] = ACTIONS(2303), - [anon_sym_i64] = ACTIONS(2303), - [anon_sym_u128] = ACTIONS(2303), - [anon_sym_i128] = ACTIONS(2303), - [anon_sym_isize] = ACTIONS(2303), - [anon_sym_usize] = ACTIONS(2303), - [anon_sym_f32] = ACTIONS(2303), - [anon_sym_f64] = ACTIONS(2303), - [anon_sym_bool] = ACTIONS(2303), - [anon_sym_str] = ACTIONS(2303), - [anon_sym_char] = ACTIONS(2303), - [anon_sym_DASH] = ACTIONS(2301), - [anon_sym_BANG] = ACTIONS(2301), - [anon_sym_AMP] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2301), - [anon_sym_LT] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2301), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_POUND] = ACTIONS(2301), - [anon_sym_SQUOTE] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(2303), - [anon_sym_break] = ACTIONS(2303), - [anon_sym_const] = ACTIONS(2303), - [anon_sym_continue] = ACTIONS(2303), - [anon_sym_default] = ACTIONS(2303), - [anon_sym_enum] = ACTIONS(2303), - [anon_sym_fn] = ACTIONS(2303), - [anon_sym_for] = ACTIONS(2303), - [anon_sym_gen] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(2303), - [anon_sym_impl] = ACTIONS(2303), - [anon_sym_let] = ACTIONS(2303), - [anon_sym_loop] = ACTIONS(2303), - [anon_sym_match] = ACTIONS(2303), - [anon_sym_mod] = ACTIONS(2303), - [anon_sym_pub] = ACTIONS(2303), - [anon_sym_return] = ACTIONS(2303), - [anon_sym_static] = ACTIONS(2303), - [anon_sym_struct] = ACTIONS(2303), - [anon_sym_trait] = ACTIONS(2303), - [anon_sym_type] = ACTIONS(2303), - [anon_sym_union] = ACTIONS(2303), - [anon_sym_unsafe] = ACTIONS(2303), - [anon_sym_use] = ACTIONS(2303), - [anon_sym_while] = ACTIONS(2303), - [anon_sym_extern] = ACTIONS(2303), - [anon_sym_yield] = ACTIONS(2303), - [anon_sym_move] = ACTIONS(2303), - [anon_sym_try] = ACTIONS(2303), - [sym_integer_literal] = ACTIONS(2301), - [aux_sym_string_literal_token1] = ACTIONS(2301), - [sym_char_literal] = ACTIONS(2301), - [anon_sym_true] = ACTIONS(2303), - [anon_sym_false] = ACTIONS(2303), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2303), - [sym_super] = ACTIONS(2303), - [sym_crate] = ACTIONS(2303), - [sym_metavariable] = ACTIONS(2301), - [sym__raw_string_literal_start] = ACTIONS(2301), - [sym_float_literal] = ACTIONS(2301), + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_identifier] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_macro_rules_BANG] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(2231), + [anon_sym_LBRACK] = ACTIONS(2231), + [anon_sym_LBRACE] = ACTIONS(2231), + [anon_sym_RBRACE] = ACTIONS(2231), + [anon_sym_STAR] = ACTIONS(2231), + [anon_sym_u8] = ACTIONS(2233), + [anon_sym_i8] = ACTIONS(2233), + [anon_sym_u16] = ACTIONS(2233), + [anon_sym_i16] = ACTIONS(2233), + [anon_sym_u32] = ACTIONS(2233), + [anon_sym_i32] = ACTIONS(2233), + [anon_sym_u64] = ACTIONS(2233), + [anon_sym_i64] = ACTIONS(2233), + [anon_sym_u128] = ACTIONS(2233), + [anon_sym_i128] = ACTIONS(2233), + [anon_sym_isize] = ACTIONS(2233), + [anon_sym_usize] = ACTIONS(2233), + [anon_sym_f32] = ACTIONS(2233), + [anon_sym_f64] = ACTIONS(2233), + [anon_sym_bool] = ACTIONS(2233), + [anon_sym_str] = ACTIONS(2233), + [anon_sym_char] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2231), + [anon_sym_BANG] = ACTIONS(2231), + [anon_sym_AMP] = ACTIONS(2231), + [anon_sym_PIPE] = ACTIONS(2231), + [anon_sym_LT] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2231), + [anon_sym_COLON_COLON] = ACTIONS(2231), + [anon_sym_POUND] = ACTIONS(2231), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [anon_sym_fn] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_gen] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_impl] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_loop] = ACTIONS(2233), + [anon_sym_match] = ACTIONS(2233), + [anon_sym_mod] = ACTIONS(2233), + [anon_sym_pub] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_struct] = ACTIONS(2233), + [anon_sym_trait] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_union] = ACTIONS(2233), + [anon_sym_unsafe] = ACTIONS(2233), + [anon_sym_use] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_extern] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_move] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [sym_integer_literal] = ACTIONS(2231), + [aux_sym_string_literal_token1] = ACTIONS(2231), + [sym_char_literal] = ACTIONS(2231), + [anon_sym_true] = ACTIONS(2233), + [anon_sym_false] = ACTIONS(2233), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_crate] = ACTIONS(2233), + [sym_metavariable] = ACTIONS(2231), + [sym__raw_string_literal_start] = ACTIONS(2231), + [sym_float_literal] = ACTIONS(2231), }, [STATE(609)] = { [sym_line_comment] = STATE(609), [sym_block_comment] = STATE(609), - [ts_builtin_sym_end] = ACTIONS(2305), - [sym_identifier] = ACTIONS(2307), - [anon_sym_SEMI] = ACTIONS(2305), - [anon_sym_macro_rules_BANG] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_STAR] = ACTIONS(2305), - [anon_sym_u8] = ACTIONS(2307), - [anon_sym_i8] = ACTIONS(2307), - [anon_sym_u16] = ACTIONS(2307), - [anon_sym_i16] = ACTIONS(2307), - [anon_sym_u32] = ACTIONS(2307), - [anon_sym_i32] = ACTIONS(2307), - [anon_sym_u64] = ACTIONS(2307), - [anon_sym_i64] = ACTIONS(2307), - [anon_sym_u128] = ACTIONS(2307), - [anon_sym_i128] = ACTIONS(2307), - [anon_sym_isize] = ACTIONS(2307), - [anon_sym_usize] = ACTIONS(2307), - [anon_sym_f32] = ACTIONS(2307), - [anon_sym_f64] = ACTIONS(2307), - [anon_sym_bool] = ACTIONS(2307), - [anon_sym_str] = ACTIONS(2307), - [anon_sym_char] = ACTIONS(2307), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_BANG] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2305), - [anon_sym_COLON_COLON] = ACTIONS(2305), - [anon_sym_POUND] = ACTIONS(2305), - [anon_sym_SQUOTE] = ACTIONS(2307), - [anon_sym_async] = ACTIONS(2307), - [anon_sym_break] = ACTIONS(2307), - [anon_sym_const] = ACTIONS(2307), - [anon_sym_continue] = ACTIONS(2307), - [anon_sym_default] = ACTIONS(2307), - [anon_sym_enum] = ACTIONS(2307), - [anon_sym_fn] = ACTIONS(2307), - [anon_sym_for] = ACTIONS(2307), - [anon_sym_gen] = ACTIONS(2307), - [anon_sym_if] = ACTIONS(2307), - [anon_sym_impl] = ACTIONS(2307), - [anon_sym_let] = ACTIONS(2307), - [anon_sym_loop] = ACTIONS(2307), - [anon_sym_match] = ACTIONS(2307), - [anon_sym_mod] = ACTIONS(2307), - [anon_sym_pub] = ACTIONS(2307), - [anon_sym_return] = ACTIONS(2307), - [anon_sym_static] = ACTIONS(2307), - [anon_sym_struct] = ACTIONS(2307), - [anon_sym_trait] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2307), - [anon_sym_union] = ACTIONS(2307), - [anon_sym_unsafe] = ACTIONS(2307), - [anon_sym_use] = ACTIONS(2307), - [anon_sym_while] = ACTIONS(2307), - [anon_sym_extern] = ACTIONS(2307), - [anon_sym_yield] = ACTIONS(2307), - [anon_sym_move] = ACTIONS(2307), - [anon_sym_try] = ACTIONS(2307), - [sym_integer_literal] = ACTIONS(2305), - [aux_sym_string_literal_token1] = ACTIONS(2305), - [sym_char_literal] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2307), - [anon_sym_false] = ACTIONS(2307), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2307), - [sym_super] = ACTIONS(2307), - [sym_crate] = ACTIONS(2307), - [sym_metavariable] = ACTIONS(2305), - [sym__raw_string_literal_start] = ACTIONS(2305), - [sym_float_literal] = ACTIONS(2305), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2235), + [anon_sym_macro_rules_BANG] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2235), + [anon_sym_RBRACE] = ACTIONS(2235), + [anon_sym_STAR] = ACTIONS(2235), + [anon_sym_u8] = ACTIONS(2237), + [anon_sym_i8] = ACTIONS(2237), + [anon_sym_u16] = ACTIONS(2237), + [anon_sym_i16] = ACTIONS(2237), + [anon_sym_u32] = ACTIONS(2237), + [anon_sym_i32] = ACTIONS(2237), + [anon_sym_u64] = ACTIONS(2237), + [anon_sym_i64] = ACTIONS(2237), + [anon_sym_u128] = ACTIONS(2237), + [anon_sym_i128] = ACTIONS(2237), + [anon_sym_isize] = ACTIONS(2237), + [anon_sym_usize] = ACTIONS(2237), + [anon_sym_f32] = ACTIONS(2237), + [anon_sym_f64] = ACTIONS(2237), + [anon_sym_bool] = ACTIONS(2237), + [anon_sym_str] = ACTIONS(2237), + [anon_sym_char] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_BANG] = ACTIONS(2235), + [anon_sym_AMP] = ACTIONS(2235), + [anon_sym_PIPE] = ACTIONS(2235), + [anon_sym_LT] = ACTIONS(2235), + [anon_sym_DOT_DOT] = ACTIONS(2235), + [anon_sym_COLON_COLON] = ACTIONS(2235), + [anon_sym_POUND] = ACTIONS(2235), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [anon_sym_fn] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_gen] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_impl] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_loop] = ACTIONS(2237), + [anon_sym_match] = ACTIONS(2237), + [anon_sym_mod] = ACTIONS(2237), + [anon_sym_pub] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_struct] = ACTIONS(2237), + [anon_sym_trait] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_union] = ACTIONS(2237), + [anon_sym_unsafe] = ACTIONS(2237), + [anon_sym_use] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_extern] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_move] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [sym_integer_literal] = ACTIONS(2235), + [aux_sym_string_literal_token1] = ACTIONS(2235), + [sym_char_literal] = ACTIONS(2235), + [anon_sym_true] = ACTIONS(2237), + [anon_sym_false] = ACTIONS(2237), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_crate] = ACTIONS(2237), + [sym_metavariable] = ACTIONS(2235), + [sym__raw_string_literal_start] = ACTIONS(2235), + [sym_float_literal] = ACTIONS(2235), }, [STATE(610)] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [ts_builtin_sym_end] = ACTIONS(2309), - [sym_identifier] = ACTIONS(2311), - [anon_sym_SEMI] = ACTIONS(2309), - [anon_sym_macro_rules_BANG] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_LBRACK] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_STAR] = ACTIONS(2309), - [anon_sym_u8] = ACTIONS(2311), - [anon_sym_i8] = ACTIONS(2311), - [anon_sym_u16] = ACTIONS(2311), - [anon_sym_i16] = ACTIONS(2311), - [anon_sym_u32] = ACTIONS(2311), - [anon_sym_i32] = ACTIONS(2311), - [anon_sym_u64] = ACTIONS(2311), - [anon_sym_i64] = ACTIONS(2311), - [anon_sym_u128] = ACTIONS(2311), - [anon_sym_i128] = ACTIONS(2311), - [anon_sym_isize] = ACTIONS(2311), - [anon_sym_usize] = ACTIONS(2311), - [anon_sym_f32] = ACTIONS(2311), - [anon_sym_f64] = ACTIONS(2311), - [anon_sym_bool] = ACTIONS(2311), - [anon_sym_str] = ACTIONS(2311), - [anon_sym_char] = ACTIONS(2311), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_BANG] = ACTIONS(2309), - [anon_sym_AMP] = ACTIONS(2309), - [anon_sym_PIPE] = ACTIONS(2309), - [anon_sym_LT] = ACTIONS(2309), - [anon_sym_DOT_DOT] = ACTIONS(2309), - [anon_sym_COLON_COLON] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(2309), - [anon_sym_SQUOTE] = ACTIONS(2311), - [anon_sym_async] = ACTIONS(2311), - [anon_sym_break] = ACTIONS(2311), - [anon_sym_const] = ACTIONS(2311), - [anon_sym_continue] = ACTIONS(2311), - [anon_sym_default] = ACTIONS(2311), - [anon_sym_enum] = ACTIONS(2311), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_for] = ACTIONS(2311), - [anon_sym_gen] = ACTIONS(2311), - [anon_sym_if] = ACTIONS(2311), - [anon_sym_impl] = ACTIONS(2311), - [anon_sym_let] = ACTIONS(2311), - [anon_sym_loop] = ACTIONS(2311), - [anon_sym_match] = ACTIONS(2311), - [anon_sym_mod] = ACTIONS(2311), - [anon_sym_pub] = ACTIONS(2311), - [anon_sym_return] = ACTIONS(2311), - [anon_sym_static] = ACTIONS(2311), - [anon_sym_struct] = ACTIONS(2311), - [anon_sym_trait] = ACTIONS(2311), - [anon_sym_type] = ACTIONS(2311), - [anon_sym_union] = ACTIONS(2311), - [anon_sym_unsafe] = ACTIONS(2311), - [anon_sym_use] = ACTIONS(2311), - [anon_sym_while] = ACTIONS(2311), - [anon_sym_extern] = ACTIONS(2311), - [anon_sym_yield] = ACTIONS(2311), - [anon_sym_move] = ACTIONS(2311), - [anon_sym_try] = ACTIONS(2311), - [sym_integer_literal] = ACTIONS(2309), - [aux_sym_string_literal_token1] = ACTIONS(2309), - [sym_char_literal] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2311), - [anon_sym_false] = ACTIONS(2311), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2311), - [sym_super] = ACTIONS(2311), - [sym_crate] = ACTIONS(2311), - [sym_metavariable] = ACTIONS(2309), - [sym__raw_string_literal_start] = ACTIONS(2309), - [sym_float_literal] = ACTIONS(2309), + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2239), + [anon_sym_macro_rules_BANG] = ACTIONS(2239), + [anon_sym_LPAREN] = ACTIONS(2239), + [anon_sym_LBRACK] = ACTIONS(2239), + [anon_sym_LBRACE] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_u8] = ACTIONS(2241), + [anon_sym_i8] = ACTIONS(2241), + [anon_sym_u16] = ACTIONS(2241), + [anon_sym_i16] = ACTIONS(2241), + [anon_sym_u32] = ACTIONS(2241), + [anon_sym_i32] = ACTIONS(2241), + [anon_sym_u64] = ACTIONS(2241), + [anon_sym_i64] = ACTIONS(2241), + [anon_sym_u128] = ACTIONS(2241), + [anon_sym_i128] = ACTIONS(2241), + [anon_sym_isize] = ACTIONS(2241), + [anon_sym_usize] = ACTIONS(2241), + [anon_sym_f32] = ACTIONS(2241), + [anon_sym_f64] = ACTIONS(2241), + [anon_sym_bool] = ACTIONS(2241), + [anon_sym_str] = ACTIONS(2241), + [anon_sym_char] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2239), + [anon_sym_BANG] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_LT] = ACTIONS(2239), + [anon_sym_DOT_DOT] = ACTIONS(2239), + [anon_sym_COLON_COLON] = ACTIONS(2239), + [anon_sym_POUND] = ACTIONS(2239), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [anon_sym_fn] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_gen] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_impl] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_loop] = ACTIONS(2241), + [anon_sym_match] = ACTIONS(2241), + [anon_sym_mod] = ACTIONS(2241), + [anon_sym_pub] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_struct] = ACTIONS(2241), + [anon_sym_trait] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_union] = ACTIONS(2241), + [anon_sym_unsafe] = ACTIONS(2241), + [anon_sym_use] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_extern] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_move] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [sym_integer_literal] = ACTIONS(2239), + [aux_sym_string_literal_token1] = ACTIONS(2239), + [sym_char_literal] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(2241), + [anon_sym_false] = ACTIONS(2241), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_crate] = ACTIONS(2241), + [sym_metavariable] = ACTIONS(2239), + [sym__raw_string_literal_start] = ACTIONS(2239), + [sym_float_literal] = ACTIONS(2239), }, [STATE(611)] = { [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [ts_builtin_sym_end] = ACTIONS(2313), - [sym_identifier] = ACTIONS(2315), - [anon_sym_SEMI] = ACTIONS(2313), - [anon_sym_macro_rules_BANG] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_LBRACK] = ACTIONS(2313), - [anon_sym_LBRACE] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym_STAR] = ACTIONS(2313), - [anon_sym_u8] = ACTIONS(2315), - [anon_sym_i8] = ACTIONS(2315), - [anon_sym_u16] = ACTIONS(2315), - [anon_sym_i16] = ACTIONS(2315), - [anon_sym_u32] = ACTIONS(2315), - [anon_sym_i32] = ACTIONS(2315), - [anon_sym_u64] = ACTIONS(2315), - [anon_sym_i64] = ACTIONS(2315), - [anon_sym_u128] = ACTIONS(2315), - [anon_sym_i128] = ACTIONS(2315), - [anon_sym_isize] = ACTIONS(2315), - [anon_sym_usize] = ACTIONS(2315), - [anon_sym_f32] = ACTIONS(2315), - [anon_sym_f64] = ACTIONS(2315), - [anon_sym_bool] = ACTIONS(2315), - [anon_sym_str] = ACTIONS(2315), - [anon_sym_char] = ACTIONS(2315), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_BANG] = ACTIONS(2313), - [anon_sym_AMP] = ACTIONS(2313), - [anon_sym_PIPE] = ACTIONS(2313), - [anon_sym_LT] = ACTIONS(2313), - [anon_sym_DOT_DOT] = ACTIONS(2313), - [anon_sym_COLON_COLON] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(2313), - [anon_sym_SQUOTE] = ACTIONS(2315), - [anon_sym_async] = ACTIONS(2315), - [anon_sym_break] = ACTIONS(2315), - [anon_sym_const] = ACTIONS(2315), - [anon_sym_continue] = ACTIONS(2315), - [anon_sym_default] = ACTIONS(2315), - [anon_sym_enum] = ACTIONS(2315), - [anon_sym_fn] = ACTIONS(2315), - [anon_sym_for] = ACTIONS(2315), - [anon_sym_gen] = ACTIONS(2315), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_impl] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2315), - [anon_sym_loop] = ACTIONS(2315), - [anon_sym_match] = ACTIONS(2315), - [anon_sym_mod] = ACTIONS(2315), - [anon_sym_pub] = ACTIONS(2315), - [anon_sym_return] = ACTIONS(2315), - [anon_sym_static] = ACTIONS(2315), - [anon_sym_struct] = ACTIONS(2315), - [anon_sym_trait] = ACTIONS(2315), - [anon_sym_type] = ACTIONS(2315), - [anon_sym_union] = ACTIONS(2315), - [anon_sym_unsafe] = ACTIONS(2315), - [anon_sym_use] = ACTIONS(2315), - [anon_sym_while] = ACTIONS(2315), - [anon_sym_extern] = ACTIONS(2315), - [anon_sym_yield] = ACTIONS(2315), - [anon_sym_move] = ACTIONS(2315), - [anon_sym_try] = ACTIONS(2315), - [sym_integer_literal] = ACTIONS(2313), - [aux_sym_string_literal_token1] = ACTIONS(2313), - [sym_char_literal] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2315), - [anon_sym_false] = ACTIONS(2315), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2315), - [sym_super] = ACTIONS(2315), - [sym_crate] = ACTIONS(2315), - [sym_metavariable] = ACTIONS(2313), - [sym__raw_string_literal_start] = ACTIONS(2313), - [sym_float_literal] = ACTIONS(2313), + [ts_builtin_sym_end] = ACTIONS(2243), + [sym_identifier] = ACTIONS(2245), + [anon_sym_SEMI] = ACTIONS(2243), + [anon_sym_macro_rules_BANG] = ACTIONS(2243), + [anon_sym_LPAREN] = ACTIONS(2243), + [anon_sym_LBRACK] = ACTIONS(2243), + [anon_sym_LBRACE] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2243), + [anon_sym_u8] = ACTIONS(2245), + [anon_sym_i8] = ACTIONS(2245), + [anon_sym_u16] = ACTIONS(2245), + [anon_sym_i16] = ACTIONS(2245), + [anon_sym_u32] = ACTIONS(2245), + [anon_sym_i32] = ACTIONS(2245), + [anon_sym_u64] = ACTIONS(2245), + [anon_sym_i64] = ACTIONS(2245), + [anon_sym_u128] = ACTIONS(2245), + [anon_sym_i128] = ACTIONS(2245), + [anon_sym_isize] = ACTIONS(2245), + [anon_sym_usize] = ACTIONS(2245), + [anon_sym_f32] = ACTIONS(2245), + [anon_sym_f64] = ACTIONS(2245), + [anon_sym_bool] = ACTIONS(2245), + [anon_sym_str] = ACTIONS(2245), + [anon_sym_char] = ACTIONS(2245), + [anon_sym_DASH] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(2243), + [anon_sym_AMP] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_LT] = ACTIONS(2243), + [anon_sym_DOT_DOT] = ACTIONS(2243), + [anon_sym_COLON_COLON] = ACTIONS(2243), + [anon_sym_POUND] = ACTIONS(2243), + [anon_sym_SQUOTE] = ACTIONS(2245), + [anon_sym_async] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2245), + [anon_sym_const] = ACTIONS(2245), + [anon_sym_continue] = ACTIONS(2245), + [anon_sym_default] = ACTIONS(2245), + [anon_sym_enum] = ACTIONS(2245), + [anon_sym_fn] = ACTIONS(2245), + [anon_sym_for] = ACTIONS(2245), + [anon_sym_gen] = ACTIONS(2245), + [anon_sym_if] = ACTIONS(2245), + [anon_sym_impl] = ACTIONS(2245), + [anon_sym_let] = ACTIONS(2245), + [anon_sym_loop] = ACTIONS(2245), + [anon_sym_match] = ACTIONS(2245), + [anon_sym_mod] = ACTIONS(2245), + [anon_sym_pub] = ACTIONS(2245), + [anon_sym_return] = ACTIONS(2245), + [anon_sym_static] = ACTIONS(2245), + [anon_sym_struct] = ACTIONS(2245), + [anon_sym_trait] = ACTIONS(2245), + [anon_sym_type] = ACTIONS(2245), + [anon_sym_union] = ACTIONS(2245), + [anon_sym_unsafe] = ACTIONS(2245), + [anon_sym_use] = ACTIONS(2245), + [anon_sym_while] = ACTIONS(2245), + [anon_sym_extern] = ACTIONS(2245), + [anon_sym_yield] = ACTIONS(2245), + [anon_sym_move] = ACTIONS(2245), + [anon_sym_try] = ACTIONS(2245), + [sym_integer_literal] = ACTIONS(2243), + [aux_sym_string_literal_token1] = ACTIONS(2243), + [sym_char_literal] = ACTIONS(2243), + [anon_sym_true] = ACTIONS(2245), + [anon_sym_false] = ACTIONS(2245), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2245), + [sym_super] = ACTIONS(2245), + [sym_crate] = ACTIONS(2245), + [sym_metavariable] = ACTIONS(2243), + [sym__raw_string_literal_start] = ACTIONS(2243), + [sym_float_literal] = ACTIONS(2243), }, [STATE(612)] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [ts_builtin_sym_end] = ACTIONS(2317), - [sym_identifier] = ACTIONS(2319), - [anon_sym_SEMI] = ACTIONS(2317), - [anon_sym_macro_rules_BANG] = ACTIONS(2317), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_LBRACK] = ACTIONS(2317), - [anon_sym_LBRACE] = ACTIONS(2317), - [anon_sym_RBRACE] = ACTIONS(2317), - [anon_sym_STAR] = ACTIONS(2317), - [anon_sym_u8] = ACTIONS(2319), - [anon_sym_i8] = ACTIONS(2319), - [anon_sym_u16] = ACTIONS(2319), - [anon_sym_i16] = ACTIONS(2319), - [anon_sym_u32] = ACTIONS(2319), - [anon_sym_i32] = ACTIONS(2319), - [anon_sym_u64] = ACTIONS(2319), - [anon_sym_i64] = ACTIONS(2319), - [anon_sym_u128] = ACTIONS(2319), - [anon_sym_i128] = ACTIONS(2319), - [anon_sym_isize] = ACTIONS(2319), - [anon_sym_usize] = ACTIONS(2319), - [anon_sym_f32] = ACTIONS(2319), - [anon_sym_f64] = ACTIONS(2319), - [anon_sym_bool] = ACTIONS(2319), - [anon_sym_str] = ACTIONS(2319), - [anon_sym_char] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2317), - [anon_sym_BANG] = ACTIONS(2317), - [anon_sym_AMP] = ACTIONS(2317), - [anon_sym_PIPE] = ACTIONS(2317), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_DOT_DOT] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2317), - [anon_sym_POUND] = ACTIONS(2317), - [anon_sym_SQUOTE] = ACTIONS(2319), - [anon_sym_async] = ACTIONS(2319), - [anon_sym_break] = ACTIONS(2319), - [anon_sym_const] = ACTIONS(2319), - [anon_sym_continue] = ACTIONS(2319), - [anon_sym_default] = ACTIONS(2319), - [anon_sym_enum] = ACTIONS(2319), - [anon_sym_fn] = ACTIONS(2319), - [anon_sym_for] = ACTIONS(2319), - [anon_sym_gen] = ACTIONS(2319), - [anon_sym_if] = ACTIONS(2319), - [anon_sym_impl] = ACTIONS(2319), - [anon_sym_let] = ACTIONS(2319), - [anon_sym_loop] = ACTIONS(2319), - [anon_sym_match] = ACTIONS(2319), - [anon_sym_mod] = ACTIONS(2319), - [anon_sym_pub] = ACTIONS(2319), - [anon_sym_return] = ACTIONS(2319), - [anon_sym_static] = ACTIONS(2319), - [anon_sym_struct] = ACTIONS(2319), - [anon_sym_trait] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2319), - [anon_sym_union] = ACTIONS(2319), - [anon_sym_unsafe] = ACTIONS(2319), - [anon_sym_use] = ACTIONS(2319), - [anon_sym_while] = ACTIONS(2319), - [anon_sym_extern] = ACTIONS(2319), - [anon_sym_yield] = ACTIONS(2319), - [anon_sym_move] = ACTIONS(2319), - [anon_sym_try] = ACTIONS(2319), - [sym_integer_literal] = ACTIONS(2317), - [aux_sym_string_literal_token1] = ACTIONS(2317), - [sym_char_literal] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2319), - [sym_super] = ACTIONS(2319), - [sym_crate] = ACTIONS(2319), - [sym_metavariable] = ACTIONS(2317), - [sym__raw_string_literal_start] = ACTIONS(2317), - [sym_float_literal] = ACTIONS(2317), + [ts_builtin_sym_end] = ACTIONS(2247), + [sym_identifier] = ACTIONS(2249), + [anon_sym_SEMI] = ACTIONS(2247), + [anon_sym_macro_rules_BANG] = ACTIONS(2247), + [anon_sym_LPAREN] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(2247), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_RBRACE] = ACTIONS(2247), + [anon_sym_STAR] = ACTIONS(2247), + [anon_sym_u8] = ACTIONS(2249), + [anon_sym_i8] = ACTIONS(2249), + [anon_sym_u16] = ACTIONS(2249), + [anon_sym_i16] = ACTIONS(2249), + [anon_sym_u32] = ACTIONS(2249), + [anon_sym_i32] = ACTIONS(2249), + [anon_sym_u64] = ACTIONS(2249), + [anon_sym_i64] = ACTIONS(2249), + [anon_sym_u128] = ACTIONS(2249), + [anon_sym_i128] = ACTIONS(2249), + [anon_sym_isize] = ACTIONS(2249), + [anon_sym_usize] = ACTIONS(2249), + [anon_sym_f32] = ACTIONS(2249), + [anon_sym_f64] = ACTIONS(2249), + [anon_sym_bool] = ACTIONS(2249), + [anon_sym_str] = ACTIONS(2249), + [anon_sym_char] = ACTIONS(2249), + [anon_sym_DASH] = ACTIONS(2247), + [anon_sym_BANG] = ACTIONS(2247), + [anon_sym_AMP] = ACTIONS(2247), + [anon_sym_PIPE] = ACTIONS(2247), + [anon_sym_LT] = ACTIONS(2247), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_COLON_COLON] = ACTIONS(2247), + [anon_sym_POUND] = ACTIONS(2247), + [anon_sym_SQUOTE] = ACTIONS(2249), + [anon_sym_async] = ACTIONS(2249), + [anon_sym_break] = ACTIONS(2249), + [anon_sym_const] = ACTIONS(2249), + [anon_sym_continue] = ACTIONS(2249), + [anon_sym_default] = ACTIONS(2249), + [anon_sym_enum] = ACTIONS(2249), + [anon_sym_fn] = ACTIONS(2249), + [anon_sym_for] = ACTIONS(2249), + [anon_sym_gen] = ACTIONS(2249), + [anon_sym_if] = ACTIONS(2249), + [anon_sym_impl] = ACTIONS(2249), + [anon_sym_let] = ACTIONS(2249), + [anon_sym_loop] = ACTIONS(2249), + [anon_sym_match] = ACTIONS(2249), + [anon_sym_mod] = ACTIONS(2249), + [anon_sym_pub] = ACTIONS(2249), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_static] = ACTIONS(2249), + [anon_sym_struct] = ACTIONS(2249), + [anon_sym_trait] = ACTIONS(2249), + [anon_sym_type] = ACTIONS(2249), + [anon_sym_union] = ACTIONS(2249), + [anon_sym_unsafe] = ACTIONS(2249), + [anon_sym_use] = ACTIONS(2249), + [anon_sym_while] = ACTIONS(2249), + [anon_sym_extern] = ACTIONS(2249), + [anon_sym_yield] = ACTIONS(2249), + [anon_sym_move] = ACTIONS(2249), + [anon_sym_try] = ACTIONS(2249), + [sym_integer_literal] = ACTIONS(2247), + [aux_sym_string_literal_token1] = ACTIONS(2247), + [sym_char_literal] = ACTIONS(2247), + [anon_sym_true] = ACTIONS(2249), + [anon_sym_false] = ACTIONS(2249), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2249), + [sym_super] = ACTIONS(2249), + [sym_crate] = ACTIONS(2249), + [sym_metavariable] = ACTIONS(2247), + [sym__raw_string_literal_start] = ACTIONS(2247), + [sym_float_literal] = ACTIONS(2247), }, [STATE(613)] = { [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [ts_builtin_sym_end] = ACTIONS(2321), - [sym_identifier] = ACTIONS(2323), - [anon_sym_SEMI] = ACTIONS(2321), - [anon_sym_macro_rules_BANG] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2321), - [anon_sym_RBRACE] = ACTIONS(2321), - [anon_sym_STAR] = ACTIONS(2321), - [anon_sym_u8] = ACTIONS(2323), - [anon_sym_i8] = ACTIONS(2323), - [anon_sym_u16] = ACTIONS(2323), - [anon_sym_i16] = ACTIONS(2323), - [anon_sym_u32] = ACTIONS(2323), - [anon_sym_i32] = ACTIONS(2323), - [anon_sym_u64] = ACTIONS(2323), - [anon_sym_i64] = ACTIONS(2323), - [anon_sym_u128] = ACTIONS(2323), - [anon_sym_i128] = ACTIONS(2323), - [anon_sym_isize] = ACTIONS(2323), - [anon_sym_usize] = ACTIONS(2323), - [anon_sym_f32] = ACTIONS(2323), - [anon_sym_f64] = ACTIONS(2323), - [anon_sym_bool] = ACTIONS(2323), - [anon_sym_str] = ACTIONS(2323), - [anon_sym_char] = ACTIONS(2323), - [anon_sym_DASH] = ACTIONS(2321), - [anon_sym_BANG] = ACTIONS(2321), - [anon_sym_AMP] = ACTIONS(2321), - [anon_sym_PIPE] = ACTIONS(2321), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_DOT_DOT] = ACTIONS(2321), - [anon_sym_COLON_COLON] = ACTIONS(2321), - [anon_sym_POUND] = ACTIONS(2321), - [anon_sym_SQUOTE] = ACTIONS(2323), - [anon_sym_async] = ACTIONS(2323), - [anon_sym_break] = ACTIONS(2323), - [anon_sym_const] = ACTIONS(2323), - [anon_sym_continue] = ACTIONS(2323), - [anon_sym_default] = ACTIONS(2323), - [anon_sym_enum] = ACTIONS(2323), - [anon_sym_fn] = ACTIONS(2323), - [anon_sym_for] = ACTIONS(2323), - [anon_sym_gen] = ACTIONS(2323), - [anon_sym_if] = ACTIONS(2323), - [anon_sym_impl] = ACTIONS(2323), - [anon_sym_let] = ACTIONS(2323), - [anon_sym_loop] = ACTIONS(2323), - [anon_sym_match] = ACTIONS(2323), - [anon_sym_mod] = ACTIONS(2323), - [anon_sym_pub] = ACTIONS(2323), - [anon_sym_return] = ACTIONS(2323), - [anon_sym_static] = ACTIONS(2323), - [anon_sym_struct] = ACTIONS(2323), - [anon_sym_trait] = ACTIONS(2323), - [anon_sym_type] = ACTIONS(2323), - [anon_sym_union] = ACTIONS(2323), - [anon_sym_unsafe] = ACTIONS(2323), - [anon_sym_use] = ACTIONS(2323), - [anon_sym_while] = ACTIONS(2323), - [anon_sym_extern] = ACTIONS(2323), - [anon_sym_yield] = ACTIONS(2323), - [anon_sym_move] = ACTIONS(2323), - [anon_sym_try] = ACTIONS(2323), - [sym_integer_literal] = ACTIONS(2321), - [aux_sym_string_literal_token1] = ACTIONS(2321), - [sym_char_literal] = ACTIONS(2321), - [anon_sym_true] = ACTIONS(2323), - [anon_sym_false] = ACTIONS(2323), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2323), - [sym_super] = ACTIONS(2323), - [sym_crate] = ACTIONS(2323), - [sym_metavariable] = ACTIONS(2321), - [sym__raw_string_literal_start] = ACTIONS(2321), - [sym_float_literal] = ACTIONS(2321), + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_identifier] = ACTIONS(2253), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_macro_rules_BANG] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_u8] = ACTIONS(2253), + [anon_sym_i8] = ACTIONS(2253), + [anon_sym_u16] = ACTIONS(2253), + [anon_sym_i16] = ACTIONS(2253), + [anon_sym_u32] = ACTIONS(2253), + [anon_sym_i32] = ACTIONS(2253), + [anon_sym_u64] = ACTIONS(2253), + [anon_sym_i64] = ACTIONS(2253), + [anon_sym_u128] = ACTIONS(2253), + [anon_sym_i128] = ACTIONS(2253), + [anon_sym_isize] = ACTIONS(2253), + [anon_sym_usize] = ACTIONS(2253), + [anon_sym_f32] = ACTIONS(2253), + [anon_sym_f64] = ACTIONS(2253), + [anon_sym_bool] = ACTIONS(2253), + [anon_sym_str] = ACTIONS(2253), + [anon_sym_char] = ACTIONS(2253), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2251), + [anon_sym_PIPE] = ACTIONS(2251), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_DOT_DOT] = ACTIONS(2251), + [anon_sym_COLON_COLON] = ACTIONS(2251), + [anon_sym_POUND] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2253), + [anon_sym_async] = ACTIONS(2253), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_const] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_default] = ACTIONS(2253), + [anon_sym_enum] = ACTIONS(2253), + [anon_sym_fn] = ACTIONS(2253), + [anon_sym_for] = ACTIONS(2253), + [anon_sym_gen] = ACTIONS(2253), + [anon_sym_if] = ACTIONS(2253), + [anon_sym_impl] = ACTIONS(2253), + [anon_sym_let] = ACTIONS(2253), + [anon_sym_loop] = ACTIONS(2253), + [anon_sym_match] = ACTIONS(2253), + [anon_sym_mod] = ACTIONS(2253), + [anon_sym_pub] = ACTIONS(2253), + [anon_sym_return] = ACTIONS(2253), + [anon_sym_static] = ACTIONS(2253), + [anon_sym_struct] = ACTIONS(2253), + [anon_sym_trait] = ACTIONS(2253), + [anon_sym_type] = ACTIONS(2253), + [anon_sym_union] = ACTIONS(2253), + [anon_sym_unsafe] = ACTIONS(2253), + [anon_sym_use] = ACTIONS(2253), + [anon_sym_while] = ACTIONS(2253), + [anon_sym_extern] = ACTIONS(2253), + [anon_sym_yield] = ACTIONS(2253), + [anon_sym_move] = ACTIONS(2253), + [anon_sym_try] = ACTIONS(2253), + [sym_integer_literal] = ACTIONS(2251), + [aux_sym_string_literal_token1] = ACTIONS(2251), + [sym_char_literal] = ACTIONS(2251), + [anon_sym_true] = ACTIONS(2253), + [anon_sym_false] = ACTIONS(2253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2253), + [sym_super] = ACTIONS(2253), + [sym_crate] = ACTIONS(2253), + [sym_metavariable] = ACTIONS(2251), + [sym__raw_string_literal_start] = ACTIONS(2251), + [sym_float_literal] = ACTIONS(2251), }, [STATE(614)] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [ts_builtin_sym_end] = ACTIONS(2325), - [sym_identifier] = ACTIONS(2327), - [anon_sym_SEMI] = ACTIONS(2325), - [anon_sym_macro_rules_BANG] = ACTIONS(2325), - [anon_sym_LPAREN] = ACTIONS(2325), - [anon_sym_LBRACK] = ACTIONS(2325), - [anon_sym_LBRACE] = ACTIONS(2325), - [anon_sym_RBRACE] = ACTIONS(2325), - [anon_sym_STAR] = ACTIONS(2325), - [anon_sym_u8] = ACTIONS(2327), - [anon_sym_i8] = ACTIONS(2327), - [anon_sym_u16] = ACTIONS(2327), - [anon_sym_i16] = ACTIONS(2327), - [anon_sym_u32] = ACTIONS(2327), - [anon_sym_i32] = ACTIONS(2327), - [anon_sym_u64] = ACTIONS(2327), - [anon_sym_i64] = ACTIONS(2327), - [anon_sym_u128] = ACTIONS(2327), - [anon_sym_i128] = ACTIONS(2327), - [anon_sym_isize] = ACTIONS(2327), - [anon_sym_usize] = ACTIONS(2327), - [anon_sym_f32] = ACTIONS(2327), - [anon_sym_f64] = ACTIONS(2327), - [anon_sym_bool] = ACTIONS(2327), - [anon_sym_str] = ACTIONS(2327), - [anon_sym_char] = ACTIONS(2327), - [anon_sym_DASH] = ACTIONS(2325), - [anon_sym_BANG] = ACTIONS(2325), - [anon_sym_AMP] = ACTIONS(2325), - [anon_sym_PIPE] = ACTIONS(2325), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_DOT_DOT] = ACTIONS(2325), - [anon_sym_COLON_COLON] = ACTIONS(2325), - [anon_sym_POUND] = ACTIONS(2325), - [anon_sym_SQUOTE] = ACTIONS(2327), - [anon_sym_async] = ACTIONS(2327), - [anon_sym_break] = ACTIONS(2327), - [anon_sym_const] = ACTIONS(2327), - [anon_sym_continue] = ACTIONS(2327), - [anon_sym_default] = ACTIONS(2327), - [anon_sym_enum] = ACTIONS(2327), - [anon_sym_fn] = ACTIONS(2327), - [anon_sym_for] = ACTIONS(2327), - [anon_sym_gen] = ACTIONS(2327), - [anon_sym_if] = ACTIONS(2327), - [anon_sym_impl] = ACTIONS(2327), - [anon_sym_let] = ACTIONS(2327), - [anon_sym_loop] = ACTIONS(2327), - [anon_sym_match] = ACTIONS(2327), - [anon_sym_mod] = ACTIONS(2327), - [anon_sym_pub] = ACTIONS(2327), - [anon_sym_return] = ACTIONS(2327), - [anon_sym_static] = ACTIONS(2327), - [anon_sym_struct] = ACTIONS(2327), - [anon_sym_trait] = ACTIONS(2327), - [anon_sym_type] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2327), - [anon_sym_unsafe] = ACTIONS(2327), - [anon_sym_use] = ACTIONS(2327), - [anon_sym_while] = ACTIONS(2327), - [anon_sym_extern] = ACTIONS(2327), - [anon_sym_yield] = ACTIONS(2327), - [anon_sym_move] = ACTIONS(2327), - [anon_sym_try] = ACTIONS(2327), - [sym_integer_literal] = ACTIONS(2325), - [aux_sym_string_literal_token1] = ACTIONS(2325), - [sym_char_literal] = ACTIONS(2325), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2327), - [sym_super] = ACTIONS(2327), - [sym_crate] = ACTIONS(2327), - [sym_metavariable] = ACTIONS(2325), - [sym__raw_string_literal_start] = ACTIONS(2325), - [sym_float_literal] = ACTIONS(2325), + [ts_builtin_sym_end] = ACTIONS(2255), + [sym_identifier] = ACTIONS(2257), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_macro_rules_BANG] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2255), + [anon_sym_u8] = ACTIONS(2257), + [anon_sym_i8] = ACTIONS(2257), + [anon_sym_u16] = ACTIONS(2257), + [anon_sym_i16] = ACTIONS(2257), + [anon_sym_u32] = ACTIONS(2257), + [anon_sym_i32] = ACTIONS(2257), + [anon_sym_u64] = ACTIONS(2257), + [anon_sym_i64] = ACTIONS(2257), + [anon_sym_u128] = ACTIONS(2257), + [anon_sym_i128] = ACTIONS(2257), + [anon_sym_isize] = ACTIONS(2257), + [anon_sym_usize] = ACTIONS(2257), + [anon_sym_f32] = ACTIONS(2257), + [anon_sym_f64] = ACTIONS(2257), + [anon_sym_bool] = ACTIONS(2257), + [anon_sym_str] = ACTIONS(2257), + [anon_sym_char] = ACTIONS(2257), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_AMP] = ACTIONS(2255), + [anon_sym_PIPE] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_DOT_DOT] = ACTIONS(2255), + [anon_sym_COLON_COLON] = ACTIONS(2255), + [anon_sym_POUND] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2257), + [anon_sym_async] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2257), + [anon_sym_const] = ACTIONS(2257), + [anon_sym_continue] = ACTIONS(2257), + [anon_sym_default] = ACTIONS(2257), + [anon_sym_enum] = ACTIONS(2257), + [anon_sym_fn] = ACTIONS(2257), + [anon_sym_for] = ACTIONS(2257), + [anon_sym_gen] = ACTIONS(2257), + [anon_sym_if] = ACTIONS(2257), + [anon_sym_impl] = ACTIONS(2257), + [anon_sym_let] = ACTIONS(2257), + [anon_sym_loop] = ACTIONS(2257), + [anon_sym_match] = ACTIONS(2257), + [anon_sym_mod] = ACTIONS(2257), + [anon_sym_pub] = ACTIONS(2257), + [anon_sym_return] = ACTIONS(2257), + [anon_sym_static] = ACTIONS(2257), + [anon_sym_struct] = ACTIONS(2257), + [anon_sym_trait] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2257), + [anon_sym_union] = ACTIONS(2257), + [anon_sym_unsafe] = ACTIONS(2257), + [anon_sym_use] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2257), + [anon_sym_extern] = ACTIONS(2257), + [anon_sym_yield] = ACTIONS(2257), + [anon_sym_move] = ACTIONS(2257), + [anon_sym_try] = ACTIONS(2257), + [sym_integer_literal] = ACTIONS(2255), + [aux_sym_string_literal_token1] = ACTIONS(2255), + [sym_char_literal] = ACTIONS(2255), + [anon_sym_true] = ACTIONS(2257), + [anon_sym_false] = ACTIONS(2257), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2257), + [sym_super] = ACTIONS(2257), + [sym_crate] = ACTIONS(2257), + [sym_metavariable] = ACTIONS(2255), + [sym__raw_string_literal_start] = ACTIONS(2255), + [sym_float_literal] = ACTIONS(2255), }, [STATE(615)] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(2329), - [sym_identifier] = ACTIONS(2331), - [anon_sym_SEMI] = ACTIONS(2329), - [anon_sym_macro_rules_BANG] = ACTIONS(2329), - [anon_sym_LPAREN] = ACTIONS(2329), - [anon_sym_LBRACK] = ACTIONS(2329), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_RBRACE] = ACTIONS(2329), - [anon_sym_STAR] = ACTIONS(2329), - [anon_sym_u8] = ACTIONS(2331), - [anon_sym_i8] = ACTIONS(2331), - [anon_sym_u16] = ACTIONS(2331), - [anon_sym_i16] = ACTIONS(2331), - [anon_sym_u32] = ACTIONS(2331), - [anon_sym_i32] = ACTIONS(2331), - [anon_sym_u64] = ACTIONS(2331), - [anon_sym_i64] = ACTIONS(2331), - [anon_sym_u128] = ACTIONS(2331), - [anon_sym_i128] = ACTIONS(2331), - [anon_sym_isize] = ACTIONS(2331), - [anon_sym_usize] = ACTIONS(2331), - [anon_sym_f32] = ACTIONS(2331), - [anon_sym_f64] = ACTIONS(2331), - [anon_sym_bool] = ACTIONS(2331), - [anon_sym_str] = ACTIONS(2331), - [anon_sym_char] = ACTIONS(2331), - [anon_sym_DASH] = ACTIONS(2329), - [anon_sym_BANG] = ACTIONS(2329), - [anon_sym_AMP] = ACTIONS(2329), - [anon_sym_PIPE] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(2329), - [anon_sym_DOT_DOT] = ACTIONS(2329), - [anon_sym_COLON_COLON] = ACTIONS(2329), - [anon_sym_POUND] = ACTIONS(2329), - [anon_sym_SQUOTE] = ACTIONS(2331), - [anon_sym_async] = ACTIONS(2331), - [anon_sym_break] = ACTIONS(2331), - [anon_sym_const] = ACTIONS(2331), - [anon_sym_continue] = ACTIONS(2331), - [anon_sym_default] = ACTIONS(2331), - [anon_sym_enum] = ACTIONS(2331), - [anon_sym_fn] = ACTIONS(2331), - [anon_sym_for] = ACTIONS(2331), - [anon_sym_gen] = ACTIONS(2331), - [anon_sym_if] = ACTIONS(2331), - [anon_sym_impl] = ACTIONS(2331), - [anon_sym_let] = ACTIONS(2331), - [anon_sym_loop] = ACTIONS(2331), - [anon_sym_match] = ACTIONS(2331), - [anon_sym_mod] = ACTIONS(2331), - [anon_sym_pub] = ACTIONS(2331), - [anon_sym_return] = ACTIONS(2331), - [anon_sym_static] = ACTIONS(2331), - [anon_sym_struct] = ACTIONS(2331), - [anon_sym_trait] = ACTIONS(2331), - [anon_sym_type] = ACTIONS(2331), - [anon_sym_union] = ACTIONS(2331), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_use] = ACTIONS(2331), - [anon_sym_while] = ACTIONS(2331), - [anon_sym_extern] = ACTIONS(2331), - [anon_sym_yield] = ACTIONS(2331), - [anon_sym_move] = ACTIONS(2331), - [anon_sym_try] = ACTIONS(2331), - [sym_integer_literal] = ACTIONS(2329), - [aux_sym_string_literal_token1] = ACTIONS(2329), - [sym_char_literal] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(2331), - [anon_sym_false] = ACTIONS(2331), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2331), - [sym_super] = ACTIONS(2331), - [sym_crate] = ACTIONS(2331), - [sym_metavariable] = ACTIONS(2329), - [sym__raw_string_literal_start] = ACTIONS(2329), - [sym_float_literal] = ACTIONS(2329), + [ts_builtin_sym_end] = ACTIONS(2259), + [sym_identifier] = ACTIONS(2261), + [anon_sym_SEMI] = ACTIONS(2259), + [anon_sym_macro_rules_BANG] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(2259), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_RBRACE] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(2259), + [anon_sym_u8] = ACTIONS(2261), + [anon_sym_i8] = ACTIONS(2261), + [anon_sym_u16] = ACTIONS(2261), + [anon_sym_i16] = ACTIONS(2261), + [anon_sym_u32] = ACTIONS(2261), + [anon_sym_i32] = ACTIONS(2261), + [anon_sym_u64] = ACTIONS(2261), + [anon_sym_i64] = ACTIONS(2261), + [anon_sym_u128] = ACTIONS(2261), + [anon_sym_i128] = ACTIONS(2261), + [anon_sym_isize] = ACTIONS(2261), + [anon_sym_usize] = ACTIONS(2261), + [anon_sym_f32] = ACTIONS(2261), + [anon_sym_f64] = ACTIONS(2261), + [anon_sym_bool] = ACTIONS(2261), + [anon_sym_str] = ACTIONS(2261), + [anon_sym_char] = ACTIONS(2261), + [anon_sym_DASH] = ACTIONS(2259), + [anon_sym_BANG] = ACTIONS(2259), + [anon_sym_AMP] = ACTIONS(2259), + [anon_sym_PIPE] = ACTIONS(2259), + [anon_sym_LT] = ACTIONS(2259), + [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_COLON_COLON] = ACTIONS(2259), + [anon_sym_POUND] = ACTIONS(2259), + [anon_sym_SQUOTE] = ACTIONS(2261), + [anon_sym_async] = ACTIONS(2261), + [anon_sym_break] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(2261), + [anon_sym_continue] = ACTIONS(2261), + [anon_sym_default] = ACTIONS(2261), + [anon_sym_enum] = ACTIONS(2261), + [anon_sym_fn] = ACTIONS(2261), + [anon_sym_for] = ACTIONS(2261), + [anon_sym_gen] = ACTIONS(2261), + [anon_sym_if] = ACTIONS(2261), + [anon_sym_impl] = ACTIONS(2261), + [anon_sym_let] = ACTIONS(2261), + [anon_sym_loop] = ACTIONS(2261), + [anon_sym_match] = ACTIONS(2261), + [anon_sym_mod] = ACTIONS(2261), + [anon_sym_pub] = ACTIONS(2261), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_static] = ACTIONS(2261), + [anon_sym_struct] = ACTIONS(2261), + [anon_sym_trait] = ACTIONS(2261), + [anon_sym_type] = ACTIONS(2261), + [anon_sym_union] = ACTIONS(2261), + [anon_sym_unsafe] = ACTIONS(2261), + [anon_sym_use] = ACTIONS(2261), + [anon_sym_while] = ACTIONS(2261), + [anon_sym_extern] = ACTIONS(2261), + [anon_sym_yield] = ACTIONS(2261), + [anon_sym_move] = ACTIONS(2261), + [anon_sym_try] = ACTIONS(2261), + [sym_integer_literal] = ACTIONS(2259), + [aux_sym_string_literal_token1] = ACTIONS(2259), + [sym_char_literal] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(2261), + [anon_sym_false] = ACTIONS(2261), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2261), + [sym_super] = ACTIONS(2261), + [sym_crate] = ACTIONS(2261), + [sym_metavariable] = ACTIONS(2259), + [sym__raw_string_literal_start] = ACTIONS(2259), + [sym_float_literal] = ACTIONS(2259), }, [STATE(616)] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [ts_builtin_sym_end] = ACTIONS(2333), - [sym_identifier] = ACTIONS(2335), - [anon_sym_SEMI] = ACTIONS(2333), - [anon_sym_macro_rules_BANG] = ACTIONS(2333), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_LBRACK] = ACTIONS(2333), - [anon_sym_LBRACE] = ACTIONS(2333), - [anon_sym_RBRACE] = ACTIONS(2333), - [anon_sym_STAR] = ACTIONS(2333), - [anon_sym_u8] = ACTIONS(2335), - [anon_sym_i8] = ACTIONS(2335), - [anon_sym_u16] = ACTIONS(2335), - [anon_sym_i16] = ACTIONS(2335), - [anon_sym_u32] = ACTIONS(2335), - [anon_sym_i32] = ACTIONS(2335), - [anon_sym_u64] = ACTIONS(2335), - [anon_sym_i64] = ACTIONS(2335), - [anon_sym_u128] = ACTIONS(2335), - [anon_sym_i128] = ACTIONS(2335), - [anon_sym_isize] = ACTIONS(2335), - [anon_sym_usize] = ACTIONS(2335), - [anon_sym_f32] = ACTIONS(2335), - [anon_sym_f64] = ACTIONS(2335), - [anon_sym_bool] = ACTIONS(2335), - [anon_sym_str] = ACTIONS(2335), - [anon_sym_char] = ACTIONS(2335), - [anon_sym_DASH] = ACTIONS(2333), - [anon_sym_BANG] = ACTIONS(2333), - [anon_sym_AMP] = ACTIONS(2333), - [anon_sym_PIPE] = ACTIONS(2333), - [anon_sym_LT] = ACTIONS(2333), - [anon_sym_DOT_DOT] = ACTIONS(2333), - [anon_sym_COLON_COLON] = ACTIONS(2333), - [anon_sym_POUND] = ACTIONS(2333), - [anon_sym_SQUOTE] = ACTIONS(2335), - [anon_sym_async] = ACTIONS(2335), - [anon_sym_break] = ACTIONS(2335), - [anon_sym_const] = ACTIONS(2335), - [anon_sym_continue] = ACTIONS(2335), - [anon_sym_default] = ACTIONS(2335), - [anon_sym_enum] = ACTIONS(2335), - [anon_sym_fn] = ACTIONS(2335), - [anon_sym_for] = ACTIONS(2335), - [anon_sym_gen] = ACTIONS(2335), - [anon_sym_if] = ACTIONS(2335), - [anon_sym_impl] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2335), - [anon_sym_loop] = ACTIONS(2335), - [anon_sym_match] = ACTIONS(2335), - [anon_sym_mod] = ACTIONS(2335), - [anon_sym_pub] = ACTIONS(2335), - [anon_sym_return] = ACTIONS(2335), - [anon_sym_static] = ACTIONS(2335), - [anon_sym_struct] = ACTIONS(2335), - [anon_sym_trait] = ACTIONS(2335), - [anon_sym_type] = ACTIONS(2335), - [anon_sym_union] = ACTIONS(2335), - [anon_sym_unsafe] = ACTIONS(2335), - [anon_sym_use] = ACTIONS(2335), - [anon_sym_while] = ACTIONS(2335), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_yield] = ACTIONS(2335), - [anon_sym_move] = ACTIONS(2335), - [anon_sym_try] = ACTIONS(2335), - [sym_integer_literal] = ACTIONS(2333), - [aux_sym_string_literal_token1] = ACTIONS(2333), - [sym_char_literal] = ACTIONS(2333), - [anon_sym_true] = ACTIONS(2335), - [anon_sym_false] = ACTIONS(2335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2335), - [sym_super] = ACTIONS(2335), - [sym_crate] = ACTIONS(2335), - [sym_metavariable] = ACTIONS(2333), - [sym__raw_string_literal_start] = ACTIONS(2333), - [sym_float_literal] = ACTIONS(2333), + [ts_builtin_sym_end] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2265), + [anon_sym_SEMI] = ACTIONS(2263), + [anon_sym_macro_rules_BANG] = ACTIONS(2263), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2263), + [anon_sym_LBRACE] = ACTIONS(2263), + [anon_sym_RBRACE] = ACTIONS(2263), + [anon_sym_STAR] = ACTIONS(2263), + [anon_sym_u8] = ACTIONS(2265), + [anon_sym_i8] = ACTIONS(2265), + [anon_sym_u16] = ACTIONS(2265), + [anon_sym_i16] = ACTIONS(2265), + [anon_sym_u32] = ACTIONS(2265), + [anon_sym_i32] = ACTIONS(2265), + [anon_sym_u64] = ACTIONS(2265), + [anon_sym_i64] = ACTIONS(2265), + [anon_sym_u128] = ACTIONS(2265), + [anon_sym_i128] = ACTIONS(2265), + [anon_sym_isize] = ACTIONS(2265), + [anon_sym_usize] = ACTIONS(2265), + [anon_sym_f32] = ACTIONS(2265), + [anon_sym_f64] = ACTIONS(2265), + [anon_sym_bool] = ACTIONS(2265), + [anon_sym_str] = ACTIONS(2265), + [anon_sym_char] = ACTIONS(2265), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_BANG] = ACTIONS(2263), + [anon_sym_AMP] = ACTIONS(2263), + [anon_sym_PIPE] = ACTIONS(2263), + [anon_sym_LT] = ACTIONS(2263), + [anon_sym_DOT_DOT] = ACTIONS(2263), + [anon_sym_COLON_COLON] = ACTIONS(2263), + [anon_sym_POUND] = ACTIONS(2263), + [anon_sym_SQUOTE] = ACTIONS(2265), + [anon_sym_async] = ACTIONS(2265), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_const] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_default] = ACTIONS(2265), + [anon_sym_enum] = ACTIONS(2265), + [anon_sym_fn] = ACTIONS(2265), + [anon_sym_for] = ACTIONS(2265), + [anon_sym_gen] = ACTIONS(2265), + [anon_sym_if] = ACTIONS(2265), + [anon_sym_impl] = ACTIONS(2265), + [anon_sym_let] = ACTIONS(2265), + [anon_sym_loop] = ACTIONS(2265), + [anon_sym_match] = ACTIONS(2265), + [anon_sym_mod] = ACTIONS(2265), + [anon_sym_pub] = ACTIONS(2265), + [anon_sym_return] = ACTIONS(2265), + [anon_sym_static] = ACTIONS(2265), + [anon_sym_struct] = ACTIONS(2265), + [anon_sym_trait] = ACTIONS(2265), + [anon_sym_type] = ACTIONS(2265), + [anon_sym_union] = ACTIONS(2265), + [anon_sym_unsafe] = ACTIONS(2265), + [anon_sym_use] = ACTIONS(2265), + [anon_sym_while] = ACTIONS(2265), + [anon_sym_extern] = ACTIONS(2265), + [anon_sym_yield] = ACTIONS(2265), + [anon_sym_move] = ACTIONS(2265), + [anon_sym_try] = ACTIONS(2265), + [sym_integer_literal] = ACTIONS(2263), + [aux_sym_string_literal_token1] = ACTIONS(2263), + [sym_char_literal] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(2265), + [anon_sym_false] = ACTIONS(2265), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2265), + [sym_super] = ACTIONS(2265), + [sym_crate] = ACTIONS(2265), + [sym_metavariable] = ACTIONS(2263), + [sym__raw_string_literal_start] = ACTIONS(2263), + [sym_float_literal] = ACTIONS(2263), }, [STATE(617)] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(2337), - [sym_identifier] = ACTIONS(2339), - [anon_sym_SEMI] = ACTIONS(2337), - [anon_sym_macro_rules_BANG] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_LBRACK] = ACTIONS(2337), - [anon_sym_LBRACE] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_STAR] = ACTIONS(2337), - [anon_sym_u8] = ACTIONS(2339), - [anon_sym_i8] = ACTIONS(2339), - [anon_sym_u16] = ACTIONS(2339), - [anon_sym_i16] = ACTIONS(2339), - [anon_sym_u32] = ACTIONS(2339), - [anon_sym_i32] = ACTIONS(2339), - [anon_sym_u64] = ACTIONS(2339), - [anon_sym_i64] = ACTIONS(2339), - [anon_sym_u128] = ACTIONS(2339), - [anon_sym_i128] = ACTIONS(2339), - [anon_sym_isize] = ACTIONS(2339), - [anon_sym_usize] = ACTIONS(2339), - [anon_sym_f32] = ACTIONS(2339), - [anon_sym_f64] = ACTIONS(2339), - [anon_sym_bool] = ACTIONS(2339), - [anon_sym_str] = ACTIONS(2339), - [anon_sym_char] = ACTIONS(2339), - [anon_sym_DASH] = ACTIONS(2337), - [anon_sym_BANG] = ACTIONS(2337), - [anon_sym_AMP] = ACTIONS(2337), - [anon_sym_PIPE] = ACTIONS(2337), - [anon_sym_LT] = ACTIONS(2337), - [anon_sym_DOT_DOT] = ACTIONS(2337), - [anon_sym_COLON_COLON] = ACTIONS(2337), - [anon_sym_POUND] = ACTIONS(2337), - [anon_sym_SQUOTE] = ACTIONS(2339), - [anon_sym_async] = ACTIONS(2339), - [anon_sym_break] = ACTIONS(2339), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_continue] = ACTIONS(2339), - [anon_sym_default] = ACTIONS(2339), - [anon_sym_enum] = ACTIONS(2339), - [anon_sym_fn] = ACTIONS(2339), - [anon_sym_for] = ACTIONS(2339), - [anon_sym_gen] = ACTIONS(2339), - [anon_sym_if] = ACTIONS(2339), - [anon_sym_impl] = ACTIONS(2339), - [anon_sym_let] = ACTIONS(2339), - [anon_sym_loop] = ACTIONS(2339), - [anon_sym_match] = ACTIONS(2339), - [anon_sym_mod] = ACTIONS(2339), - [anon_sym_pub] = ACTIONS(2339), - [anon_sym_return] = ACTIONS(2339), - [anon_sym_static] = ACTIONS(2339), - [anon_sym_struct] = ACTIONS(2339), - [anon_sym_trait] = ACTIONS(2339), - [anon_sym_type] = ACTIONS(2339), - [anon_sym_union] = ACTIONS(2339), - [anon_sym_unsafe] = ACTIONS(2339), - [anon_sym_use] = ACTIONS(2339), - [anon_sym_while] = ACTIONS(2339), - [anon_sym_extern] = ACTIONS(2339), - [anon_sym_yield] = ACTIONS(2339), - [anon_sym_move] = ACTIONS(2339), - [anon_sym_try] = ACTIONS(2339), - [sym_integer_literal] = ACTIONS(2337), - [aux_sym_string_literal_token1] = ACTIONS(2337), - [sym_char_literal] = ACTIONS(2337), - [anon_sym_true] = ACTIONS(2339), - [anon_sym_false] = ACTIONS(2339), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2339), - [sym_super] = ACTIONS(2339), - [sym_crate] = ACTIONS(2339), - [sym_metavariable] = ACTIONS(2337), - [sym__raw_string_literal_start] = ACTIONS(2337), - [sym_float_literal] = ACTIONS(2337), + [ts_builtin_sym_end] = ACTIONS(2267), + [sym_identifier] = ACTIONS(2269), + [anon_sym_SEMI] = ACTIONS(2267), + [anon_sym_macro_rules_BANG] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(2267), + [anon_sym_LBRACK] = ACTIONS(2267), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_RBRACE] = ACTIONS(2267), + [anon_sym_STAR] = ACTIONS(2267), + [anon_sym_u8] = ACTIONS(2269), + [anon_sym_i8] = ACTIONS(2269), + [anon_sym_u16] = ACTIONS(2269), + [anon_sym_i16] = ACTIONS(2269), + [anon_sym_u32] = ACTIONS(2269), + [anon_sym_i32] = ACTIONS(2269), + [anon_sym_u64] = ACTIONS(2269), + [anon_sym_i64] = ACTIONS(2269), + [anon_sym_u128] = ACTIONS(2269), + [anon_sym_i128] = ACTIONS(2269), + [anon_sym_isize] = ACTIONS(2269), + [anon_sym_usize] = ACTIONS(2269), + [anon_sym_f32] = ACTIONS(2269), + [anon_sym_f64] = ACTIONS(2269), + [anon_sym_bool] = ACTIONS(2269), + [anon_sym_str] = ACTIONS(2269), + [anon_sym_char] = ACTIONS(2269), + [anon_sym_DASH] = ACTIONS(2267), + [anon_sym_BANG] = ACTIONS(2267), + [anon_sym_AMP] = ACTIONS(2267), + [anon_sym_PIPE] = ACTIONS(2267), + [anon_sym_LT] = ACTIONS(2267), + [anon_sym_DOT_DOT] = ACTIONS(2267), + [anon_sym_COLON_COLON] = ACTIONS(2267), + [anon_sym_POUND] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_async] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2269), + [anon_sym_const] = ACTIONS(2269), + [anon_sym_continue] = ACTIONS(2269), + [anon_sym_default] = ACTIONS(2269), + [anon_sym_enum] = ACTIONS(2269), + [anon_sym_fn] = ACTIONS(2269), + [anon_sym_for] = ACTIONS(2269), + [anon_sym_gen] = ACTIONS(2269), + [anon_sym_if] = ACTIONS(2269), + [anon_sym_impl] = ACTIONS(2269), + [anon_sym_let] = ACTIONS(2269), + [anon_sym_loop] = ACTIONS(2269), + [anon_sym_match] = ACTIONS(2269), + [anon_sym_mod] = ACTIONS(2269), + [anon_sym_pub] = ACTIONS(2269), + [anon_sym_return] = ACTIONS(2269), + [anon_sym_static] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(2269), + [anon_sym_trait] = ACTIONS(2269), + [anon_sym_type] = ACTIONS(2269), + [anon_sym_union] = ACTIONS(2269), + [anon_sym_unsafe] = ACTIONS(2269), + [anon_sym_use] = ACTIONS(2269), + [anon_sym_while] = ACTIONS(2269), + [anon_sym_extern] = ACTIONS(2269), + [anon_sym_yield] = ACTIONS(2269), + [anon_sym_move] = ACTIONS(2269), + [anon_sym_try] = ACTIONS(2269), + [sym_integer_literal] = ACTIONS(2267), + [aux_sym_string_literal_token1] = ACTIONS(2267), + [sym_char_literal] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(2269), + [anon_sym_false] = ACTIONS(2269), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2269), + [sym_super] = ACTIONS(2269), + [sym_crate] = ACTIONS(2269), + [sym_metavariable] = ACTIONS(2267), + [sym__raw_string_literal_start] = ACTIONS(2267), + [sym_float_literal] = ACTIONS(2267), }, [STATE(618)] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [ts_builtin_sym_end] = ACTIONS(2341), - [sym_identifier] = ACTIONS(2343), - [anon_sym_SEMI] = ACTIONS(2341), - [anon_sym_macro_rules_BANG] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_LBRACK] = ACTIONS(2341), - [anon_sym_LBRACE] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_STAR] = ACTIONS(2341), - [anon_sym_u8] = ACTIONS(2343), - [anon_sym_i8] = ACTIONS(2343), - [anon_sym_u16] = ACTIONS(2343), - [anon_sym_i16] = ACTIONS(2343), - [anon_sym_u32] = ACTIONS(2343), - [anon_sym_i32] = ACTIONS(2343), - [anon_sym_u64] = ACTIONS(2343), - [anon_sym_i64] = ACTIONS(2343), - [anon_sym_u128] = ACTIONS(2343), - [anon_sym_i128] = ACTIONS(2343), - [anon_sym_isize] = ACTIONS(2343), - [anon_sym_usize] = ACTIONS(2343), - [anon_sym_f32] = ACTIONS(2343), - [anon_sym_f64] = ACTIONS(2343), - [anon_sym_bool] = ACTIONS(2343), - [anon_sym_str] = ACTIONS(2343), - [anon_sym_char] = ACTIONS(2343), - [anon_sym_DASH] = ACTIONS(2341), - [anon_sym_BANG] = ACTIONS(2341), - [anon_sym_AMP] = ACTIONS(2341), - [anon_sym_PIPE] = ACTIONS(2341), - [anon_sym_LT] = ACTIONS(2341), - [anon_sym_DOT_DOT] = ACTIONS(2341), - [anon_sym_COLON_COLON] = ACTIONS(2341), - [anon_sym_POUND] = ACTIONS(2341), - [anon_sym_SQUOTE] = ACTIONS(2343), - [anon_sym_async] = ACTIONS(2343), - [anon_sym_break] = ACTIONS(2343), - [anon_sym_const] = ACTIONS(2343), - [anon_sym_continue] = ACTIONS(2343), - [anon_sym_default] = ACTIONS(2343), - [anon_sym_enum] = ACTIONS(2343), - [anon_sym_fn] = ACTIONS(2343), - [anon_sym_for] = ACTIONS(2343), - [anon_sym_gen] = ACTIONS(2343), - [anon_sym_if] = ACTIONS(2343), - [anon_sym_impl] = ACTIONS(2343), - [anon_sym_let] = ACTIONS(2343), - [anon_sym_loop] = ACTIONS(2343), - [anon_sym_match] = ACTIONS(2343), - [anon_sym_mod] = ACTIONS(2343), - [anon_sym_pub] = ACTIONS(2343), - [anon_sym_return] = ACTIONS(2343), - [anon_sym_static] = ACTIONS(2343), - [anon_sym_struct] = ACTIONS(2343), - [anon_sym_trait] = ACTIONS(2343), - [anon_sym_type] = ACTIONS(2343), - [anon_sym_union] = ACTIONS(2343), - [anon_sym_unsafe] = ACTIONS(2343), - [anon_sym_use] = ACTIONS(2343), - [anon_sym_while] = ACTIONS(2343), - [anon_sym_extern] = ACTIONS(2343), - [anon_sym_yield] = ACTIONS(2343), - [anon_sym_move] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2343), - [sym_integer_literal] = ACTIONS(2341), - [aux_sym_string_literal_token1] = ACTIONS(2341), - [sym_char_literal] = ACTIONS(2341), - [anon_sym_true] = ACTIONS(2343), - [anon_sym_false] = ACTIONS(2343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2343), - [sym_super] = ACTIONS(2343), - [sym_crate] = ACTIONS(2343), - [sym_metavariable] = ACTIONS(2341), - [sym__raw_string_literal_start] = ACTIONS(2341), - [sym_float_literal] = ACTIONS(2341), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2273), + [anon_sym_SEMI] = ACTIONS(2271), + [anon_sym_macro_rules_BANG] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(2271), + [anon_sym_LBRACK] = ACTIONS(2271), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_RBRACE] = ACTIONS(2271), + [anon_sym_STAR] = ACTIONS(2271), + [anon_sym_u8] = ACTIONS(2273), + [anon_sym_i8] = ACTIONS(2273), + [anon_sym_u16] = ACTIONS(2273), + [anon_sym_i16] = ACTIONS(2273), + [anon_sym_u32] = ACTIONS(2273), + [anon_sym_i32] = ACTIONS(2273), + [anon_sym_u64] = ACTIONS(2273), + [anon_sym_i64] = ACTIONS(2273), + [anon_sym_u128] = ACTIONS(2273), + [anon_sym_i128] = ACTIONS(2273), + [anon_sym_isize] = ACTIONS(2273), + [anon_sym_usize] = ACTIONS(2273), + [anon_sym_f32] = ACTIONS(2273), + [anon_sym_f64] = ACTIONS(2273), + [anon_sym_bool] = ACTIONS(2273), + [anon_sym_str] = ACTIONS(2273), + [anon_sym_char] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2271), + [anon_sym_BANG] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(2271), + [anon_sym_PIPE] = ACTIONS(2271), + [anon_sym_LT] = ACTIONS(2271), + [anon_sym_DOT_DOT] = ACTIONS(2271), + [anon_sym_COLON_COLON] = ACTIONS(2271), + [anon_sym_POUND] = ACTIONS(2271), + [anon_sym_SQUOTE] = ACTIONS(2273), + [anon_sym_async] = ACTIONS(2273), + [anon_sym_break] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(2273), + [anon_sym_continue] = ACTIONS(2273), + [anon_sym_default] = ACTIONS(2273), + [anon_sym_enum] = ACTIONS(2273), + [anon_sym_fn] = ACTIONS(2273), + [anon_sym_for] = ACTIONS(2273), + [anon_sym_gen] = ACTIONS(2273), + [anon_sym_if] = ACTIONS(2273), + [anon_sym_impl] = ACTIONS(2273), + [anon_sym_let] = ACTIONS(2273), + [anon_sym_loop] = ACTIONS(2273), + [anon_sym_match] = ACTIONS(2273), + [anon_sym_mod] = ACTIONS(2273), + [anon_sym_pub] = ACTIONS(2273), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_static] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(2273), + [anon_sym_trait] = ACTIONS(2273), + [anon_sym_type] = ACTIONS(2273), + [anon_sym_union] = ACTIONS(2273), + [anon_sym_unsafe] = ACTIONS(2273), + [anon_sym_use] = ACTIONS(2273), + [anon_sym_while] = ACTIONS(2273), + [anon_sym_extern] = ACTIONS(2273), + [anon_sym_yield] = ACTIONS(2273), + [anon_sym_move] = ACTIONS(2273), + [anon_sym_try] = ACTIONS(2273), + [sym_integer_literal] = ACTIONS(2271), + [aux_sym_string_literal_token1] = ACTIONS(2271), + [sym_char_literal] = ACTIONS(2271), + [anon_sym_true] = ACTIONS(2273), + [anon_sym_false] = ACTIONS(2273), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2273), + [sym_super] = ACTIONS(2273), + [sym_crate] = ACTIONS(2273), + [sym_metavariable] = ACTIONS(2271), + [sym__raw_string_literal_start] = ACTIONS(2271), + [sym_float_literal] = ACTIONS(2271), }, [STATE(619)] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(2345), - [sym_identifier] = ACTIONS(2347), - [anon_sym_SEMI] = ACTIONS(2345), - [anon_sym_macro_rules_BANG] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_LBRACK] = ACTIONS(2345), - [anon_sym_LBRACE] = ACTIONS(2345), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_STAR] = ACTIONS(2345), - [anon_sym_u8] = ACTIONS(2347), - [anon_sym_i8] = ACTIONS(2347), - [anon_sym_u16] = ACTIONS(2347), - [anon_sym_i16] = ACTIONS(2347), - [anon_sym_u32] = ACTIONS(2347), - [anon_sym_i32] = ACTIONS(2347), - [anon_sym_u64] = ACTIONS(2347), - [anon_sym_i64] = ACTIONS(2347), - [anon_sym_u128] = ACTIONS(2347), - [anon_sym_i128] = ACTIONS(2347), - [anon_sym_isize] = ACTIONS(2347), - [anon_sym_usize] = ACTIONS(2347), - [anon_sym_f32] = ACTIONS(2347), - [anon_sym_f64] = ACTIONS(2347), - [anon_sym_bool] = ACTIONS(2347), - [anon_sym_str] = ACTIONS(2347), - [anon_sym_char] = ACTIONS(2347), - [anon_sym_DASH] = ACTIONS(2345), - [anon_sym_BANG] = ACTIONS(2345), - [anon_sym_AMP] = ACTIONS(2345), - [anon_sym_PIPE] = ACTIONS(2345), - [anon_sym_LT] = ACTIONS(2345), - [anon_sym_DOT_DOT] = ACTIONS(2345), - [anon_sym_COLON_COLON] = ACTIONS(2345), - [anon_sym_POUND] = ACTIONS(2345), - [anon_sym_SQUOTE] = ACTIONS(2347), - [anon_sym_async] = ACTIONS(2347), - [anon_sym_break] = ACTIONS(2347), - [anon_sym_const] = ACTIONS(2347), - [anon_sym_continue] = ACTIONS(2347), - [anon_sym_default] = ACTIONS(2347), - [anon_sym_enum] = ACTIONS(2347), - [anon_sym_fn] = ACTIONS(2347), - [anon_sym_for] = ACTIONS(2347), - [anon_sym_gen] = ACTIONS(2347), - [anon_sym_if] = ACTIONS(2347), - [anon_sym_impl] = ACTIONS(2347), - [anon_sym_let] = ACTIONS(2347), - [anon_sym_loop] = ACTIONS(2347), - [anon_sym_match] = ACTIONS(2347), - [anon_sym_mod] = ACTIONS(2347), - [anon_sym_pub] = ACTIONS(2347), - [anon_sym_return] = ACTIONS(2347), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_struct] = ACTIONS(2347), - [anon_sym_trait] = ACTIONS(2347), - [anon_sym_type] = ACTIONS(2347), - [anon_sym_union] = ACTIONS(2347), - [anon_sym_unsafe] = ACTIONS(2347), - [anon_sym_use] = ACTIONS(2347), - [anon_sym_while] = ACTIONS(2347), - [anon_sym_extern] = ACTIONS(2347), - [anon_sym_yield] = ACTIONS(2347), - [anon_sym_move] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2347), - [sym_integer_literal] = ACTIONS(2345), - [aux_sym_string_literal_token1] = ACTIONS(2345), - [sym_char_literal] = ACTIONS(2345), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2347), - [sym_super] = ACTIONS(2347), - [sym_crate] = ACTIONS(2347), - [sym_metavariable] = ACTIONS(2345), - [sym__raw_string_literal_start] = ACTIONS(2345), - [sym_float_literal] = ACTIONS(2345), + [ts_builtin_sym_end] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2277), + [anon_sym_SEMI] = ACTIONS(2275), + [anon_sym_macro_rules_BANG] = ACTIONS(2275), + [anon_sym_LPAREN] = ACTIONS(2275), + [anon_sym_LBRACK] = ACTIONS(2275), + [anon_sym_LBRACE] = ACTIONS(2275), + [anon_sym_RBRACE] = ACTIONS(2275), + [anon_sym_STAR] = ACTIONS(2275), + [anon_sym_u8] = ACTIONS(2277), + [anon_sym_i8] = ACTIONS(2277), + [anon_sym_u16] = ACTIONS(2277), + [anon_sym_i16] = ACTIONS(2277), + [anon_sym_u32] = ACTIONS(2277), + [anon_sym_i32] = ACTIONS(2277), + [anon_sym_u64] = ACTIONS(2277), + [anon_sym_i64] = ACTIONS(2277), + [anon_sym_u128] = ACTIONS(2277), + [anon_sym_i128] = ACTIONS(2277), + [anon_sym_isize] = ACTIONS(2277), + [anon_sym_usize] = ACTIONS(2277), + [anon_sym_f32] = ACTIONS(2277), + [anon_sym_f64] = ACTIONS(2277), + [anon_sym_bool] = ACTIONS(2277), + [anon_sym_str] = ACTIONS(2277), + [anon_sym_char] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2275), + [anon_sym_BANG] = ACTIONS(2275), + [anon_sym_AMP] = ACTIONS(2275), + [anon_sym_PIPE] = ACTIONS(2275), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_DOT_DOT] = ACTIONS(2275), + [anon_sym_COLON_COLON] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(2275), + [anon_sym_SQUOTE] = ACTIONS(2277), + [anon_sym_async] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_default] = ACTIONS(2277), + [anon_sym_enum] = ACTIONS(2277), + [anon_sym_fn] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_gen] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_impl] = ACTIONS(2277), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_loop] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_mod] = ACTIONS(2277), + [anon_sym_pub] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_static] = ACTIONS(2277), + [anon_sym_struct] = ACTIONS(2277), + [anon_sym_trait] = ACTIONS(2277), + [anon_sym_type] = ACTIONS(2277), + [anon_sym_union] = ACTIONS(2277), + [anon_sym_unsafe] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_extern] = ACTIONS(2277), + [anon_sym_yield] = ACTIONS(2277), + [anon_sym_move] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2277), + [sym_integer_literal] = ACTIONS(2275), + [aux_sym_string_literal_token1] = ACTIONS(2275), + [sym_char_literal] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(2277), + [anon_sym_false] = ACTIONS(2277), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2277), + [sym_super] = ACTIONS(2277), + [sym_crate] = ACTIONS(2277), + [sym_metavariable] = ACTIONS(2275), + [sym__raw_string_literal_start] = ACTIONS(2275), + [sym_float_literal] = ACTIONS(2275), }, [STATE(620)] = { [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(2349), - [sym_identifier] = ACTIONS(2351), - [anon_sym_SEMI] = ACTIONS(2349), - [anon_sym_macro_rules_BANG] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_LBRACK] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_STAR] = ACTIONS(2349), - [anon_sym_u8] = ACTIONS(2351), - [anon_sym_i8] = ACTIONS(2351), - [anon_sym_u16] = ACTIONS(2351), - [anon_sym_i16] = ACTIONS(2351), - [anon_sym_u32] = ACTIONS(2351), - [anon_sym_i32] = ACTIONS(2351), - [anon_sym_u64] = ACTIONS(2351), - [anon_sym_i64] = ACTIONS(2351), - [anon_sym_u128] = ACTIONS(2351), - [anon_sym_i128] = ACTIONS(2351), - [anon_sym_isize] = ACTIONS(2351), - [anon_sym_usize] = ACTIONS(2351), - [anon_sym_f32] = ACTIONS(2351), - [anon_sym_f64] = ACTIONS(2351), - [anon_sym_bool] = ACTIONS(2351), - [anon_sym_str] = ACTIONS(2351), - [anon_sym_char] = ACTIONS(2351), - [anon_sym_DASH] = ACTIONS(2349), - [anon_sym_BANG] = ACTIONS(2349), - [anon_sym_AMP] = ACTIONS(2349), - [anon_sym_PIPE] = ACTIONS(2349), - [anon_sym_LT] = ACTIONS(2349), - [anon_sym_DOT_DOT] = ACTIONS(2349), - [anon_sym_COLON_COLON] = ACTIONS(2349), - [anon_sym_POUND] = ACTIONS(2349), - [anon_sym_SQUOTE] = ACTIONS(2351), - [anon_sym_async] = ACTIONS(2351), - [anon_sym_break] = ACTIONS(2351), - [anon_sym_const] = ACTIONS(2351), - [anon_sym_continue] = ACTIONS(2351), - [anon_sym_default] = ACTIONS(2351), - [anon_sym_enum] = ACTIONS(2351), - [anon_sym_fn] = ACTIONS(2351), - [anon_sym_for] = ACTIONS(2351), - [anon_sym_gen] = ACTIONS(2351), - [anon_sym_if] = ACTIONS(2351), - [anon_sym_impl] = ACTIONS(2351), - [anon_sym_let] = ACTIONS(2351), - [anon_sym_loop] = ACTIONS(2351), - [anon_sym_match] = ACTIONS(2351), - [anon_sym_mod] = ACTIONS(2351), - [anon_sym_pub] = ACTIONS(2351), - [anon_sym_return] = ACTIONS(2351), - [anon_sym_static] = ACTIONS(2351), - [anon_sym_struct] = ACTIONS(2351), - [anon_sym_trait] = ACTIONS(2351), - [anon_sym_type] = ACTIONS(2351), - [anon_sym_union] = ACTIONS(2351), - [anon_sym_unsafe] = ACTIONS(2351), - [anon_sym_use] = ACTIONS(2351), - [anon_sym_while] = ACTIONS(2351), - [anon_sym_extern] = ACTIONS(2351), - [anon_sym_yield] = ACTIONS(2351), - [anon_sym_move] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2351), - [sym_integer_literal] = ACTIONS(2349), - [aux_sym_string_literal_token1] = ACTIONS(2349), - [sym_char_literal] = ACTIONS(2349), - [anon_sym_true] = ACTIONS(2351), - [anon_sym_false] = ACTIONS(2351), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2351), - [sym_super] = ACTIONS(2351), - [sym_crate] = ACTIONS(2351), - [sym_metavariable] = ACTIONS(2349), - [sym__raw_string_literal_start] = ACTIONS(2349), - [sym_float_literal] = ACTIONS(2349), + [ts_builtin_sym_end] = ACTIONS(2279), + [sym_identifier] = ACTIONS(2281), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_macro_rules_BANG] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_STAR] = ACTIONS(2279), + [anon_sym_u8] = ACTIONS(2281), + [anon_sym_i8] = ACTIONS(2281), + [anon_sym_u16] = ACTIONS(2281), + [anon_sym_i16] = ACTIONS(2281), + [anon_sym_u32] = ACTIONS(2281), + [anon_sym_i32] = ACTIONS(2281), + [anon_sym_u64] = ACTIONS(2281), + [anon_sym_i64] = ACTIONS(2281), + [anon_sym_u128] = ACTIONS(2281), + [anon_sym_i128] = ACTIONS(2281), + [anon_sym_isize] = ACTIONS(2281), + [anon_sym_usize] = ACTIONS(2281), + [anon_sym_f32] = ACTIONS(2281), + [anon_sym_f64] = ACTIONS(2281), + [anon_sym_bool] = ACTIONS(2281), + [anon_sym_str] = ACTIONS(2281), + [anon_sym_char] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2279), + [anon_sym_BANG] = ACTIONS(2279), + [anon_sym_AMP] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_LT] = ACTIONS(2279), + [anon_sym_DOT_DOT] = ACTIONS(2279), + [anon_sym_COLON_COLON] = ACTIONS(2279), + [anon_sym_POUND] = ACTIONS(2279), + [anon_sym_SQUOTE] = ACTIONS(2281), + [anon_sym_async] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_default] = ACTIONS(2281), + [anon_sym_enum] = ACTIONS(2281), + [anon_sym_fn] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_gen] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_impl] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_mod] = ACTIONS(2281), + [anon_sym_pub] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_static] = ACTIONS(2281), + [anon_sym_struct] = ACTIONS(2281), + [anon_sym_trait] = ACTIONS(2281), + [anon_sym_type] = ACTIONS(2281), + [anon_sym_union] = ACTIONS(2281), + [anon_sym_unsafe] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_extern] = ACTIONS(2281), + [anon_sym_yield] = ACTIONS(2281), + [anon_sym_move] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [sym_integer_literal] = ACTIONS(2279), + [aux_sym_string_literal_token1] = ACTIONS(2279), + [sym_char_literal] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2281), + [sym_super] = ACTIONS(2281), + [sym_crate] = ACTIONS(2281), + [sym_metavariable] = ACTIONS(2279), + [sym__raw_string_literal_start] = ACTIONS(2279), + [sym_float_literal] = ACTIONS(2279), }, [STATE(621)] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(2353), - [sym_identifier] = ACTIONS(2355), - [anon_sym_SEMI] = ACTIONS(2353), - [anon_sym_macro_rules_BANG] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_LBRACK] = ACTIONS(2353), - [anon_sym_LBRACE] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_u8] = ACTIONS(2355), - [anon_sym_i8] = ACTIONS(2355), - [anon_sym_u16] = ACTIONS(2355), - [anon_sym_i16] = ACTIONS(2355), - [anon_sym_u32] = ACTIONS(2355), - [anon_sym_i32] = ACTIONS(2355), - [anon_sym_u64] = ACTIONS(2355), - [anon_sym_i64] = ACTIONS(2355), - [anon_sym_u128] = ACTIONS(2355), - [anon_sym_i128] = ACTIONS(2355), - [anon_sym_isize] = ACTIONS(2355), - [anon_sym_usize] = ACTIONS(2355), - [anon_sym_f32] = ACTIONS(2355), - [anon_sym_f64] = ACTIONS(2355), - [anon_sym_bool] = ACTIONS(2355), - [anon_sym_str] = ACTIONS(2355), - [anon_sym_char] = ACTIONS(2355), - [anon_sym_DASH] = ACTIONS(2353), - [anon_sym_BANG] = ACTIONS(2353), - [anon_sym_AMP] = ACTIONS(2353), - [anon_sym_PIPE] = ACTIONS(2353), - [anon_sym_LT] = ACTIONS(2353), - [anon_sym_DOT_DOT] = ACTIONS(2353), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [anon_sym_POUND] = ACTIONS(2353), - [anon_sym_SQUOTE] = ACTIONS(2355), - [anon_sym_async] = ACTIONS(2355), - [anon_sym_break] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_continue] = ACTIONS(2355), - [anon_sym_default] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_fn] = ACTIONS(2355), - [anon_sym_for] = ACTIONS(2355), - [anon_sym_gen] = ACTIONS(2355), - [anon_sym_if] = ACTIONS(2355), - [anon_sym_impl] = ACTIONS(2355), - [anon_sym_let] = ACTIONS(2355), - [anon_sym_loop] = ACTIONS(2355), - [anon_sym_match] = ACTIONS(2355), - [anon_sym_mod] = ACTIONS(2355), - [anon_sym_pub] = ACTIONS(2355), - [anon_sym_return] = ACTIONS(2355), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_trait] = ACTIONS(2355), - [anon_sym_type] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_unsafe] = ACTIONS(2355), - [anon_sym_use] = ACTIONS(2355), - [anon_sym_while] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym_yield] = ACTIONS(2355), - [anon_sym_move] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2355), - [sym_integer_literal] = ACTIONS(2353), - [aux_sym_string_literal_token1] = ACTIONS(2353), - [sym_char_literal] = ACTIONS(2353), - [anon_sym_true] = ACTIONS(2355), - [anon_sym_false] = ACTIONS(2355), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2355), - [sym_super] = ACTIONS(2355), - [sym_crate] = ACTIONS(2355), - [sym_metavariable] = ACTIONS(2353), - [sym__raw_string_literal_start] = ACTIONS(2353), - [sym_float_literal] = ACTIONS(2353), + [ts_builtin_sym_end] = ACTIONS(2283), + [sym_identifier] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2283), + [anon_sym_macro_rules_BANG] = ACTIONS(2283), + [anon_sym_LPAREN] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(2283), + [anon_sym_LBRACE] = ACTIONS(2283), + [anon_sym_RBRACE] = ACTIONS(2283), + [anon_sym_STAR] = ACTIONS(2283), + [anon_sym_u8] = ACTIONS(2285), + [anon_sym_i8] = ACTIONS(2285), + [anon_sym_u16] = ACTIONS(2285), + [anon_sym_i16] = ACTIONS(2285), + [anon_sym_u32] = ACTIONS(2285), + [anon_sym_i32] = ACTIONS(2285), + [anon_sym_u64] = ACTIONS(2285), + [anon_sym_i64] = ACTIONS(2285), + [anon_sym_u128] = ACTIONS(2285), + [anon_sym_i128] = ACTIONS(2285), + [anon_sym_isize] = ACTIONS(2285), + [anon_sym_usize] = ACTIONS(2285), + [anon_sym_f32] = ACTIONS(2285), + [anon_sym_f64] = ACTIONS(2285), + [anon_sym_bool] = ACTIONS(2285), + [anon_sym_str] = ACTIONS(2285), + [anon_sym_char] = ACTIONS(2285), + [anon_sym_DASH] = ACTIONS(2283), + [anon_sym_BANG] = ACTIONS(2283), + [anon_sym_AMP] = ACTIONS(2283), + [anon_sym_PIPE] = ACTIONS(2283), + [anon_sym_LT] = ACTIONS(2283), + [anon_sym_DOT_DOT] = ACTIONS(2283), + [anon_sym_COLON_COLON] = ACTIONS(2283), + [anon_sym_POUND] = ACTIONS(2283), + [anon_sym_SQUOTE] = ACTIONS(2285), + [anon_sym_async] = ACTIONS(2285), + [anon_sym_break] = ACTIONS(2285), + [anon_sym_const] = ACTIONS(2285), + [anon_sym_continue] = ACTIONS(2285), + [anon_sym_default] = ACTIONS(2285), + [anon_sym_enum] = ACTIONS(2285), + [anon_sym_fn] = ACTIONS(2285), + [anon_sym_for] = ACTIONS(2285), + [anon_sym_gen] = ACTIONS(2285), + [anon_sym_if] = ACTIONS(2285), + [anon_sym_impl] = ACTIONS(2285), + [anon_sym_let] = ACTIONS(2285), + [anon_sym_loop] = ACTIONS(2285), + [anon_sym_match] = ACTIONS(2285), + [anon_sym_mod] = ACTIONS(2285), + [anon_sym_pub] = ACTIONS(2285), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_static] = ACTIONS(2285), + [anon_sym_struct] = ACTIONS(2285), + [anon_sym_trait] = ACTIONS(2285), + [anon_sym_type] = ACTIONS(2285), + [anon_sym_union] = ACTIONS(2285), + [anon_sym_unsafe] = ACTIONS(2285), + [anon_sym_use] = ACTIONS(2285), + [anon_sym_while] = ACTIONS(2285), + [anon_sym_extern] = ACTIONS(2285), + [anon_sym_yield] = ACTIONS(2285), + [anon_sym_move] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2285), + [sym_integer_literal] = ACTIONS(2283), + [aux_sym_string_literal_token1] = ACTIONS(2283), + [sym_char_literal] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(2285), + [anon_sym_false] = ACTIONS(2285), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2285), + [sym_super] = ACTIONS(2285), + [sym_crate] = ACTIONS(2285), + [sym_metavariable] = ACTIONS(2283), + [sym__raw_string_literal_start] = ACTIONS(2283), + [sym_float_literal] = ACTIONS(2283), }, [STATE(622)] = { + [sym_empty_statement] = STATE(1201), + [sym_macro_definition] = STATE(1201), + [sym_attribute_item] = STATE(1201), + [sym_inner_attribute_item] = STATE(1201), + [sym_mod_item] = STATE(1201), + [sym_foreign_mod_item] = STATE(1201), + [sym_struct_item] = STATE(1201), + [sym_union_item] = STATE(1201), + [sym_enum_item] = STATE(1201), + [sym_extern_crate_declaration] = STATE(1201), + [sym_const_item] = STATE(1201), + [sym_static_item] = STATE(1201), + [sym_type_item] = STATE(1201), + [sym_function_item] = STATE(1201), + [sym_function_signature_item] = STATE(1201), + [sym_function_modifiers] = STATE(3599), + [sym_impl_item] = STATE(1201), + [sym_trait_item] = STATE(1201), + [sym_associated_type] = STATE(1201), + [sym_let_declaration] = STATE(1201), + [sym_use_declaration] = STATE(1201), + [sym_extern_modifier] = STATE(2148), + [sym_visibility_modifier] = STATE(1952), + [sym_bracketed_type] = STATE(3328), + [sym_generic_type_with_turbofish] = STATE(3354), + [sym_macro_invocation] = STATE(1201), + [sym_scoped_identifier] = STATE(3119), [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(2357), - [sym_identifier] = ACTIONS(2359), - [anon_sym_SEMI] = ACTIONS(2357), - [anon_sym_macro_rules_BANG] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_u8] = ACTIONS(2359), - [anon_sym_i8] = ACTIONS(2359), - [anon_sym_u16] = ACTIONS(2359), - [anon_sym_i16] = ACTIONS(2359), - [anon_sym_u32] = ACTIONS(2359), - [anon_sym_i32] = ACTIONS(2359), - [anon_sym_u64] = ACTIONS(2359), - [anon_sym_i64] = ACTIONS(2359), - [anon_sym_u128] = ACTIONS(2359), - [anon_sym_i128] = ACTIONS(2359), - [anon_sym_isize] = ACTIONS(2359), - [anon_sym_usize] = ACTIONS(2359), - [anon_sym_f32] = ACTIONS(2359), - [anon_sym_f64] = ACTIONS(2359), - [anon_sym_bool] = ACTIONS(2359), - [anon_sym_str] = ACTIONS(2359), - [anon_sym_char] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym_DOT_DOT] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_POUND] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2359), - [anon_sym_async] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_enum] = ACTIONS(2359), - [anon_sym_fn] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_gen] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_impl] = ACTIONS(2359), - [anon_sym_let] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_mod] = ACTIONS(2359), - [anon_sym_pub] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_static] = ACTIONS(2359), - [anon_sym_struct] = ACTIONS(2359), - [anon_sym_trait] = ACTIONS(2359), - [anon_sym_type] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_unsafe] = ACTIONS(2359), - [anon_sym_use] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_extern] = ACTIONS(2359), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_move] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [sym_integer_literal] = ACTIONS(2357), - [aux_sym_string_literal_token1] = ACTIONS(2357), - [sym_char_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2359), - [anon_sym_false] = ACTIONS(2359), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2359), - [sym_super] = ACTIONS(2359), - [sym_crate] = ACTIONS(2359), - [sym_metavariable] = ACTIONS(2357), - [sym__raw_string_literal_start] = ACTIONS(2357), - [sym_float_literal] = ACTIONS(2357), + [aux_sym_declaration_list_repeat1] = STATE(622), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_macro_rules_BANG] = ACTIONS(2293), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_u8] = ACTIONS(2298), + [anon_sym_i8] = ACTIONS(2298), + [anon_sym_u16] = ACTIONS(2298), + [anon_sym_i16] = ACTIONS(2298), + [anon_sym_u32] = ACTIONS(2298), + [anon_sym_i32] = ACTIONS(2298), + [anon_sym_u64] = ACTIONS(2298), + [anon_sym_i64] = ACTIONS(2298), + [anon_sym_u128] = ACTIONS(2298), + [anon_sym_i128] = ACTIONS(2298), + [anon_sym_isize] = ACTIONS(2298), + [anon_sym_usize] = ACTIONS(2298), + [anon_sym_f32] = ACTIONS(2298), + [anon_sym_f64] = ACTIONS(2298), + [anon_sym_bool] = ACTIONS(2298), + [anon_sym_str] = ACTIONS(2298), + [anon_sym_char] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_COLON_COLON] = ACTIONS(2304), + [anon_sym_POUND] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2310), + [anon_sym_const] = ACTIONS(2313), + [anon_sym_default] = ACTIONS(2316), + [anon_sym_enum] = ACTIONS(2319), + [anon_sym_fn] = ACTIONS(2322), + [anon_sym_gen] = ACTIONS(2325), + [anon_sym_impl] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2331), + [anon_sym_mod] = ACTIONS(2334), + [anon_sym_pub] = ACTIONS(2337), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_struct] = ACTIONS(2343), + [anon_sym_trait] = ACTIONS(2346), + [anon_sym_type] = ACTIONS(2349), + [anon_sym_union] = ACTIONS(2352), + [anon_sym_unsafe] = ACTIONS(2355), + [anon_sym_use] = ACTIONS(2358), + [anon_sym_extern] = ACTIONS(2361), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2364), + [sym_super] = ACTIONS(2364), + [sym_crate] = ACTIONS(2367), + [sym_metavariable] = ACTIONS(2370), }, [STATE(623)] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(2361), - [sym_identifier] = ACTIONS(2363), - [anon_sym_SEMI] = ACTIONS(2361), - [anon_sym_macro_rules_BANG] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_LBRACK] = ACTIONS(2361), - [anon_sym_LBRACE] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_STAR] = ACTIONS(2361), - [anon_sym_u8] = ACTIONS(2363), - [anon_sym_i8] = ACTIONS(2363), - [anon_sym_u16] = ACTIONS(2363), - [anon_sym_i16] = ACTIONS(2363), - [anon_sym_u32] = ACTIONS(2363), - [anon_sym_i32] = ACTIONS(2363), - [anon_sym_u64] = ACTIONS(2363), - [anon_sym_i64] = ACTIONS(2363), - [anon_sym_u128] = ACTIONS(2363), - [anon_sym_i128] = ACTIONS(2363), - [anon_sym_isize] = ACTIONS(2363), - [anon_sym_usize] = ACTIONS(2363), - [anon_sym_f32] = ACTIONS(2363), - [anon_sym_f64] = ACTIONS(2363), - [anon_sym_bool] = ACTIONS(2363), - [anon_sym_str] = ACTIONS(2363), - [anon_sym_char] = ACTIONS(2363), - [anon_sym_DASH] = ACTIONS(2361), - [anon_sym_BANG] = ACTIONS(2361), - [anon_sym_AMP] = ACTIONS(2361), - [anon_sym_PIPE] = ACTIONS(2361), - [anon_sym_LT] = ACTIONS(2361), - [anon_sym_DOT_DOT] = ACTIONS(2361), - [anon_sym_COLON_COLON] = ACTIONS(2361), - [anon_sym_POUND] = ACTIONS(2361), - [anon_sym_SQUOTE] = ACTIONS(2363), - [anon_sym_async] = ACTIONS(2363), - [anon_sym_break] = ACTIONS(2363), - [anon_sym_const] = ACTIONS(2363), - [anon_sym_continue] = ACTIONS(2363), - [anon_sym_default] = ACTIONS(2363), - [anon_sym_enum] = ACTIONS(2363), - [anon_sym_fn] = ACTIONS(2363), - [anon_sym_for] = ACTIONS(2363), - [anon_sym_gen] = ACTIONS(2363), - [anon_sym_if] = ACTIONS(2363), - [anon_sym_impl] = ACTIONS(2363), - [anon_sym_let] = ACTIONS(2363), - [anon_sym_loop] = ACTIONS(2363), - [anon_sym_match] = ACTIONS(2363), - [anon_sym_mod] = ACTIONS(2363), - [anon_sym_pub] = ACTIONS(2363), - [anon_sym_return] = ACTIONS(2363), - [anon_sym_static] = ACTIONS(2363), - [anon_sym_struct] = ACTIONS(2363), - [anon_sym_trait] = ACTIONS(2363), - [anon_sym_type] = ACTIONS(2363), - [anon_sym_union] = ACTIONS(2363), - [anon_sym_unsafe] = ACTIONS(2363), - [anon_sym_use] = ACTIONS(2363), - [anon_sym_while] = ACTIONS(2363), - [anon_sym_extern] = ACTIONS(2363), - [anon_sym_yield] = ACTIONS(2363), - [anon_sym_move] = ACTIONS(2363), - [anon_sym_try] = ACTIONS(2363), - [sym_integer_literal] = ACTIONS(2361), - [aux_sym_string_literal_token1] = ACTIONS(2361), - [sym_char_literal] = ACTIONS(2361), - [anon_sym_true] = ACTIONS(2363), - [anon_sym_false] = ACTIONS(2363), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2363), - [sym_super] = ACTIONS(2363), - [sym_crate] = ACTIONS(2363), - [sym_metavariable] = ACTIONS(2361), - [sym__raw_string_literal_start] = ACTIONS(2361), - [sym_float_literal] = ACTIONS(2361), - }, - [STATE(624)] = { - [sym_line_comment] = STATE(624), - [sym_block_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(2365), - [sym_identifier] = ACTIONS(2367), - [anon_sym_SEMI] = ACTIONS(2365), - [anon_sym_macro_rules_BANG] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_LBRACK] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_RBRACE] = ACTIONS(2365), - [anon_sym_STAR] = ACTIONS(2365), - [anon_sym_u8] = ACTIONS(2367), - [anon_sym_i8] = ACTIONS(2367), - [anon_sym_u16] = ACTIONS(2367), - [anon_sym_i16] = ACTIONS(2367), - [anon_sym_u32] = ACTIONS(2367), - [anon_sym_i32] = ACTIONS(2367), - [anon_sym_u64] = ACTIONS(2367), - [anon_sym_i64] = ACTIONS(2367), - [anon_sym_u128] = ACTIONS(2367), - [anon_sym_i128] = ACTIONS(2367), - [anon_sym_isize] = ACTIONS(2367), - [anon_sym_usize] = ACTIONS(2367), - [anon_sym_f32] = ACTIONS(2367), - [anon_sym_f64] = ACTIONS(2367), - [anon_sym_bool] = ACTIONS(2367), - [anon_sym_str] = ACTIONS(2367), - [anon_sym_char] = ACTIONS(2367), - [anon_sym_DASH] = ACTIONS(2365), - [anon_sym_BANG] = ACTIONS(2365), - [anon_sym_AMP] = ACTIONS(2365), - [anon_sym_PIPE] = ACTIONS(2365), - [anon_sym_LT] = ACTIONS(2365), - [anon_sym_DOT_DOT] = ACTIONS(2365), - [anon_sym_COLON_COLON] = ACTIONS(2365), - [anon_sym_POUND] = ACTIONS(2365), - [anon_sym_SQUOTE] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(2367), - [anon_sym_break] = ACTIONS(2367), - [anon_sym_const] = ACTIONS(2367), - [anon_sym_continue] = ACTIONS(2367), - [anon_sym_default] = ACTIONS(2367), - [anon_sym_enum] = ACTIONS(2367), - [anon_sym_fn] = ACTIONS(2367), - [anon_sym_for] = ACTIONS(2367), - [anon_sym_gen] = ACTIONS(2367), - [anon_sym_if] = ACTIONS(2367), - [anon_sym_impl] = ACTIONS(2367), - [anon_sym_let] = ACTIONS(2367), - [anon_sym_loop] = ACTIONS(2367), - [anon_sym_match] = ACTIONS(2367), - [anon_sym_mod] = ACTIONS(2367), - [anon_sym_pub] = ACTIONS(2367), - [anon_sym_return] = ACTIONS(2367), - [anon_sym_static] = ACTIONS(2367), - [anon_sym_struct] = ACTIONS(2367), - [anon_sym_trait] = ACTIONS(2367), - [anon_sym_type] = ACTIONS(2367), - [anon_sym_union] = ACTIONS(2367), - [anon_sym_unsafe] = ACTIONS(2367), - [anon_sym_use] = ACTIONS(2367), - [anon_sym_while] = ACTIONS(2367), - [anon_sym_extern] = ACTIONS(2367), - [anon_sym_yield] = ACTIONS(2367), - [anon_sym_move] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2367), - [sym_integer_literal] = ACTIONS(2365), - [aux_sym_string_literal_token1] = ACTIONS(2365), - [sym_char_literal] = ACTIONS(2365), - [anon_sym_true] = ACTIONS(2367), - [anon_sym_false] = ACTIONS(2367), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2367), - [sym_super] = ACTIONS(2367), - [sym_crate] = ACTIONS(2367), - [sym_metavariable] = ACTIONS(2365), - [sym__raw_string_literal_start] = ACTIONS(2365), - [sym_float_literal] = ACTIONS(2365), - }, - [STATE(625)] = { - [sym_line_comment] = STATE(625), - [sym_block_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(2369), - [sym_identifier] = ACTIONS(2371), - [anon_sym_SEMI] = ACTIONS(2369), - [anon_sym_macro_rules_BANG] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_LBRACK] = ACTIONS(2369), - [anon_sym_LBRACE] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_STAR] = ACTIONS(2369), - [anon_sym_u8] = ACTIONS(2371), - [anon_sym_i8] = ACTIONS(2371), - [anon_sym_u16] = ACTIONS(2371), - [anon_sym_i16] = ACTIONS(2371), - [anon_sym_u32] = ACTIONS(2371), - [anon_sym_i32] = ACTIONS(2371), - [anon_sym_u64] = ACTIONS(2371), - [anon_sym_i64] = ACTIONS(2371), - [anon_sym_u128] = ACTIONS(2371), - [anon_sym_i128] = ACTIONS(2371), - [anon_sym_isize] = ACTIONS(2371), - [anon_sym_usize] = ACTIONS(2371), - [anon_sym_f32] = ACTIONS(2371), - [anon_sym_f64] = ACTIONS(2371), - [anon_sym_bool] = ACTIONS(2371), - [anon_sym_str] = ACTIONS(2371), - [anon_sym_char] = ACTIONS(2371), - [anon_sym_DASH] = ACTIONS(2369), - [anon_sym_BANG] = ACTIONS(2369), - [anon_sym_AMP] = ACTIONS(2369), - [anon_sym_PIPE] = ACTIONS(2369), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_DOT_DOT] = ACTIONS(2369), - [anon_sym_COLON_COLON] = ACTIONS(2369), - [anon_sym_POUND] = ACTIONS(2369), - [anon_sym_SQUOTE] = ACTIONS(2371), - [anon_sym_async] = ACTIONS(2371), - [anon_sym_break] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_continue] = ACTIONS(2371), - [anon_sym_default] = ACTIONS(2371), - [anon_sym_enum] = ACTIONS(2371), - [anon_sym_fn] = ACTIONS(2371), - [anon_sym_for] = ACTIONS(2371), - [anon_sym_gen] = ACTIONS(2371), - [anon_sym_if] = ACTIONS(2371), - [anon_sym_impl] = ACTIONS(2371), - [anon_sym_let] = ACTIONS(2371), - [anon_sym_loop] = ACTIONS(2371), - [anon_sym_match] = ACTIONS(2371), - [anon_sym_mod] = ACTIONS(2371), - [anon_sym_pub] = ACTIONS(2371), - [anon_sym_return] = ACTIONS(2371), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2371), - [anon_sym_trait] = ACTIONS(2371), - [anon_sym_type] = ACTIONS(2371), - [anon_sym_union] = ACTIONS(2371), - [anon_sym_unsafe] = ACTIONS(2371), - [anon_sym_use] = ACTIONS(2371), - [anon_sym_while] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_yield] = ACTIONS(2371), - [anon_sym_move] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2371), - [sym_integer_literal] = ACTIONS(2369), - [aux_sym_string_literal_token1] = ACTIONS(2369), - [sym_char_literal] = ACTIONS(2369), - [anon_sym_true] = ACTIONS(2371), - [anon_sym_false] = ACTIONS(2371), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2371), - [sym_super] = ACTIONS(2371), - [sym_crate] = ACTIONS(2371), - [sym_metavariable] = ACTIONS(2369), - [sym__raw_string_literal_start] = ACTIONS(2369), - [sym_float_literal] = ACTIONS(2369), - }, - [STATE(626)] = { - [sym_line_comment] = STATE(626), - [sym_block_comment] = STATE(626), [ts_builtin_sym_end] = ACTIONS(2373), [sym_identifier] = ACTIONS(2375), [anon_sym_SEMI] = ACTIONS(2373), @@ -81664,9 +81349,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2373), [sym_float_literal] = ACTIONS(2373), }, - [STATE(627)] = { - [sym_line_comment] = STATE(627), - [sym_block_comment] = STATE(627), + [STATE(624)] = { + [sym_line_comment] = STATE(624), + [sym_block_comment] = STATE(624), [ts_builtin_sym_end] = ACTIONS(2377), [sym_identifier] = ACTIONS(2379), [anon_sym_SEMI] = ACTIONS(2377), @@ -81745,9 +81430,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2377), [sym_float_literal] = ACTIONS(2377), }, - [STATE(628)] = { - [sym_line_comment] = STATE(628), - [sym_block_comment] = STATE(628), + [STATE(625)] = { + [sym_line_comment] = STATE(625), + [sym_block_comment] = STATE(625), [ts_builtin_sym_end] = ACTIONS(2381), [sym_identifier] = ACTIONS(2383), [anon_sym_SEMI] = ACTIONS(2381), @@ -81826,9 +81511,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2381), [sym_float_literal] = ACTIONS(2381), }, - [STATE(629)] = { - [sym_line_comment] = STATE(629), - [sym_block_comment] = STATE(629), + [STATE(626)] = { + [sym_line_comment] = STATE(626), + [sym_block_comment] = STATE(626), [ts_builtin_sym_end] = ACTIONS(2385), [sym_identifier] = ACTIONS(2387), [anon_sym_SEMI] = ACTIONS(2385), @@ -81907,9 +81592,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2385), [sym_float_literal] = ACTIONS(2385), }, - [STATE(630)] = { - [sym_line_comment] = STATE(630), - [sym_block_comment] = STATE(630), + [STATE(627)] = { + [sym_line_comment] = STATE(627), + [sym_block_comment] = STATE(627), [ts_builtin_sym_end] = ACTIONS(2389), [sym_identifier] = ACTIONS(2391), [anon_sym_SEMI] = ACTIONS(2389), @@ -81988,9 +81673,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2389), [sym_float_literal] = ACTIONS(2389), }, - [STATE(631)] = { - [sym_line_comment] = STATE(631), - [sym_block_comment] = STATE(631), + [STATE(628)] = { + [sym_line_comment] = STATE(628), + [sym_block_comment] = STATE(628), [ts_builtin_sym_end] = ACTIONS(2393), [sym_identifier] = ACTIONS(2395), [anon_sym_SEMI] = ACTIONS(2393), @@ -82069,9 +81754,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2393), [sym_float_literal] = ACTIONS(2393), }, - [STATE(632)] = { - [sym_line_comment] = STATE(632), - [sym_block_comment] = STATE(632), + [STATE(629)] = { + [sym_line_comment] = STATE(629), + [sym_block_comment] = STATE(629), [ts_builtin_sym_end] = ACTIONS(2397), [sym_identifier] = ACTIONS(2399), [anon_sym_SEMI] = ACTIONS(2397), @@ -82150,1868 +81835,2111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2397), [sym_float_literal] = ACTIONS(2397), }, + [STATE(630)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym_closure_expression] = STATE(2880), + [sym_closure_parameters] = STATE(226), + [sym__pattern] = STATE(2569), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(630), + [sym_block_comment] = STATE(630), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(1521), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(631)] = { + [sym_line_comment] = STATE(631), + [sym_block_comment] = STATE(631), + [ts_builtin_sym_end] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_macro_rules_BANG] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(2425), + [anon_sym_i8] = ACTIONS(2425), + [anon_sym_u16] = ACTIONS(2425), + [anon_sym_i16] = ACTIONS(2425), + [anon_sym_u32] = ACTIONS(2425), + [anon_sym_i32] = ACTIONS(2425), + [anon_sym_u64] = ACTIONS(2425), + [anon_sym_i64] = ACTIONS(2425), + [anon_sym_u128] = ACTIONS(2425), + [anon_sym_i128] = ACTIONS(2425), + [anon_sym_isize] = ACTIONS(2425), + [anon_sym_usize] = ACTIONS(2425), + [anon_sym_f32] = ACTIONS(2425), + [anon_sym_f64] = ACTIONS(2425), + [anon_sym_bool] = ACTIONS(2425), + [anon_sym_str] = ACTIONS(2425), + [anon_sym_char] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_DOT_DOT] = ACTIONS(2423), + [anon_sym_COLON_COLON] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_gen] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_mod] = ACTIONS(2425), + [anon_sym_pub] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_yield] = ACTIONS(2425), + [anon_sym_move] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [sym_integer_literal] = ACTIONS(2423), + [aux_sym_string_literal_token1] = ACTIONS(2423), + [sym_char_literal] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2425), + [sym_super] = ACTIONS(2425), + [sym_crate] = ACTIONS(2425), + [sym_metavariable] = ACTIONS(2423), + [sym__raw_string_literal_start] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), + }, + [STATE(632)] = { + [sym_empty_statement] = STATE(1201), + [sym_macro_definition] = STATE(1201), + [sym_attribute_item] = STATE(1201), + [sym_inner_attribute_item] = STATE(1201), + [sym_mod_item] = STATE(1201), + [sym_foreign_mod_item] = STATE(1201), + [sym_struct_item] = STATE(1201), + [sym_union_item] = STATE(1201), + [sym_enum_item] = STATE(1201), + [sym_extern_crate_declaration] = STATE(1201), + [sym_const_item] = STATE(1201), + [sym_static_item] = STATE(1201), + [sym_type_item] = STATE(1201), + [sym_function_item] = STATE(1201), + [sym_function_signature_item] = STATE(1201), + [sym_function_modifiers] = STATE(3599), + [sym_impl_item] = STATE(1201), + [sym_trait_item] = STATE(1201), + [sym_associated_type] = STATE(1201), + [sym_let_declaration] = STATE(1201), + [sym_use_declaration] = STATE(1201), + [sym_extern_modifier] = STATE(2148), + [sym_visibility_modifier] = STATE(1952), + [sym_bracketed_type] = STATE(3328), + [sym_generic_type_with_turbofish] = STATE(3354), + [sym_macro_invocation] = STATE(1201), + [sym_scoped_identifier] = STATE(3119), + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), + [aux_sym_declaration_list_repeat1] = STATE(709), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2429), + [anon_sym_macro_rules_BANG] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2433), + [anon_sym_u8] = ACTIONS(2435), + [anon_sym_i8] = ACTIONS(2435), + [anon_sym_u16] = ACTIONS(2435), + [anon_sym_i16] = ACTIONS(2435), + [anon_sym_u32] = ACTIONS(2435), + [anon_sym_i32] = ACTIONS(2435), + [anon_sym_u64] = ACTIONS(2435), + [anon_sym_i64] = ACTIONS(2435), + [anon_sym_u128] = ACTIONS(2435), + [anon_sym_i128] = ACTIONS(2435), + [anon_sym_isize] = ACTIONS(2435), + [anon_sym_usize] = ACTIONS(2435), + [anon_sym_f32] = ACTIONS(2435), + [anon_sym_f64] = ACTIONS(2435), + [anon_sym_bool] = ACTIONS(2435), + [anon_sym_str] = ACTIONS(2435), + [anon_sym_char] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(2439), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2447), + [anon_sym_gen] = ACTIONS(2449), + [anon_sym_impl] = ACTIONS(2451), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_mod] = ACTIONS(2455), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_trait] = ACTIONS(2461), + [anon_sym_type] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2467), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2473), + [sym_super] = ACTIONS(2473), + [sym_crate] = ACTIONS(2475), + [sym_metavariable] = ACTIONS(2477), + }, [STATE(633)] = { [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(2401), - [sym_identifier] = ACTIONS(2403), - [anon_sym_SEMI] = ACTIONS(2401), - [anon_sym_macro_rules_BANG] = ACTIONS(2401), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_LBRACK] = ACTIONS(2401), - [anon_sym_LBRACE] = ACTIONS(2401), - [anon_sym_RBRACE] = ACTIONS(2401), - [anon_sym_STAR] = ACTIONS(2401), - [anon_sym_u8] = ACTIONS(2403), - [anon_sym_i8] = ACTIONS(2403), - [anon_sym_u16] = ACTIONS(2403), - [anon_sym_i16] = ACTIONS(2403), - [anon_sym_u32] = ACTIONS(2403), - [anon_sym_i32] = ACTIONS(2403), - [anon_sym_u64] = ACTIONS(2403), - [anon_sym_i64] = ACTIONS(2403), - [anon_sym_u128] = ACTIONS(2403), - [anon_sym_i128] = ACTIONS(2403), - [anon_sym_isize] = ACTIONS(2403), - [anon_sym_usize] = ACTIONS(2403), - [anon_sym_f32] = ACTIONS(2403), - [anon_sym_f64] = ACTIONS(2403), - [anon_sym_bool] = ACTIONS(2403), - [anon_sym_str] = ACTIONS(2403), - [anon_sym_char] = ACTIONS(2403), - [anon_sym_DASH] = ACTIONS(2401), - [anon_sym_BANG] = ACTIONS(2401), - [anon_sym_AMP] = ACTIONS(2401), - [anon_sym_PIPE] = ACTIONS(2401), - [anon_sym_LT] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2401), - [anon_sym_COLON_COLON] = ACTIONS(2401), - [anon_sym_POUND] = ACTIONS(2401), - [anon_sym_SQUOTE] = ACTIONS(2403), - [anon_sym_async] = ACTIONS(2403), - [anon_sym_break] = ACTIONS(2403), - [anon_sym_const] = ACTIONS(2403), - [anon_sym_continue] = ACTIONS(2403), - [anon_sym_default] = ACTIONS(2403), - [anon_sym_enum] = ACTIONS(2403), - [anon_sym_fn] = ACTIONS(2403), - [anon_sym_for] = ACTIONS(2403), - [anon_sym_gen] = ACTIONS(2403), - [anon_sym_if] = ACTIONS(2403), - [anon_sym_impl] = ACTIONS(2403), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_loop] = ACTIONS(2403), - [anon_sym_match] = ACTIONS(2403), - [anon_sym_mod] = ACTIONS(2403), - [anon_sym_pub] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2403), - [anon_sym_static] = ACTIONS(2403), - [anon_sym_struct] = ACTIONS(2403), - [anon_sym_trait] = ACTIONS(2403), - [anon_sym_type] = ACTIONS(2403), - [anon_sym_union] = ACTIONS(2403), - [anon_sym_unsafe] = ACTIONS(2403), - [anon_sym_use] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [anon_sym_extern] = ACTIONS(2403), - [anon_sym_yield] = ACTIONS(2403), - [anon_sym_move] = ACTIONS(2403), - [anon_sym_try] = ACTIONS(2403), - [sym_integer_literal] = ACTIONS(2401), - [aux_sym_string_literal_token1] = ACTIONS(2401), - [sym_char_literal] = ACTIONS(2401), - [anon_sym_true] = ACTIONS(2403), - [anon_sym_false] = ACTIONS(2403), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2403), - [sym_super] = ACTIONS(2403), - [sym_crate] = ACTIONS(2403), - [sym_metavariable] = ACTIONS(2401), - [sym__raw_string_literal_start] = ACTIONS(2401), - [sym_float_literal] = ACTIONS(2401), + [ts_builtin_sym_end] = ACTIONS(2479), + [sym_identifier] = ACTIONS(2481), + [anon_sym_SEMI] = ACTIONS(2479), + [anon_sym_macro_rules_BANG] = ACTIONS(2479), + [anon_sym_LPAREN] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(2479), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_STAR] = ACTIONS(2479), + [anon_sym_u8] = ACTIONS(2481), + [anon_sym_i8] = ACTIONS(2481), + [anon_sym_u16] = ACTIONS(2481), + [anon_sym_i16] = ACTIONS(2481), + [anon_sym_u32] = ACTIONS(2481), + [anon_sym_i32] = ACTIONS(2481), + [anon_sym_u64] = ACTIONS(2481), + [anon_sym_i64] = ACTIONS(2481), + [anon_sym_u128] = ACTIONS(2481), + [anon_sym_i128] = ACTIONS(2481), + [anon_sym_isize] = ACTIONS(2481), + [anon_sym_usize] = ACTIONS(2481), + [anon_sym_f32] = ACTIONS(2481), + [anon_sym_f64] = ACTIONS(2481), + [anon_sym_bool] = ACTIONS(2481), + [anon_sym_str] = ACTIONS(2481), + [anon_sym_char] = ACTIONS(2481), + [anon_sym_DASH] = ACTIONS(2479), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_AMP] = ACTIONS(2479), + [anon_sym_PIPE] = ACTIONS(2479), + [anon_sym_LT] = ACTIONS(2479), + [anon_sym_DOT_DOT] = ACTIONS(2479), + [anon_sym_COLON_COLON] = ACTIONS(2479), + [anon_sym_POUND] = ACTIONS(2479), + [anon_sym_SQUOTE] = ACTIONS(2481), + [anon_sym_async] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_default] = ACTIONS(2481), + [anon_sym_enum] = ACTIONS(2481), + [anon_sym_fn] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_gen] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_impl] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_loop] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_mod] = ACTIONS(2481), + [anon_sym_pub] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_static] = ACTIONS(2481), + [anon_sym_struct] = ACTIONS(2481), + [anon_sym_trait] = ACTIONS(2481), + [anon_sym_type] = ACTIONS(2481), + [anon_sym_union] = ACTIONS(2481), + [anon_sym_unsafe] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_extern] = ACTIONS(2481), + [anon_sym_yield] = ACTIONS(2481), + [anon_sym_move] = ACTIONS(2481), + [anon_sym_try] = ACTIONS(2481), + [sym_integer_literal] = ACTIONS(2479), + [aux_sym_string_literal_token1] = ACTIONS(2479), + [sym_char_literal] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(2481), + [anon_sym_false] = ACTIONS(2481), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2481), + [sym_super] = ACTIONS(2481), + [sym_crate] = ACTIONS(2481), + [sym_metavariable] = ACTIONS(2479), + [sym__raw_string_literal_start] = ACTIONS(2479), + [sym_float_literal] = ACTIONS(2479), }, [STATE(634)] = { [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(2405), - [sym_identifier] = ACTIONS(2407), - [anon_sym_SEMI] = ACTIONS(2405), - [anon_sym_macro_rules_BANG] = ACTIONS(2405), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_LBRACK] = ACTIONS(2405), - [anon_sym_LBRACE] = ACTIONS(2405), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_STAR] = ACTIONS(2405), - [anon_sym_u8] = ACTIONS(2407), - [anon_sym_i8] = ACTIONS(2407), - [anon_sym_u16] = ACTIONS(2407), - [anon_sym_i16] = ACTIONS(2407), - [anon_sym_u32] = ACTIONS(2407), - [anon_sym_i32] = ACTIONS(2407), - [anon_sym_u64] = ACTIONS(2407), - [anon_sym_i64] = ACTIONS(2407), - [anon_sym_u128] = ACTIONS(2407), - [anon_sym_i128] = ACTIONS(2407), - [anon_sym_isize] = ACTIONS(2407), - [anon_sym_usize] = ACTIONS(2407), - [anon_sym_f32] = ACTIONS(2407), - [anon_sym_f64] = ACTIONS(2407), - [anon_sym_bool] = ACTIONS(2407), - [anon_sym_str] = ACTIONS(2407), - [anon_sym_char] = ACTIONS(2407), - [anon_sym_DASH] = ACTIONS(2405), - [anon_sym_BANG] = ACTIONS(2405), - [anon_sym_AMP] = ACTIONS(2405), - [anon_sym_PIPE] = ACTIONS(2405), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_DOT_DOT] = ACTIONS(2405), - [anon_sym_COLON_COLON] = ACTIONS(2405), - [anon_sym_POUND] = ACTIONS(2405), - [anon_sym_SQUOTE] = ACTIONS(2407), - [anon_sym_async] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_const] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_default] = ACTIONS(2407), - [anon_sym_enum] = ACTIONS(2407), - [anon_sym_fn] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_gen] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_impl] = ACTIONS(2407), - [anon_sym_let] = ACTIONS(2407), - [anon_sym_loop] = ACTIONS(2407), - [anon_sym_match] = ACTIONS(2407), - [anon_sym_mod] = ACTIONS(2407), - [anon_sym_pub] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_static] = ACTIONS(2407), - [anon_sym_struct] = ACTIONS(2407), - [anon_sym_trait] = ACTIONS(2407), - [anon_sym_type] = ACTIONS(2407), - [anon_sym_union] = ACTIONS(2407), - [anon_sym_unsafe] = ACTIONS(2407), - [anon_sym_use] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [anon_sym_extern] = ACTIONS(2407), - [anon_sym_yield] = ACTIONS(2407), - [anon_sym_move] = ACTIONS(2407), - [anon_sym_try] = ACTIONS(2407), - [sym_integer_literal] = ACTIONS(2405), - [aux_sym_string_literal_token1] = ACTIONS(2405), - [sym_char_literal] = ACTIONS(2405), - [anon_sym_true] = ACTIONS(2407), - [anon_sym_false] = ACTIONS(2407), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2407), - [sym_super] = ACTIONS(2407), - [sym_crate] = ACTIONS(2407), - [sym_metavariable] = ACTIONS(2405), - [sym__raw_string_literal_start] = ACTIONS(2405), - [sym_float_literal] = ACTIONS(2405), + [ts_builtin_sym_end] = ACTIONS(2483), + [sym_identifier] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2483), + [anon_sym_macro_rules_BANG] = ACTIONS(2483), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_LBRACK] = ACTIONS(2483), + [anon_sym_LBRACE] = ACTIONS(2483), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_STAR] = ACTIONS(2483), + [anon_sym_u8] = ACTIONS(2485), + [anon_sym_i8] = ACTIONS(2485), + [anon_sym_u16] = ACTIONS(2485), + [anon_sym_i16] = ACTIONS(2485), + [anon_sym_u32] = ACTIONS(2485), + [anon_sym_i32] = ACTIONS(2485), + [anon_sym_u64] = ACTIONS(2485), + [anon_sym_i64] = ACTIONS(2485), + [anon_sym_u128] = ACTIONS(2485), + [anon_sym_i128] = ACTIONS(2485), + [anon_sym_isize] = ACTIONS(2485), + [anon_sym_usize] = ACTIONS(2485), + [anon_sym_f32] = ACTIONS(2485), + [anon_sym_f64] = ACTIONS(2485), + [anon_sym_bool] = ACTIONS(2485), + [anon_sym_str] = ACTIONS(2485), + [anon_sym_char] = ACTIONS(2485), + [anon_sym_DASH] = ACTIONS(2483), + [anon_sym_BANG] = ACTIONS(2483), + [anon_sym_AMP] = ACTIONS(2483), + [anon_sym_PIPE] = ACTIONS(2483), + [anon_sym_LT] = ACTIONS(2483), + [anon_sym_DOT_DOT] = ACTIONS(2483), + [anon_sym_COLON_COLON] = ACTIONS(2483), + [anon_sym_POUND] = ACTIONS(2483), + [anon_sym_SQUOTE] = ACTIONS(2485), + [anon_sym_async] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(2485), + [anon_sym_enum] = ACTIONS(2485), + [anon_sym_fn] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_gen] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_impl] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_loop] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_mod] = ACTIONS(2485), + [anon_sym_pub] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_static] = ACTIONS(2485), + [anon_sym_struct] = ACTIONS(2485), + [anon_sym_trait] = ACTIONS(2485), + [anon_sym_type] = ACTIONS(2485), + [anon_sym_union] = ACTIONS(2485), + [anon_sym_unsafe] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym_yield] = ACTIONS(2485), + [anon_sym_move] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [sym_integer_literal] = ACTIONS(2483), + [aux_sym_string_literal_token1] = ACTIONS(2483), + [sym_char_literal] = ACTIONS(2483), + [anon_sym_true] = ACTIONS(2485), + [anon_sym_false] = ACTIONS(2485), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2485), + [sym_super] = ACTIONS(2485), + [sym_crate] = ACTIONS(2485), + [sym_metavariable] = ACTIONS(2483), + [sym__raw_string_literal_start] = ACTIONS(2483), + [sym_float_literal] = ACTIONS(2483), }, [STATE(635)] = { [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), - [ts_builtin_sym_end] = ACTIONS(2409), - [sym_identifier] = ACTIONS(2411), - [anon_sym_SEMI] = ACTIONS(2409), - [anon_sym_macro_rules_BANG] = ACTIONS(2409), - [anon_sym_LPAREN] = ACTIONS(2409), - [anon_sym_LBRACK] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_STAR] = ACTIONS(2409), - [anon_sym_u8] = ACTIONS(2411), - [anon_sym_i8] = ACTIONS(2411), - [anon_sym_u16] = ACTIONS(2411), - [anon_sym_i16] = ACTIONS(2411), - [anon_sym_u32] = ACTIONS(2411), - [anon_sym_i32] = ACTIONS(2411), - [anon_sym_u64] = ACTIONS(2411), - [anon_sym_i64] = ACTIONS(2411), - [anon_sym_u128] = ACTIONS(2411), - [anon_sym_i128] = ACTIONS(2411), - [anon_sym_isize] = ACTIONS(2411), - [anon_sym_usize] = ACTIONS(2411), - [anon_sym_f32] = ACTIONS(2411), - [anon_sym_f64] = ACTIONS(2411), - [anon_sym_bool] = ACTIONS(2411), - [anon_sym_str] = ACTIONS(2411), - [anon_sym_char] = ACTIONS(2411), - [anon_sym_DASH] = ACTIONS(2409), - [anon_sym_BANG] = ACTIONS(2409), - [anon_sym_AMP] = ACTIONS(2409), - [anon_sym_PIPE] = ACTIONS(2409), - [anon_sym_LT] = ACTIONS(2409), - [anon_sym_DOT_DOT] = ACTIONS(2409), - [anon_sym_COLON_COLON] = ACTIONS(2409), - [anon_sym_POUND] = ACTIONS(2409), - [anon_sym_SQUOTE] = ACTIONS(2411), - [anon_sym_async] = ACTIONS(2411), - [anon_sym_break] = ACTIONS(2411), - [anon_sym_const] = ACTIONS(2411), - [anon_sym_continue] = ACTIONS(2411), - [anon_sym_default] = ACTIONS(2411), - [anon_sym_enum] = ACTIONS(2411), - [anon_sym_fn] = ACTIONS(2411), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_gen] = ACTIONS(2411), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_impl] = ACTIONS(2411), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_loop] = ACTIONS(2411), - [anon_sym_match] = ACTIONS(2411), - [anon_sym_mod] = ACTIONS(2411), - [anon_sym_pub] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2411), - [anon_sym_static] = ACTIONS(2411), - [anon_sym_struct] = ACTIONS(2411), - [anon_sym_trait] = ACTIONS(2411), - [anon_sym_type] = ACTIONS(2411), - [anon_sym_union] = ACTIONS(2411), - [anon_sym_unsafe] = ACTIONS(2411), - [anon_sym_use] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [anon_sym_extern] = ACTIONS(2411), - [anon_sym_yield] = ACTIONS(2411), - [anon_sym_move] = ACTIONS(2411), - [anon_sym_try] = ACTIONS(2411), - [sym_integer_literal] = ACTIONS(2409), - [aux_sym_string_literal_token1] = ACTIONS(2409), - [sym_char_literal] = ACTIONS(2409), - [anon_sym_true] = ACTIONS(2411), - [anon_sym_false] = ACTIONS(2411), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2411), - [sym_super] = ACTIONS(2411), - [sym_crate] = ACTIONS(2411), - [sym_metavariable] = ACTIONS(2409), - [sym__raw_string_literal_start] = ACTIONS(2409), - [sym_float_literal] = ACTIONS(2409), + [ts_builtin_sym_end] = ACTIONS(2487), + [sym_identifier] = ACTIONS(2489), + [anon_sym_SEMI] = ACTIONS(2487), + [anon_sym_macro_rules_BANG] = ACTIONS(2487), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2487), + [anon_sym_LBRACE] = ACTIONS(2487), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_u8] = ACTIONS(2489), + [anon_sym_i8] = ACTIONS(2489), + [anon_sym_u16] = ACTIONS(2489), + [anon_sym_i16] = ACTIONS(2489), + [anon_sym_u32] = ACTIONS(2489), + [anon_sym_i32] = ACTIONS(2489), + [anon_sym_u64] = ACTIONS(2489), + [anon_sym_i64] = ACTIONS(2489), + [anon_sym_u128] = ACTIONS(2489), + [anon_sym_i128] = ACTIONS(2489), + [anon_sym_isize] = ACTIONS(2489), + [anon_sym_usize] = ACTIONS(2489), + [anon_sym_f32] = ACTIONS(2489), + [anon_sym_f64] = ACTIONS(2489), + [anon_sym_bool] = ACTIONS(2489), + [anon_sym_str] = ACTIONS(2489), + [anon_sym_char] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2487), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_PIPE] = ACTIONS(2487), + [anon_sym_LT] = ACTIONS(2487), + [anon_sym_DOT_DOT] = ACTIONS(2487), + [anon_sym_COLON_COLON] = ACTIONS(2487), + [anon_sym_POUND] = ACTIONS(2487), + [anon_sym_SQUOTE] = ACTIONS(2489), + [anon_sym_async] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_default] = ACTIONS(2489), + [anon_sym_enum] = ACTIONS(2489), + [anon_sym_fn] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_gen] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_impl] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_loop] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2489), + [anon_sym_mod] = ACTIONS(2489), + [anon_sym_pub] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(2489), + [anon_sym_trait] = ACTIONS(2489), + [anon_sym_type] = ACTIONS(2489), + [anon_sym_union] = ACTIONS(2489), + [anon_sym_unsafe] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym_yield] = ACTIONS(2489), + [anon_sym_move] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [sym_integer_literal] = ACTIONS(2487), + [aux_sym_string_literal_token1] = ACTIONS(2487), + [sym_char_literal] = ACTIONS(2487), + [anon_sym_true] = ACTIONS(2489), + [anon_sym_false] = ACTIONS(2489), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2489), + [sym_super] = ACTIONS(2489), + [sym_crate] = ACTIONS(2489), + [sym_metavariable] = ACTIONS(2487), + [sym__raw_string_literal_start] = ACTIONS(2487), + [sym_float_literal] = ACTIONS(2487), }, [STATE(636)] = { [sym_line_comment] = STATE(636), [sym_block_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(2413), - [sym_identifier] = ACTIONS(2415), - [anon_sym_SEMI] = ACTIONS(2413), - [anon_sym_macro_rules_BANG] = ACTIONS(2413), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_LBRACK] = ACTIONS(2413), - [anon_sym_LBRACE] = ACTIONS(2413), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_STAR] = ACTIONS(2413), - [anon_sym_u8] = ACTIONS(2415), - [anon_sym_i8] = ACTIONS(2415), - [anon_sym_u16] = ACTIONS(2415), - [anon_sym_i16] = ACTIONS(2415), - [anon_sym_u32] = ACTIONS(2415), - [anon_sym_i32] = ACTIONS(2415), - [anon_sym_u64] = ACTIONS(2415), - [anon_sym_i64] = ACTIONS(2415), - [anon_sym_u128] = ACTIONS(2415), - [anon_sym_i128] = ACTIONS(2415), - [anon_sym_isize] = ACTIONS(2415), - [anon_sym_usize] = ACTIONS(2415), - [anon_sym_f32] = ACTIONS(2415), - [anon_sym_f64] = ACTIONS(2415), - [anon_sym_bool] = ACTIONS(2415), - [anon_sym_str] = ACTIONS(2415), - [anon_sym_char] = ACTIONS(2415), - [anon_sym_DASH] = ACTIONS(2413), - [anon_sym_BANG] = ACTIONS(2413), - [anon_sym_AMP] = ACTIONS(2413), - [anon_sym_PIPE] = ACTIONS(2413), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_DOT_DOT] = ACTIONS(2413), - [anon_sym_COLON_COLON] = ACTIONS(2413), - [anon_sym_POUND] = ACTIONS(2413), - [anon_sym_SQUOTE] = ACTIONS(2415), - [anon_sym_async] = ACTIONS(2415), - [anon_sym_break] = ACTIONS(2415), - [anon_sym_const] = ACTIONS(2415), - [anon_sym_continue] = ACTIONS(2415), - [anon_sym_default] = ACTIONS(2415), - [anon_sym_enum] = ACTIONS(2415), - [anon_sym_fn] = ACTIONS(2415), - [anon_sym_for] = ACTIONS(2415), - [anon_sym_gen] = ACTIONS(2415), - [anon_sym_if] = ACTIONS(2415), - [anon_sym_impl] = ACTIONS(2415), - [anon_sym_let] = ACTIONS(2415), - [anon_sym_loop] = ACTIONS(2415), - [anon_sym_match] = ACTIONS(2415), - [anon_sym_mod] = ACTIONS(2415), - [anon_sym_pub] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2415), - [anon_sym_static] = ACTIONS(2415), - [anon_sym_struct] = ACTIONS(2415), - [anon_sym_trait] = ACTIONS(2415), - [anon_sym_type] = ACTIONS(2415), - [anon_sym_union] = ACTIONS(2415), - [anon_sym_unsafe] = ACTIONS(2415), - [anon_sym_use] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2415), - [anon_sym_extern] = ACTIONS(2415), - [anon_sym_yield] = ACTIONS(2415), - [anon_sym_move] = ACTIONS(2415), - [anon_sym_try] = ACTIONS(2415), - [sym_integer_literal] = ACTIONS(2413), - [aux_sym_string_literal_token1] = ACTIONS(2413), - [sym_char_literal] = ACTIONS(2413), - [anon_sym_true] = ACTIONS(2415), - [anon_sym_false] = ACTIONS(2415), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2415), - [sym_super] = ACTIONS(2415), - [sym_crate] = ACTIONS(2415), - [sym_metavariable] = ACTIONS(2413), - [sym__raw_string_literal_start] = ACTIONS(2413), - [sym_float_literal] = ACTIONS(2413), + [ts_builtin_sym_end] = ACTIONS(2491), + [sym_identifier] = ACTIONS(2493), + [anon_sym_SEMI] = ACTIONS(2491), + [anon_sym_macro_rules_BANG] = ACTIONS(2491), + [anon_sym_LPAREN] = ACTIONS(2491), + [anon_sym_LBRACK] = ACTIONS(2491), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_RBRACE] = ACTIONS(2491), + [anon_sym_STAR] = ACTIONS(2491), + [anon_sym_u8] = ACTIONS(2493), + [anon_sym_i8] = ACTIONS(2493), + [anon_sym_u16] = ACTIONS(2493), + [anon_sym_i16] = ACTIONS(2493), + [anon_sym_u32] = ACTIONS(2493), + [anon_sym_i32] = ACTIONS(2493), + [anon_sym_u64] = ACTIONS(2493), + [anon_sym_i64] = ACTIONS(2493), + [anon_sym_u128] = ACTIONS(2493), + [anon_sym_i128] = ACTIONS(2493), + [anon_sym_isize] = ACTIONS(2493), + [anon_sym_usize] = ACTIONS(2493), + [anon_sym_f32] = ACTIONS(2493), + [anon_sym_f64] = ACTIONS(2493), + [anon_sym_bool] = ACTIONS(2493), + [anon_sym_str] = ACTIONS(2493), + [anon_sym_char] = ACTIONS(2493), + [anon_sym_DASH] = ACTIONS(2491), + [anon_sym_BANG] = ACTIONS(2491), + [anon_sym_AMP] = ACTIONS(2491), + [anon_sym_PIPE] = ACTIONS(2491), + [anon_sym_LT] = ACTIONS(2491), + [anon_sym_DOT_DOT] = ACTIONS(2491), + [anon_sym_COLON_COLON] = ACTIONS(2491), + [anon_sym_POUND] = ACTIONS(2491), + [anon_sym_SQUOTE] = ACTIONS(2493), + [anon_sym_async] = ACTIONS(2493), + [anon_sym_break] = ACTIONS(2493), + [anon_sym_const] = ACTIONS(2493), + [anon_sym_continue] = ACTIONS(2493), + [anon_sym_default] = ACTIONS(2493), + [anon_sym_enum] = ACTIONS(2493), + [anon_sym_fn] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2493), + [anon_sym_gen] = ACTIONS(2493), + [anon_sym_if] = ACTIONS(2493), + [anon_sym_impl] = ACTIONS(2493), + [anon_sym_let] = ACTIONS(2493), + [anon_sym_loop] = ACTIONS(2493), + [anon_sym_match] = ACTIONS(2493), + [anon_sym_mod] = ACTIONS(2493), + [anon_sym_pub] = ACTIONS(2493), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_static] = ACTIONS(2493), + [anon_sym_struct] = ACTIONS(2493), + [anon_sym_trait] = ACTIONS(2493), + [anon_sym_type] = ACTIONS(2493), + [anon_sym_union] = ACTIONS(2493), + [anon_sym_unsafe] = ACTIONS(2493), + [anon_sym_use] = ACTIONS(2493), + [anon_sym_while] = ACTIONS(2493), + [anon_sym_extern] = ACTIONS(2493), + [anon_sym_yield] = ACTIONS(2493), + [anon_sym_move] = ACTIONS(2493), + [anon_sym_try] = ACTIONS(2493), + [sym_integer_literal] = ACTIONS(2491), + [aux_sym_string_literal_token1] = ACTIONS(2491), + [sym_char_literal] = ACTIONS(2491), + [anon_sym_true] = ACTIONS(2493), + [anon_sym_false] = ACTIONS(2493), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2493), + [sym_super] = ACTIONS(2493), + [sym_crate] = ACTIONS(2493), + [sym_metavariable] = ACTIONS(2491), + [sym__raw_string_literal_start] = ACTIONS(2491), + [sym_float_literal] = ACTIONS(2491), }, [STATE(637)] = { [sym_line_comment] = STATE(637), [sym_block_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(2417), - [sym_identifier] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2417), - [anon_sym_macro_rules_BANG] = ACTIONS(2417), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2417), - [anon_sym_RBRACE] = ACTIONS(2417), - [anon_sym_STAR] = ACTIONS(2417), - [anon_sym_u8] = ACTIONS(2419), - [anon_sym_i8] = ACTIONS(2419), - [anon_sym_u16] = ACTIONS(2419), - [anon_sym_i16] = ACTIONS(2419), - [anon_sym_u32] = ACTIONS(2419), - [anon_sym_i32] = ACTIONS(2419), - [anon_sym_u64] = ACTIONS(2419), - [anon_sym_i64] = ACTIONS(2419), - [anon_sym_u128] = ACTIONS(2419), - [anon_sym_i128] = ACTIONS(2419), - [anon_sym_isize] = ACTIONS(2419), - [anon_sym_usize] = ACTIONS(2419), - [anon_sym_f32] = ACTIONS(2419), - [anon_sym_f64] = ACTIONS(2419), - [anon_sym_bool] = ACTIONS(2419), - [anon_sym_str] = ACTIONS(2419), - [anon_sym_char] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2417), - [anon_sym_BANG] = ACTIONS(2417), - [anon_sym_AMP] = ACTIONS(2417), - [anon_sym_PIPE] = ACTIONS(2417), - [anon_sym_LT] = ACTIONS(2417), - [anon_sym_DOT_DOT] = ACTIONS(2417), - [anon_sym_COLON_COLON] = ACTIONS(2417), - [anon_sym_POUND] = ACTIONS(2417), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_const] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_default] = ACTIONS(2419), - [anon_sym_enum] = ACTIONS(2419), - [anon_sym_fn] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_gen] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_impl] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), - [anon_sym_loop] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_mod] = ACTIONS(2419), - [anon_sym_pub] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_struct] = ACTIONS(2419), - [anon_sym_trait] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_union] = ACTIONS(2419), - [anon_sym_unsafe] = ACTIONS(2419), - [anon_sym_use] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [anon_sym_extern] = ACTIONS(2419), - [anon_sym_yield] = ACTIONS(2419), - [anon_sym_move] = ACTIONS(2419), - [anon_sym_try] = ACTIONS(2419), - [sym_integer_literal] = ACTIONS(2417), - [aux_sym_string_literal_token1] = ACTIONS(2417), - [sym_char_literal] = ACTIONS(2417), - [anon_sym_true] = ACTIONS(2419), - [anon_sym_false] = ACTIONS(2419), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2419), - [sym_super] = ACTIONS(2419), - [sym_crate] = ACTIONS(2419), - [sym_metavariable] = ACTIONS(2417), - [sym__raw_string_literal_start] = ACTIONS(2417), - [sym_float_literal] = ACTIONS(2417), + [ts_builtin_sym_end] = ACTIONS(2495), + [sym_identifier] = ACTIONS(2497), + [anon_sym_SEMI] = ACTIONS(2495), + [anon_sym_macro_rules_BANG] = ACTIONS(2495), + [anon_sym_LPAREN] = ACTIONS(2495), + [anon_sym_LBRACK] = ACTIONS(2495), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_RBRACE] = ACTIONS(2495), + [anon_sym_STAR] = ACTIONS(2495), + [anon_sym_u8] = ACTIONS(2497), + [anon_sym_i8] = ACTIONS(2497), + [anon_sym_u16] = ACTIONS(2497), + [anon_sym_i16] = ACTIONS(2497), + [anon_sym_u32] = ACTIONS(2497), + [anon_sym_i32] = ACTIONS(2497), + [anon_sym_u64] = ACTIONS(2497), + [anon_sym_i64] = ACTIONS(2497), + [anon_sym_u128] = ACTIONS(2497), + [anon_sym_i128] = ACTIONS(2497), + [anon_sym_isize] = ACTIONS(2497), + [anon_sym_usize] = ACTIONS(2497), + [anon_sym_f32] = ACTIONS(2497), + [anon_sym_f64] = ACTIONS(2497), + [anon_sym_bool] = ACTIONS(2497), + [anon_sym_str] = ACTIONS(2497), + [anon_sym_char] = ACTIONS(2497), + [anon_sym_DASH] = ACTIONS(2495), + [anon_sym_BANG] = ACTIONS(2495), + [anon_sym_AMP] = ACTIONS(2495), + [anon_sym_PIPE] = ACTIONS(2495), + [anon_sym_LT] = ACTIONS(2495), + [anon_sym_DOT_DOT] = ACTIONS(2495), + [anon_sym_COLON_COLON] = ACTIONS(2495), + [anon_sym_POUND] = ACTIONS(2495), + [anon_sym_SQUOTE] = ACTIONS(2497), + [anon_sym_async] = ACTIONS(2497), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_const] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_default] = ACTIONS(2497), + [anon_sym_enum] = ACTIONS(2497), + [anon_sym_fn] = ACTIONS(2497), + [anon_sym_for] = ACTIONS(2497), + [anon_sym_gen] = ACTIONS(2497), + [anon_sym_if] = ACTIONS(2497), + [anon_sym_impl] = ACTIONS(2497), + [anon_sym_let] = ACTIONS(2497), + [anon_sym_loop] = ACTIONS(2497), + [anon_sym_match] = ACTIONS(2497), + [anon_sym_mod] = ACTIONS(2497), + [anon_sym_pub] = ACTIONS(2497), + [anon_sym_return] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2497), + [anon_sym_struct] = ACTIONS(2497), + [anon_sym_trait] = ACTIONS(2497), + [anon_sym_type] = ACTIONS(2497), + [anon_sym_union] = ACTIONS(2497), + [anon_sym_unsafe] = ACTIONS(2497), + [anon_sym_use] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2497), + [anon_sym_extern] = ACTIONS(2497), + [anon_sym_yield] = ACTIONS(2497), + [anon_sym_move] = ACTIONS(2497), + [anon_sym_try] = ACTIONS(2497), + [sym_integer_literal] = ACTIONS(2495), + [aux_sym_string_literal_token1] = ACTIONS(2495), + [sym_char_literal] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(2497), + [anon_sym_false] = ACTIONS(2497), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2497), + [sym_super] = ACTIONS(2497), + [sym_crate] = ACTIONS(2497), + [sym_metavariable] = ACTIONS(2495), + [sym__raw_string_literal_start] = ACTIONS(2495), + [sym_float_literal] = ACTIONS(2495), }, [STATE(638)] = { [sym_line_comment] = STATE(638), [sym_block_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(2421), - [sym_identifier] = ACTIONS(2423), - [anon_sym_SEMI] = ACTIONS(2421), - [anon_sym_macro_rules_BANG] = ACTIONS(2421), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_LBRACK] = ACTIONS(2421), - [anon_sym_LBRACE] = ACTIONS(2421), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_STAR] = ACTIONS(2421), - [anon_sym_u8] = ACTIONS(2423), - [anon_sym_i8] = ACTIONS(2423), - [anon_sym_u16] = ACTIONS(2423), - [anon_sym_i16] = ACTIONS(2423), - [anon_sym_u32] = ACTIONS(2423), - [anon_sym_i32] = ACTIONS(2423), - [anon_sym_u64] = ACTIONS(2423), - [anon_sym_i64] = ACTIONS(2423), - [anon_sym_u128] = ACTIONS(2423), - [anon_sym_i128] = ACTIONS(2423), - [anon_sym_isize] = ACTIONS(2423), - [anon_sym_usize] = ACTIONS(2423), - [anon_sym_f32] = ACTIONS(2423), - [anon_sym_f64] = ACTIONS(2423), - [anon_sym_bool] = ACTIONS(2423), - [anon_sym_str] = ACTIONS(2423), - [anon_sym_char] = ACTIONS(2423), - [anon_sym_DASH] = ACTIONS(2421), - [anon_sym_BANG] = ACTIONS(2421), - [anon_sym_AMP] = ACTIONS(2421), - [anon_sym_PIPE] = ACTIONS(2421), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_DOT_DOT] = ACTIONS(2421), - [anon_sym_COLON_COLON] = ACTIONS(2421), - [anon_sym_POUND] = ACTIONS(2421), - [anon_sym_SQUOTE] = ACTIONS(2423), - [anon_sym_async] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_const] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_default] = ACTIONS(2423), - [anon_sym_enum] = ACTIONS(2423), - [anon_sym_fn] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_gen] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_impl] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_loop] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_mod] = ACTIONS(2423), - [anon_sym_pub] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_static] = ACTIONS(2423), - [anon_sym_struct] = ACTIONS(2423), - [anon_sym_trait] = ACTIONS(2423), - [anon_sym_type] = ACTIONS(2423), - [anon_sym_union] = ACTIONS(2423), - [anon_sym_unsafe] = ACTIONS(2423), - [anon_sym_use] = ACTIONS(2423), - [anon_sym_while] = ACTIONS(2423), - [anon_sym_extern] = ACTIONS(2423), - [anon_sym_yield] = ACTIONS(2423), - [anon_sym_move] = ACTIONS(2423), - [anon_sym_try] = ACTIONS(2423), - [sym_integer_literal] = ACTIONS(2421), - [aux_sym_string_literal_token1] = ACTIONS(2421), - [sym_char_literal] = ACTIONS(2421), - [anon_sym_true] = ACTIONS(2423), - [anon_sym_false] = ACTIONS(2423), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2423), - [sym_super] = ACTIONS(2423), - [sym_crate] = ACTIONS(2423), - [sym_metavariable] = ACTIONS(2421), - [sym__raw_string_literal_start] = ACTIONS(2421), - [sym_float_literal] = ACTIONS(2421), + [ts_builtin_sym_end] = ACTIONS(2499), + [sym_identifier] = ACTIONS(2501), + [anon_sym_SEMI] = ACTIONS(2499), + [anon_sym_macro_rules_BANG] = ACTIONS(2499), + [anon_sym_LPAREN] = ACTIONS(2499), + [anon_sym_LBRACK] = ACTIONS(2499), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_RBRACE] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(2499), + [anon_sym_u8] = ACTIONS(2501), + [anon_sym_i8] = ACTIONS(2501), + [anon_sym_u16] = ACTIONS(2501), + [anon_sym_i16] = ACTIONS(2501), + [anon_sym_u32] = ACTIONS(2501), + [anon_sym_i32] = ACTIONS(2501), + [anon_sym_u64] = ACTIONS(2501), + [anon_sym_i64] = ACTIONS(2501), + [anon_sym_u128] = ACTIONS(2501), + [anon_sym_i128] = ACTIONS(2501), + [anon_sym_isize] = ACTIONS(2501), + [anon_sym_usize] = ACTIONS(2501), + [anon_sym_f32] = ACTIONS(2501), + [anon_sym_f64] = ACTIONS(2501), + [anon_sym_bool] = ACTIONS(2501), + [anon_sym_str] = ACTIONS(2501), + [anon_sym_char] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_BANG] = ACTIONS(2499), + [anon_sym_AMP] = ACTIONS(2499), + [anon_sym_PIPE] = ACTIONS(2499), + [anon_sym_LT] = ACTIONS(2499), + [anon_sym_DOT_DOT] = ACTIONS(2499), + [anon_sym_COLON_COLON] = ACTIONS(2499), + [anon_sym_POUND] = ACTIONS(2499), + [anon_sym_SQUOTE] = ACTIONS(2501), + [anon_sym_async] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2501), + [anon_sym_const] = ACTIONS(2501), + [anon_sym_continue] = ACTIONS(2501), + [anon_sym_default] = ACTIONS(2501), + [anon_sym_enum] = ACTIONS(2501), + [anon_sym_fn] = ACTIONS(2501), + [anon_sym_for] = ACTIONS(2501), + [anon_sym_gen] = ACTIONS(2501), + [anon_sym_if] = ACTIONS(2501), + [anon_sym_impl] = ACTIONS(2501), + [anon_sym_let] = ACTIONS(2501), + [anon_sym_loop] = ACTIONS(2501), + [anon_sym_match] = ACTIONS(2501), + [anon_sym_mod] = ACTIONS(2501), + [anon_sym_pub] = ACTIONS(2501), + [anon_sym_return] = ACTIONS(2501), + [anon_sym_static] = ACTIONS(2501), + [anon_sym_struct] = ACTIONS(2501), + [anon_sym_trait] = ACTIONS(2501), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_union] = ACTIONS(2501), + [anon_sym_unsafe] = ACTIONS(2501), + [anon_sym_use] = ACTIONS(2501), + [anon_sym_while] = ACTIONS(2501), + [anon_sym_extern] = ACTIONS(2501), + [anon_sym_yield] = ACTIONS(2501), + [anon_sym_move] = ACTIONS(2501), + [anon_sym_try] = ACTIONS(2501), + [sym_integer_literal] = ACTIONS(2499), + [aux_sym_string_literal_token1] = ACTIONS(2499), + [sym_char_literal] = ACTIONS(2499), + [anon_sym_true] = ACTIONS(2501), + [anon_sym_false] = ACTIONS(2501), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2501), + [sym_super] = ACTIONS(2501), + [sym_crate] = ACTIONS(2501), + [sym_metavariable] = ACTIONS(2499), + [sym__raw_string_literal_start] = ACTIONS(2499), + [sym_float_literal] = ACTIONS(2499), }, [STATE(639)] = { [sym_line_comment] = STATE(639), [sym_block_comment] = STATE(639), - [ts_builtin_sym_end] = ACTIONS(2425), - [sym_identifier] = ACTIONS(2427), - [anon_sym_SEMI] = ACTIONS(2425), - [anon_sym_macro_rules_BANG] = ACTIONS(2425), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_LBRACK] = ACTIONS(2425), - [anon_sym_LBRACE] = ACTIONS(2425), - [anon_sym_RBRACE] = ACTIONS(2425), - [anon_sym_STAR] = ACTIONS(2425), - [anon_sym_u8] = ACTIONS(2427), - [anon_sym_i8] = ACTIONS(2427), - [anon_sym_u16] = ACTIONS(2427), - [anon_sym_i16] = ACTIONS(2427), - [anon_sym_u32] = ACTIONS(2427), - [anon_sym_i32] = ACTIONS(2427), - [anon_sym_u64] = ACTIONS(2427), - [anon_sym_i64] = ACTIONS(2427), - [anon_sym_u128] = ACTIONS(2427), - [anon_sym_i128] = ACTIONS(2427), - [anon_sym_isize] = ACTIONS(2427), - [anon_sym_usize] = ACTIONS(2427), - [anon_sym_f32] = ACTIONS(2427), - [anon_sym_f64] = ACTIONS(2427), - [anon_sym_bool] = ACTIONS(2427), - [anon_sym_str] = ACTIONS(2427), - [anon_sym_char] = ACTIONS(2427), - [anon_sym_DASH] = ACTIONS(2425), - [anon_sym_BANG] = ACTIONS(2425), - [anon_sym_AMP] = ACTIONS(2425), - [anon_sym_PIPE] = ACTIONS(2425), - [anon_sym_LT] = ACTIONS(2425), - [anon_sym_DOT_DOT] = ACTIONS(2425), - [anon_sym_COLON_COLON] = ACTIONS(2425), - [anon_sym_POUND] = ACTIONS(2425), - [anon_sym_SQUOTE] = ACTIONS(2427), - [anon_sym_async] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_const] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_default] = ACTIONS(2427), - [anon_sym_enum] = ACTIONS(2427), - [anon_sym_fn] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_gen] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_impl] = ACTIONS(2427), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_loop] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_mod] = ACTIONS(2427), - [anon_sym_pub] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_static] = ACTIONS(2427), - [anon_sym_struct] = ACTIONS(2427), - [anon_sym_trait] = ACTIONS(2427), - [anon_sym_type] = ACTIONS(2427), - [anon_sym_union] = ACTIONS(2427), - [anon_sym_unsafe] = ACTIONS(2427), - [anon_sym_use] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_extern] = ACTIONS(2427), - [anon_sym_yield] = ACTIONS(2427), - [anon_sym_move] = ACTIONS(2427), - [anon_sym_try] = ACTIONS(2427), - [sym_integer_literal] = ACTIONS(2425), - [aux_sym_string_literal_token1] = ACTIONS(2425), - [sym_char_literal] = ACTIONS(2425), - [anon_sym_true] = ACTIONS(2427), - [anon_sym_false] = ACTIONS(2427), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2427), - [sym_super] = ACTIONS(2427), - [sym_crate] = ACTIONS(2427), - [sym_metavariable] = ACTIONS(2425), - [sym__raw_string_literal_start] = ACTIONS(2425), - [sym_float_literal] = ACTIONS(2425), + [ts_builtin_sym_end] = ACTIONS(2503), + [sym_identifier] = ACTIONS(2505), + [anon_sym_SEMI] = ACTIONS(2503), + [anon_sym_macro_rules_BANG] = ACTIONS(2503), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_u8] = ACTIONS(2505), + [anon_sym_i8] = ACTIONS(2505), + [anon_sym_u16] = ACTIONS(2505), + [anon_sym_i16] = ACTIONS(2505), + [anon_sym_u32] = ACTIONS(2505), + [anon_sym_i32] = ACTIONS(2505), + [anon_sym_u64] = ACTIONS(2505), + [anon_sym_i64] = ACTIONS(2505), + [anon_sym_u128] = ACTIONS(2505), + [anon_sym_i128] = ACTIONS(2505), + [anon_sym_isize] = ACTIONS(2505), + [anon_sym_usize] = ACTIONS(2505), + [anon_sym_f32] = ACTIONS(2505), + [anon_sym_f64] = ACTIONS(2505), + [anon_sym_bool] = ACTIONS(2505), + [anon_sym_str] = ACTIONS(2505), + [anon_sym_char] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2503), + [anon_sym_BANG] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2503), + [anon_sym_PIPE] = ACTIONS(2503), + [anon_sym_LT] = ACTIONS(2503), + [anon_sym_DOT_DOT] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2503), + [anon_sym_POUND] = ACTIONS(2503), + [anon_sym_SQUOTE] = ACTIONS(2505), + [anon_sym_async] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_default] = ACTIONS(2505), + [anon_sym_enum] = ACTIONS(2505), + [anon_sym_fn] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_gen] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_impl] = ACTIONS(2505), + [anon_sym_let] = ACTIONS(2505), + [anon_sym_loop] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_mod] = ACTIONS(2505), + [anon_sym_pub] = ACTIONS(2505), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_static] = ACTIONS(2505), + [anon_sym_struct] = ACTIONS(2505), + [anon_sym_trait] = ACTIONS(2505), + [anon_sym_type] = ACTIONS(2505), + [anon_sym_union] = ACTIONS(2505), + [anon_sym_unsafe] = ACTIONS(2505), + [anon_sym_use] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2505), + [anon_sym_extern] = ACTIONS(2505), + [anon_sym_yield] = ACTIONS(2505), + [anon_sym_move] = ACTIONS(2505), + [anon_sym_try] = ACTIONS(2505), + [sym_integer_literal] = ACTIONS(2503), + [aux_sym_string_literal_token1] = ACTIONS(2503), + [sym_char_literal] = ACTIONS(2503), + [anon_sym_true] = ACTIONS(2505), + [anon_sym_false] = ACTIONS(2505), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2505), + [sym_super] = ACTIONS(2505), + [sym_crate] = ACTIONS(2505), + [sym_metavariable] = ACTIONS(2503), + [sym__raw_string_literal_start] = ACTIONS(2503), + [sym_float_literal] = ACTIONS(2503), }, [STATE(640)] = { [sym_line_comment] = STATE(640), [sym_block_comment] = STATE(640), - [ts_builtin_sym_end] = ACTIONS(2429), - [sym_identifier] = ACTIONS(2431), - [anon_sym_SEMI] = ACTIONS(2429), - [anon_sym_macro_rules_BANG] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(2429), - [anon_sym_LBRACK] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2429), - [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_STAR] = ACTIONS(2429), - [anon_sym_u8] = ACTIONS(2431), - [anon_sym_i8] = ACTIONS(2431), - [anon_sym_u16] = ACTIONS(2431), - [anon_sym_i16] = ACTIONS(2431), - [anon_sym_u32] = ACTIONS(2431), - [anon_sym_i32] = ACTIONS(2431), - [anon_sym_u64] = ACTIONS(2431), - [anon_sym_i64] = ACTIONS(2431), - [anon_sym_u128] = ACTIONS(2431), - [anon_sym_i128] = ACTIONS(2431), - [anon_sym_isize] = ACTIONS(2431), - [anon_sym_usize] = ACTIONS(2431), - [anon_sym_f32] = ACTIONS(2431), - [anon_sym_f64] = ACTIONS(2431), - [anon_sym_bool] = ACTIONS(2431), - [anon_sym_str] = ACTIONS(2431), - [anon_sym_char] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2429), - [anon_sym_BANG] = ACTIONS(2429), - [anon_sym_AMP] = ACTIONS(2429), - [anon_sym_PIPE] = ACTIONS(2429), - [anon_sym_LT] = ACTIONS(2429), - [anon_sym_DOT_DOT] = ACTIONS(2429), - [anon_sym_COLON_COLON] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(2429), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_const] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_default] = ACTIONS(2431), - [anon_sym_enum] = ACTIONS(2431), - [anon_sym_fn] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_gen] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_impl] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_loop] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_mod] = ACTIONS(2431), - [anon_sym_pub] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_struct] = ACTIONS(2431), - [anon_sym_trait] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_union] = ACTIONS(2431), - [anon_sym_unsafe] = ACTIONS(2431), - [anon_sym_use] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [anon_sym_extern] = ACTIONS(2431), - [anon_sym_yield] = ACTIONS(2431), - [anon_sym_move] = ACTIONS(2431), - [anon_sym_try] = ACTIONS(2431), - [sym_integer_literal] = ACTIONS(2429), - [aux_sym_string_literal_token1] = ACTIONS(2429), - [sym_char_literal] = ACTIONS(2429), - [anon_sym_true] = ACTIONS(2431), - [anon_sym_false] = ACTIONS(2431), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2431), - [sym_super] = ACTIONS(2431), - [sym_crate] = ACTIONS(2431), - [sym_metavariable] = ACTIONS(2429), - [sym__raw_string_literal_start] = ACTIONS(2429), - [sym_float_literal] = ACTIONS(2429), + [ts_builtin_sym_end] = ACTIONS(2507), + [sym_identifier] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(2507), + [anon_sym_macro_rules_BANG] = ACTIONS(2507), + [anon_sym_LPAREN] = ACTIONS(2507), + [anon_sym_LBRACK] = ACTIONS(2507), + [anon_sym_LBRACE] = ACTIONS(2507), + [anon_sym_RBRACE] = ACTIONS(2507), + [anon_sym_STAR] = ACTIONS(2507), + [anon_sym_u8] = ACTIONS(2509), + [anon_sym_i8] = ACTIONS(2509), + [anon_sym_u16] = ACTIONS(2509), + [anon_sym_i16] = ACTIONS(2509), + [anon_sym_u32] = ACTIONS(2509), + [anon_sym_i32] = ACTIONS(2509), + [anon_sym_u64] = ACTIONS(2509), + [anon_sym_i64] = ACTIONS(2509), + [anon_sym_u128] = ACTIONS(2509), + [anon_sym_i128] = ACTIONS(2509), + [anon_sym_isize] = ACTIONS(2509), + [anon_sym_usize] = ACTIONS(2509), + [anon_sym_f32] = ACTIONS(2509), + [anon_sym_f64] = ACTIONS(2509), + [anon_sym_bool] = ACTIONS(2509), + [anon_sym_str] = ACTIONS(2509), + [anon_sym_char] = ACTIONS(2509), + [anon_sym_DASH] = ACTIONS(2507), + [anon_sym_BANG] = ACTIONS(2507), + [anon_sym_AMP] = ACTIONS(2507), + [anon_sym_PIPE] = ACTIONS(2507), + [anon_sym_LT] = ACTIONS(2507), + [anon_sym_DOT_DOT] = ACTIONS(2507), + [anon_sym_COLON_COLON] = ACTIONS(2507), + [anon_sym_POUND] = ACTIONS(2507), + [anon_sym_SQUOTE] = ACTIONS(2509), + [anon_sym_async] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_const] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_default] = ACTIONS(2509), + [anon_sym_enum] = ACTIONS(2509), + [anon_sym_fn] = ACTIONS(2509), + [anon_sym_for] = ACTIONS(2509), + [anon_sym_gen] = ACTIONS(2509), + [anon_sym_if] = ACTIONS(2509), + [anon_sym_impl] = ACTIONS(2509), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_loop] = ACTIONS(2509), + [anon_sym_match] = ACTIONS(2509), + [anon_sym_mod] = ACTIONS(2509), + [anon_sym_pub] = ACTIONS(2509), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_struct] = ACTIONS(2509), + [anon_sym_trait] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_union] = ACTIONS(2509), + [anon_sym_unsafe] = ACTIONS(2509), + [anon_sym_use] = ACTIONS(2509), + [anon_sym_while] = ACTIONS(2509), + [anon_sym_extern] = ACTIONS(2509), + [anon_sym_yield] = ACTIONS(2509), + [anon_sym_move] = ACTIONS(2509), + [anon_sym_try] = ACTIONS(2509), + [sym_integer_literal] = ACTIONS(2507), + [aux_sym_string_literal_token1] = ACTIONS(2507), + [sym_char_literal] = ACTIONS(2507), + [anon_sym_true] = ACTIONS(2509), + [anon_sym_false] = ACTIONS(2509), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2509), + [sym_super] = ACTIONS(2509), + [sym_crate] = ACTIONS(2509), + [sym_metavariable] = ACTIONS(2507), + [sym__raw_string_literal_start] = ACTIONS(2507), + [sym_float_literal] = ACTIONS(2507), }, [STATE(641)] = { [sym_line_comment] = STATE(641), [sym_block_comment] = STATE(641), - [ts_builtin_sym_end] = ACTIONS(2433), - [sym_identifier] = ACTIONS(2435), - [anon_sym_SEMI] = ACTIONS(2433), - [anon_sym_macro_rules_BANG] = ACTIONS(2433), - [anon_sym_LPAREN] = ACTIONS(2433), - [anon_sym_LBRACK] = ACTIONS(2433), - [anon_sym_LBRACE] = ACTIONS(2433), - [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_STAR] = ACTIONS(2433), - [anon_sym_u8] = ACTIONS(2435), - [anon_sym_i8] = ACTIONS(2435), - [anon_sym_u16] = ACTIONS(2435), - [anon_sym_i16] = ACTIONS(2435), - [anon_sym_u32] = ACTIONS(2435), - [anon_sym_i32] = ACTIONS(2435), - [anon_sym_u64] = ACTIONS(2435), - [anon_sym_i64] = ACTIONS(2435), - [anon_sym_u128] = ACTIONS(2435), - [anon_sym_i128] = ACTIONS(2435), - [anon_sym_isize] = ACTIONS(2435), - [anon_sym_usize] = ACTIONS(2435), - [anon_sym_f32] = ACTIONS(2435), - [anon_sym_f64] = ACTIONS(2435), - [anon_sym_bool] = ACTIONS(2435), - [anon_sym_str] = ACTIONS(2435), - [anon_sym_char] = ACTIONS(2435), - [anon_sym_DASH] = ACTIONS(2433), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_AMP] = ACTIONS(2433), - [anon_sym_PIPE] = ACTIONS(2433), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_DOT_DOT] = ACTIONS(2433), - [anon_sym_COLON_COLON] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(2433), - [anon_sym_SQUOTE] = ACTIONS(2435), - [anon_sym_async] = ACTIONS(2435), - [anon_sym_break] = ACTIONS(2435), - [anon_sym_const] = ACTIONS(2435), - [anon_sym_continue] = ACTIONS(2435), - [anon_sym_default] = ACTIONS(2435), - [anon_sym_enum] = ACTIONS(2435), - [anon_sym_fn] = ACTIONS(2435), - [anon_sym_for] = ACTIONS(2435), - [anon_sym_gen] = ACTIONS(2435), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_impl] = ACTIONS(2435), - [anon_sym_let] = ACTIONS(2435), - [anon_sym_loop] = ACTIONS(2435), - [anon_sym_match] = ACTIONS(2435), - [anon_sym_mod] = ACTIONS(2435), - [anon_sym_pub] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2435), - [anon_sym_static] = ACTIONS(2435), - [anon_sym_struct] = ACTIONS(2435), - [anon_sym_trait] = ACTIONS(2435), - [anon_sym_type] = ACTIONS(2435), - [anon_sym_union] = ACTIONS(2435), - [anon_sym_unsafe] = ACTIONS(2435), - [anon_sym_use] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2435), - [anon_sym_extern] = ACTIONS(2435), - [anon_sym_yield] = ACTIONS(2435), - [anon_sym_move] = ACTIONS(2435), - [anon_sym_try] = ACTIONS(2435), - [sym_integer_literal] = ACTIONS(2433), - [aux_sym_string_literal_token1] = ACTIONS(2433), - [sym_char_literal] = ACTIONS(2433), - [anon_sym_true] = ACTIONS(2435), - [anon_sym_false] = ACTIONS(2435), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2435), - [sym_super] = ACTIONS(2435), - [sym_crate] = ACTIONS(2435), - [sym_metavariable] = ACTIONS(2433), - [sym__raw_string_literal_start] = ACTIONS(2433), - [sym_float_literal] = ACTIONS(2433), + [ts_builtin_sym_end] = ACTIONS(1385), + [sym_identifier] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1385), + [anon_sym_macro_rules_BANG] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(1385), + [anon_sym_LBRACE] = ACTIONS(1385), + [anon_sym_RBRACE] = ACTIONS(1385), + [anon_sym_STAR] = ACTIONS(1385), + [anon_sym_u8] = ACTIONS(1387), + [anon_sym_i8] = ACTIONS(1387), + [anon_sym_u16] = ACTIONS(1387), + [anon_sym_i16] = ACTIONS(1387), + [anon_sym_u32] = ACTIONS(1387), + [anon_sym_i32] = ACTIONS(1387), + [anon_sym_u64] = ACTIONS(1387), + [anon_sym_i64] = ACTIONS(1387), + [anon_sym_u128] = ACTIONS(1387), + [anon_sym_i128] = ACTIONS(1387), + [anon_sym_isize] = ACTIONS(1387), + [anon_sym_usize] = ACTIONS(1387), + [anon_sym_f32] = ACTIONS(1387), + [anon_sym_f64] = ACTIONS(1387), + [anon_sym_bool] = ACTIONS(1387), + [anon_sym_str] = ACTIONS(1387), + [anon_sym_char] = ACTIONS(1387), + [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_BANG] = ACTIONS(1385), + [anon_sym_AMP] = ACTIONS(1385), + [anon_sym_PIPE] = ACTIONS(1385), + [anon_sym_LT] = ACTIONS(1385), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_COLON_COLON] = ACTIONS(1385), + [anon_sym_POUND] = ACTIONS(1385), + [anon_sym_SQUOTE] = ACTIONS(1387), + [anon_sym_async] = ACTIONS(1387), + [anon_sym_break] = ACTIONS(1387), + [anon_sym_const] = ACTIONS(1387), + [anon_sym_continue] = ACTIONS(1387), + [anon_sym_default] = ACTIONS(1387), + [anon_sym_enum] = ACTIONS(1387), + [anon_sym_fn] = ACTIONS(1387), + [anon_sym_for] = ACTIONS(1387), + [anon_sym_gen] = ACTIONS(1387), + [anon_sym_if] = ACTIONS(1387), + [anon_sym_impl] = ACTIONS(1387), + [anon_sym_let] = ACTIONS(1387), + [anon_sym_loop] = ACTIONS(1387), + [anon_sym_match] = ACTIONS(1387), + [anon_sym_mod] = ACTIONS(1387), + [anon_sym_pub] = ACTIONS(1387), + [anon_sym_return] = ACTIONS(1387), + [anon_sym_static] = ACTIONS(1387), + [anon_sym_struct] = ACTIONS(1387), + [anon_sym_trait] = ACTIONS(1387), + [anon_sym_type] = ACTIONS(1387), + [anon_sym_union] = ACTIONS(1387), + [anon_sym_unsafe] = ACTIONS(1387), + [anon_sym_use] = ACTIONS(1387), + [anon_sym_while] = ACTIONS(1387), + [anon_sym_extern] = ACTIONS(1387), + [anon_sym_yield] = ACTIONS(1387), + [anon_sym_move] = ACTIONS(1387), + [anon_sym_try] = ACTIONS(1387), + [sym_integer_literal] = ACTIONS(1385), + [aux_sym_string_literal_token1] = ACTIONS(1385), + [sym_char_literal] = ACTIONS(1385), + [anon_sym_true] = ACTIONS(1387), + [anon_sym_false] = ACTIONS(1387), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1387), + [sym_super] = ACTIONS(1387), + [sym_crate] = ACTIONS(1387), + [sym_metavariable] = ACTIONS(1385), + [sym__raw_string_literal_start] = ACTIONS(1385), + [sym_float_literal] = ACTIONS(1385), }, [STATE(642)] = { [sym_line_comment] = STATE(642), [sym_block_comment] = STATE(642), - [ts_builtin_sym_end] = ACTIONS(2437), - [sym_identifier] = ACTIONS(2439), - [anon_sym_SEMI] = ACTIONS(2437), - [anon_sym_macro_rules_BANG] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(2437), - [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2437), - [anon_sym_u8] = ACTIONS(2439), - [anon_sym_i8] = ACTIONS(2439), - [anon_sym_u16] = ACTIONS(2439), - [anon_sym_i16] = ACTIONS(2439), - [anon_sym_u32] = ACTIONS(2439), - [anon_sym_i32] = ACTIONS(2439), - [anon_sym_u64] = ACTIONS(2439), - [anon_sym_i64] = ACTIONS(2439), - [anon_sym_u128] = ACTIONS(2439), - [anon_sym_i128] = ACTIONS(2439), - [anon_sym_isize] = ACTIONS(2439), - [anon_sym_usize] = ACTIONS(2439), - [anon_sym_f32] = ACTIONS(2439), - [anon_sym_f64] = ACTIONS(2439), - [anon_sym_bool] = ACTIONS(2439), - [anon_sym_str] = ACTIONS(2439), - [anon_sym_char] = ACTIONS(2439), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_BANG] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2437), - [anon_sym_COLON_COLON] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_async] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_const] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_default] = ACTIONS(2439), - [anon_sym_enum] = ACTIONS(2439), - [anon_sym_fn] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_gen] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_impl] = ACTIONS(2439), - [anon_sym_let] = ACTIONS(2439), - [anon_sym_loop] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_mod] = ACTIONS(2439), - [anon_sym_pub] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_static] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(2439), - [anon_sym_trait] = ACTIONS(2439), - [anon_sym_type] = ACTIONS(2439), - [anon_sym_union] = ACTIONS(2439), - [anon_sym_unsafe] = ACTIONS(2439), - [anon_sym_use] = ACTIONS(2439), - [anon_sym_while] = ACTIONS(2439), - [anon_sym_extern] = ACTIONS(2439), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_move] = ACTIONS(2439), - [anon_sym_try] = ACTIONS(2439), - [sym_integer_literal] = ACTIONS(2437), - [aux_sym_string_literal_token1] = ACTIONS(2437), - [sym_char_literal] = ACTIONS(2437), - [anon_sym_true] = ACTIONS(2439), - [anon_sym_false] = ACTIONS(2439), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2439), - [sym_super] = ACTIONS(2439), - [sym_crate] = ACTIONS(2439), - [sym_metavariable] = ACTIONS(2437), - [sym__raw_string_literal_start] = ACTIONS(2437), - [sym_float_literal] = ACTIONS(2437), + [ts_builtin_sym_end] = ACTIONS(2511), + [sym_identifier] = ACTIONS(2513), + [anon_sym_SEMI] = ACTIONS(2511), + [anon_sym_macro_rules_BANG] = ACTIONS(2511), + [anon_sym_LPAREN] = ACTIONS(2511), + [anon_sym_LBRACK] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(2511), + [anon_sym_RBRACE] = ACTIONS(2511), + [anon_sym_STAR] = ACTIONS(2511), + [anon_sym_u8] = ACTIONS(2513), + [anon_sym_i8] = ACTIONS(2513), + [anon_sym_u16] = ACTIONS(2513), + [anon_sym_i16] = ACTIONS(2513), + [anon_sym_u32] = ACTIONS(2513), + [anon_sym_i32] = ACTIONS(2513), + [anon_sym_u64] = ACTIONS(2513), + [anon_sym_i64] = ACTIONS(2513), + [anon_sym_u128] = ACTIONS(2513), + [anon_sym_i128] = ACTIONS(2513), + [anon_sym_isize] = ACTIONS(2513), + [anon_sym_usize] = ACTIONS(2513), + [anon_sym_f32] = ACTIONS(2513), + [anon_sym_f64] = ACTIONS(2513), + [anon_sym_bool] = ACTIONS(2513), + [anon_sym_str] = ACTIONS(2513), + [anon_sym_char] = ACTIONS(2513), + [anon_sym_DASH] = ACTIONS(2511), + [anon_sym_BANG] = ACTIONS(2511), + [anon_sym_AMP] = ACTIONS(2511), + [anon_sym_PIPE] = ACTIONS(2511), + [anon_sym_LT] = ACTIONS(2511), + [anon_sym_DOT_DOT] = ACTIONS(2511), + [anon_sym_COLON_COLON] = ACTIONS(2511), + [anon_sym_POUND] = ACTIONS(2511), + [anon_sym_SQUOTE] = ACTIONS(2513), + [anon_sym_async] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2513), + [anon_sym_const] = ACTIONS(2513), + [anon_sym_continue] = ACTIONS(2513), + [anon_sym_default] = ACTIONS(2513), + [anon_sym_enum] = ACTIONS(2513), + [anon_sym_fn] = ACTIONS(2513), + [anon_sym_for] = ACTIONS(2513), + [anon_sym_gen] = ACTIONS(2513), + [anon_sym_if] = ACTIONS(2513), + [anon_sym_impl] = ACTIONS(2513), + [anon_sym_let] = ACTIONS(2513), + [anon_sym_loop] = ACTIONS(2513), + [anon_sym_match] = ACTIONS(2513), + [anon_sym_mod] = ACTIONS(2513), + [anon_sym_pub] = ACTIONS(2513), + [anon_sym_return] = ACTIONS(2513), + [anon_sym_static] = ACTIONS(2513), + [anon_sym_struct] = ACTIONS(2513), + [anon_sym_trait] = ACTIONS(2513), + [anon_sym_type] = ACTIONS(2513), + [anon_sym_union] = ACTIONS(2513), + [anon_sym_unsafe] = ACTIONS(2513), + [anon_sym_use] = ACTIONS(2513), + [anon_sym_while] = ACTIONS(2513), + [anon_sym_extern] = ACTIONS(2513), + [anon_sym_yield] = ACTIONS(2513), + [anon_sym_move] = ACTIONS(2513), + [anon_sym_try] = ACTIONS(2513), + [sym_integer_literal] = ACTIONS(2511), + [aux_sym_string_literal_token1] = ACTIONS(2511), + [sym_char_literal] = ACTIONS(2511), + [anon_sym_true] = ACTIONS(2513), + [anon_sym_false] = ACTIONS(2513), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2513), + [sym_super] = ACTIONS(2513), + [sym_crate] = ACTIONS(2513), + [sym_metavariable] = ACTIONS(2511), + [sym__raw_string_literal_start] = ACTIONS(2511), + [sym_float_literal] = ACTIONS(2511), }, [STATE(643)] = { [sym_line_comment] = STATE(643), [sym_block_comment] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(2441), - [sym_identifier] = ACTIONS(2443), - [anon_sym_SEMI] = ACTIONS(2441), - [anon_sym_macro_rules_BANG] = ACTIONS(2441), - [anon_sym_LPAREN] = ACTIONS(2441), - [anon_sym_LBRACK] = ACTIONS(2441), - [anon_sym_LBRACE] = ACTIONS(2441), - [anon_sym_RBRACE] = ACTIONS(2441), - [anon_sym_STAR] = ACTIONS(2441), - [anon_sym_u8] = ACTIONS(2443), - [anon_sym_i8] = ACTIONS(2443), - [anon_sym_u16] = ACTIONS(2443), - [anon_sym_i16] = ACTIONS(2443), - [anon_sym_u32] = ACTIONS(2443), - [anon_sym_i32] = ACTIONS(2443), - [anon_sym_u64] = ACTIONS(2443), - [anon_sym_i64] = ACTIONS(2443), - [anon_sym_u128] = ACTIONS(2443), - [anon_sym_i128] = ACTIONS(2443), - [anon_sym_isize] = ACTIONS(2443), - [anon_sym_usize] = ACTIONS(2443), - [anon_sym_f32] = ACTIONS(2443), - [anon_sym_f64] = ACTIONS(2443), - [anon_sym_bool] = ACTIONS(2443), - [anon_sym_str] = ACTIONS(2443), - [anon_sym_char] = ACTIONS(2443), - [anon_sym_DASH] = ACTIONS(2441), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_AMP] = ACTIONS(2441), - [anon_sym_PIPE] = ACTIONS(2441), - [anon_sym_LT] = ACTIONS(2441), - [anon_sym_DOT_DOT] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(2441), - [anon_sym_SQUOTE] = ACTIONS(2443), - [anon_sym_async] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_default] = ACTIONS(2443), - [anon_sym_enum] = ACTIONS(2443), - [anon_sym_fn] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_gen] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_impl] = ACTIONS(2443), - [anon_sym_let] = ACTIONS(2443), - [anon_sym_loop] = ACTIONS(2443), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_mod] = ACTIONS(2443), - [anon_sym_pub] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_static] = ACTIONS(2443), - [anon_sym_struct] = ACTIONS(2443), - [anon_sym_trait] = ACTIONS(2443), - [anon_sym_type] = ACTIONS(2443), - [anon_sym_union] = ACTIONS(2443), - [anon_sym_unsafe] = ACTIONS(2443), - [anon_sym_use] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym_yield] = ACTIONS(2443), - [anon_sym_move] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2443), - [sym_integer_literal] = ACTIONS(2441), - [aux_sym_string_literal_token1] = ACTIONS(2441), - [sym_char_literal] = ACTIONS(2441), - [anon_sym_true] = ACTIONS(2443), - [anon_sym_false] = ACTIONS(2443), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2443), - [sym_super] = ACTIONS(2443), - [sym_crate] = ACTIONS(2443), - [sym_metavariable] = ACTIONS(2441), - [sym__raw_string_literal_start] = ACTIONS(2441), - [sym_float_literal] = ACTIONS(2441), + [ts_builtin_sym_end] = ACTIONS(2515), + [sym_identifier] = ACTIONS(2517), + [anon_sym_SEMI] = ACTIONS(2515), + [anon_sym_macro_rules_BANG] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(2515), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_RBRACE] = ACTIONS(2515), + [anon_sym_STAR] = ACTIONS(2515), + [anon_sym_u8] = ACTIONS(2517), + [anon_sym_i8] = ACTIONS(2517), + [anon_sym_u16] = ACTIONS(2517), + [anon_sym_i16] = ACTIONS(2517), + [anon_sym_u32] = ACTIONS(2517), + [anon_sym_i32] = ACTIONS(2517), + [anon_sym_u64] = ACTIONS(2517), + [anon_sym_i64] = ACTIONS(2517), + [anon_sym_u128] = ACTIONS(2517), + [anon_sym_i128] = ACTIONS(2517), + [anon_sym_isize] = ACTIONS(2517), + [anon_sym_usize] = ACTIONS(2517), + [anon_sym_f32] = ACTIONS(2517), + [anon_sym_f64] = ACTIONS(2517), + [anon_sym_bool] = ACTIONS(2517), + [anon_sym_str] = ACTIONS(2517), + [anon_sym_char] = ACTIONS(2517), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_BANG] = ACTIONS(2515), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE] = ACTIONS(2515), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_DOT_DOT] = ACTIONS(2515), + [anon_sym_COLON_COLON] = ACTIONS(2515), + [anon_sym_POUND] = ACTIONS(2515), + [anon_sym_SQUOTE] = ACTIONS(2517), + [anon_sym_async] = ACTIONS(2517), + [anon_sym_break] = ACTIONS(2517), + [anon_sym_const] = ACTIONS(2517), + [anon_sym_continue] = ACTIONS(2517), + [anon_sym_default] = ACTIONS(2517), + [anon_sym_enum] = ACTIONS(2517), + [anon_sym_fn] = ACTIONS(2517), + [anon_sym_for] = ACTIONS(2517), + [anon_sym_gen] = ACTIONS(2517), + [anon_sym_if] = ACTIONS(2517), + [anon_sym_impl] = ACTIONS(2517), + [anon_sym_let] = ACTIONS(2517), + [anon_sym_loop] = ACTIONS(2517), + [anon_sym_match] = ACTIONS(2517), + [anon_sym_mod] = ACTIONS(2517), + [anon_sym_pub] = ACTIONS(2517), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_static] = ACTIONS(2517), + [anon_sym_struct] = ACTIONS(2517), + [anon_sym_trait] = ACTIONS(2517), + [anon_sym_type] = ACTIONS(2517), + [anon_sym_union] = ACTIONS(2517), + [anon_sym_unsafe] = ACTIONS(2517), + [anon_sym_use] = ACTIONS(2517), + [anon_sym_while] = ACTIONS(2517), + [anon_sym_extern] = ACTIONS(2517), + [anon_sym_yield] = ACTIONS(2517), + [anon_sym_move] = ACTIONS(2517), + [anon_sym_try] = ACTIONS(2517), + [sym_integer_literal] = ACTIONS(2515), + [aux_sym_string_literal_token1] = ACTIONS(2515), + [sym_char_literal] = ACTIONS(2515), + [anon_sym_true] = ACTIONS(2517), + [anon_sym_false] = ACTIONS(2517), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2517), + [sym_super] = ACTIONS(2517), + [sym_crate] = ACTIONS(2517), + [sym_metavariable] = ACTIONS(2515), + [sym__raw_string_literal_start] = ACTIONS(2515), + [sym_float_literal] = ACTIONS(2515), }, [STATE(644)] = { [sym_line_comment] = STATE(644), [sym_block_comment] = STATE(644), - [ts_builtin_sym_end] = ACTIONS(2445), - [sym_identifier] = ACTIONS(2447), - [anon_sym_SEMI] = ACTIONS(2445), - [anon_sym_macro_rules_BANG] = ACTIONS(2445), - [anon_sym_LPAREN] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2445), - [anon_sym_RBRACE] = ACTIONS(2445), - [anon_sym_STAR] = ACTIONS(2445), - [anon_sym_u8] = ACTIONS(2447), - [anon_sym_i8] = ACTIONS(2447), - [anon_sym_u16] = ACTIONS(2447), - [anon_sym_i16] = ACTIONS(2447), - [anon_sym_u32] = ACTIONS(2447), - [anon_sym_i32] = ACTIONS(2447), - [anon_sym_u64] = ACTIONS(2447), - [anon_sym_i64] = ACTIONS(2447), - [anon_sym_u128] = ACTIONS(2447), - [anon_sym_i128] = ACTIONS(2447), - [anon_sym_isize] = ACTIONS(2447), - [anon_sym_usize] = ACTIONS(2447), - [anon_sym_f32] = ACTIONS(2447), - [anon_sym_f64] = ACTIONS(2447), - [anon_sym_bool] = ACTIONS(2447), - [anon_sym_str] = ACTIONS(2447), - [anon_sym_char] = ACTIONS(2447), - [anon_sym_DASH] = ACTIONS(2445), - [anon_sym_BANG] = ACTIONS(2445), - [anon_sym_AMP] = ACTIONS(2445), - [anon_sym_PIPE] = ACTIONS(2445), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_DOT_DOT] = ACTIONS(2445), - [anon_sym_COLON_COLON] = ACTIONS(2445), - [anon_sym_POUND] = ACTIONS(2445), - [anon_sym_SQUOTE] = ACTIONS(2447), - [anon_sym_async] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_default] = ACTIONS(2447), - [anon_sym_enum] = ACTIONS(2447), - [anon_sym_fn] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_gen] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_impl] = ACTIONS(2447), - [anon_sym_let] = ACTIONS(2447), - [anon_sym_loop] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_mod] = ACTIONS(2447), - [anon_sym_pub] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_static] = ACTIONS(2447), - [anon_sym_struct] = ACTIONS(2447), - [anon_sym_trait] = ACTIONS(2447), - [anon_sym_type] = ACTIONS(2447), - [anon_sym_union] = ACTIONS(2447), - [anon_sym_unsafe] = ACTIONS(2447), - [anon_sym_use] = ACTIONS(2447), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym_yield] = ACTIONS(2447), - [anon_sym_move] = ACTIONS(2447), - [anon_sym_try] = ACTIONS(2447), - [sym_integer_literal] = ACTIONS(2445), - [aux_sym_string_literal_token1] = ACTIONS(2445), - [sym_char_literal] = ACTIONS(2445), - [anon_sym_true] = ACTIONS(2447), - [anon_sym_false] = ACTIONS(2447), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2447), - [sym_super] = ACTIONS(2447), - [sym_crate] = ACTIONS(2447), - [sym_metavariable] = ACTIONS(2445), - [sym__raw_string_literal_start] = ACTIONS(2445), - [sym_float_literal] = ACTIONS(2445), + [ts_builtin_sym_end] = ACTIONS(2519), + [sym_identifier] = ACTIONS(2521), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_macro_rules_BANG] = ACTIONS(2519), + [anon_sym_LPAREN] = ACTIONS(2519), + [anon_sym_LBRACK] = ACTIONS(2519), + [anon_sym_LBRACE] = ACTIONS(2519), + [anon_sym_RBRACE] = ACTIONS(2519), + [anon_sym_STAR] = ACTIONS(2519), + [anon_sym_u8] = ACTIONS(2521), + [anon_sym_i8] = ACTIONS(2521), + [anon_sym_u16] = ACTIONS(2521), + [anon_sym_i16] = ACTIONS(2521), + [anon_sym_u32] = ACTIONS(2521), + [anon_sym_i32] = ACTIONS(2521), + [anon_sym_u64] = ACTIONS(2521), + [anon_sym_i64] = ACTIONS(2521), + [anon_sym_u128] = ACTIONS(2521), + [anon_sym_i128] = ACTIONS(2521), + [anon_sym_isize] = ACTIONS(2521), + [anon_sym_usize] = ACTIONS(2521), + [anon_sym_f32] = ACTIONS(2521), + [anon_sym_f64] = ACTIONS(2521), + [anon_sym_bool] = ACTIONS(2521), + [anon_sym_str] = ACTIONS(2521), + [anon_sym_char] = ACTIONS(2521), + [anon_sym_DASH] = ACTIONS(2519), + [anon_sym_BANG] = ACTIONS(2519), + [anon_sym_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2519), + [anon_sym_DOT_DOT] = ACTIONS(2519), + [anon_sym_COLON_COLON] = ACTIONS(2519), + [anon_sym_POUND] = ACTIONS(2519), + [anon_sym_SQUOTE] = ACTIONS(2521), + [anon_sym_async] = ACTIONS(2521), + [anon_sym_break] = ACTIONS(2521), + [anon_sym_const] = ACTIONS(2521), + [anon_sym_continue] = ACTIONS(2521), + [anon_sym_default] = ACTIONS(2521), + [anon_sym_enum] = ACTIONS(2521), + [anon_sym_fn] = ACTIONS(2521), + [anon_sym_for] = ACTIONS(2521), + [anon_sym_gen] = ACTIONS(2521), + [anon_sym_if] = ACTIONS(2521), + [anon_sym_impl] = ACTIONS(2521), + [anon_sym_let] = ACTIONS(2521), + [anon_sym_loop] = ACTIONS(2521), + [anon_sym_match] = ACTIONS(2521), + [anon_sym_mod] = ACTIONS(2521), + [anon_sym_pub] = ACTIONS(2521), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(2521), + [anon_sym_struct] = ACTIONS(2521), + [anon_sym_trait] = ACTIONS(2521), + [anon_sym_type] = ACTIONS(2521), + [anon_sym_union] = ACTIONS(2521), + [anon_sym_unsafe] = ACTIONS(2521), + [anon_sym_use] = ACTIONS(2521), + [anon_sym_while] = ACTIONS(2521), + [anon_sym_extern] = ACTIONS(2521), + [anon_sym_yield] = ACTIONS(2521), + [anon_sym_move] = ACTIONS(2521), + [anon_sym_try] = ACTIONS(2521), + [sym_integer_literal] = ACTIONS(2519), + [aux_sym_string_literal_token1] = ACTIONS(2519), + [sym_char_literal] = ACTIONS(2519), + [anon_sym_true] = ACTIONS(2521), + [anon_sym_false] = ACTIONS(2521), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2521), + [sym_super] = ACTIONS(2521), + [sym_crate] = ACTIONS(2521), + [sym_metavariable] = ACTIONS(2519), + [sym__raw_string_literal_start] = ACTIONS(2519), + [sym_float_literal] = ACTIONS(2519), }, [STATE(645)] = { [sym_line_comment] = STATE(645), [sym_block_comment] = STATE(645), - [ts_builtin_sym_end] = ACTIONS(2449), - [sym_identifier] = ACTIONS(2451), - [anon_sym_SEMI] = ACTIONS(2449), - [anon_sym_macro_rules_BANG] = ACTIONS(2449), - [anon_sym_LPAREN] = ACTIONS(2449), - [anon_sym_LBRACK] = ACTIONS(2449), - [anon_sym_LBRACE] = ACTIONS(2449), - [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2449), - [anon_sym_u8] = ACTIONS(2451), - [anon_sym_i8] = ACTIONS(2451), - [anon_sym_u16] = ACTIONS(2451), - [anon_sym_i16] = ACTIONS(2451), - [anon_sym_u32] = ACTIONS(2451), - [anon_sym_i32] = ACTIONS(2451), - [anon_sym_u64] = ACTIONS(2451), - [anon_sym_i64] = ACTIONS(2451), - [anon_sym_u128] = ACTIONS(2451), - [anon_sym_i128] = ACTIONS(2451), - [anon_sym_isize] = ACTIONS(2451), - [anon_sym_usize] = ACTIONS(2451), - [anon_sym_f32] = ACTIONS(2451), - [anon_sym_f64] = ACTIONS(2451), - [anon_sym_bool] = ACTIONS(2451), - [anon_sym_str] = ACTIONS(2451), - [anon_sym_char] = ACTIONS(2451), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_BANG] = ACTIONS(2449), - [anon_sym_AMP] = ACTIONS(2449), - [anon_sym_PIPE] = ACTIONS(2449), - [anon_sym_LT] = ACTIONS(2449), - [anon_sym_DOT_DOT] = ACTIONS(2449), - [anon_sym_COLON_COLON] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(2449), - [anon_sym_SQUOTE] = ACTIONS(2451), - [anon_sym_async] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_default] = ACTIONS(2451), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_fn] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_gen] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_impl] = ACTIONS(2451), - [anon_sym_let] = ACTIONS(2451), - [anon_sym_loop] = ACTIONS(2451), - [anon_sym_match] = ACTIONS(2451), - [anon_sym_mod] = ACTIONS(2451), - [anon_sym_pub] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_static] = ACTIONS(2451), - [anon_sym_struct] = ACTIONS(2451), - [anon_sym_trait] = ACTIONS(2451), - [anon_sym_type] = ACTIONS(2451), - [anon_sym_union] = ACTIONS(2451), - [anon_sym_unsafe] = ACTIONS(2451), - [anon_sym_use] = ACTIONS(2451), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym_yield] = ACTIONS(2451), - [anon_sym_move] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2451), - [sym_integer_literal] = ACTIONS(2449), - [aux_sym_string_literal_token1] = ACTIONS(2449), - [sym_char_literal] = ACTIONS(2449), - [anon_sym_true] = ACTIONS(2451), - [anon_sym_false] = ACTIONS(2451), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2451), - [sym_super] = ACTIONS(2451), - [sym_crate] = ACTIONS(2451), - [sym_metavariable] = ACTIONS(2449), - [sym__raw_string_literal_start] = ACTIONS(2449), - [sym_float_literal] = ACTIONS(2449), + [ts_builtin_sym_end] = ACTIONS(2523), + [sym_identifier] = ACTIONS(2525), + [anon_sym_SEMI] = ACTIONS(2523), + [anon_sym_macro_rules_BANG] = ACTIONS(2523), + [anon_sym_LPAREN] = ACTIONS(2523), + [anon_sym_LBRACK] = ACTIONS(2523), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_RBRACE] = ACTIONS(2523), + [anon_sym_STAR] = ACTIONS(2523), + [anon_sym_u8] = ACTIONS(2525), + [anon_sym_i8] = ACTIONS(2525), + [anon_sym_u16] = ACTIONS(2525), + [anon_sym_i16] = ACTIONS(2525), + [anon_sym_u32] = ACTIONS(2525), + [anon_sym_i32] = ACTIONS(2525), + [anon_sym_u64] = ACTIONS(2525), + [anon_sym_i64] = ACTIONS(2525), + [anon_sym_u128] = ACTIONS(2525), + [anon_sym_i128] = ACTIONS(2525), + [anon_sym_isize] = ACTIONS(2525), + [anon_sym_usize] = ACTIONS(2525), + [anon_sym_f32] = ACTIONS(2525), + [anon_sym_f64] = ACTIONS(2525), + [anon_sym_bool] = ACTIONS(2525), + [anon_sym_str] = ACTIONS(2525), + [anon_sym_char] = ACTIONS(2525), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_BANG] = ACTIONS(2523), + [anon_sym_AMP] = ACTIONS(2523), + [anon_sym_PIPE] = ACTIONS(2523), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_DOT_DOT] = ACTIONS(2523), + [anon_sym_COLON_COLON] = ACTIONS(2523), + [anon_sym_POUND] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2525), + [anon_sym_async] = ACTIONS(2525), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_const] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_default] = ACTIONS(2525), + [anon_sym_enum] = ACTIONS(2525), + [anon_sym_fn] = ACTIONS(2525), + [anon_sym_for] = ACTIONS(2525), + [anon_sym_gen] = ACTIONS(2525), + [anon_sym_if] = ACTIONS(2525), + [anon_sym_impl] = ACTIONS(2525), + [anon_sym_let] = ACTIONS(2525), + [anon_sym_loop] = ACTIONS(2525), + [anon_sym_match] = ACTIONS(2525), + [anon_sym_mod] = ACTIONS(2525), + [anon_sym_pub] = ACTIONS(2525), + [anon_sym_return] = ACTIONS(2525), + [anon_sym_static] = ACTIONS(2525), + [anon_sym_struct] = ACTIONS(2525), + [anon_sym_trait] = ACTIONS(2525), + [anon_sym_type] = ACTIONS(2525), + [anon_sym_union] = ACTIONS(2525), + [anon_sym_unsafe] = ACTIONS(2525), + [anon_sym_use] = ACTIONS(2525), + [anon_sym_while] = ACTIONS(2525), + [anon_sym_extern] = ACTIONS(2525), + [anon_sym_yield] = ACTIONS(2525), + [anon_sym_move] = ACTIONS(2525), + [anon_sym_try] = ACTIONS(2525), + [sym_integer_literal] = ACTIONS(2523), + [aux_sym_string_literal_token1] = ACTIONS(2523), + [sym_char_literal] = ACTIONS(2523), + [anon_sym_true] = ACTIONS(2525), + [anon_sym_false] = ACTIONS(2525), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2525), + [sym_super] = ACTIONS(2525), + [sym_crate] = ACTIONS(2525), + [sym_metavariable] = ACTIONS(2523), + [sym__raw_string_literal_start] = ACTIONS(2523), + [sym_float_literal] = ACTIONS(2523), }, [STATE(646)] = { [sym_line_comment] = STATE(646), [sym_block_comment] = STATE(646), - [ts_builtin_sym_end] = ACTIONS(2453), - [sym_identifier] = ACTIONS(2455), - [anon_sym_SEMI] = ACTIONS(2453), - [anon_sym_macro_rules_BANG] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(2453), - [anon_sym_LBRACK] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_STAR] = ACTIONS(2453), - [anon_sym_u8] = ACTIONS(2455), - [anon_sym_i8] = ACTIONS(2455), - [anon_sym_u16] = ACTIONS(2455), - [anon_sym_i16] = ACTIONS(2455), - [anon_sym_u32] = ACTIONS(2455), - [anon_sym_i32] = ACTIONS(2455), - [anon_sym_u64] = ACTIONS(2455), - [anon_sym_i64] = ACTIONS(2455), - [anon_sym_u128] = ACTIONS(2455), - [anon_sym_i128] = ACTIONS(2455), - [anon_sym_isize] = ACTIONS(2455), - [anon_sym_usize] = ACTIONS(2455), - [anon_sym_f32] = ACTIONS(2455), - [anon_sym_f64] = ACTIONS(2455), - [anon_sym_bool] = ACTIONS(2455), - [anon_sym_str] = ACTIONS(2455), - [anon_sym_char] = ACTIONS(2455), - [anon_sym_DASH] = ACTIONS(2453), - [anon_sym_BANG] = ACTIONS(2453), - [anon_sym_AMP] = ACTIONS(2453), - [anon_sym_PIPE] = ACTIONS(2453), - [anon_sym_LT] = ACTIONS(2453), - [anon_sym_DOT_DOT] = ACTIONS(2453), - [anon_sym_COLON_COLON] = ACTIONS(2453), - [anon_sym_POUND] = ACTIONS(2453), - [anon_sym_SQUOTE] = ACTIONS(2455), - [anon_sym_async] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_default] = ACTIONS(2455), - [anon_sym_enum] = ACTIONS(2455), - [anon_sym_fn] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_gen] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_impl] = ACTIONS(2455), - [anon_sym_let] = ACTIONS(2455), - [anon_sym_loop] = ACTIONS(2455), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_mod] = ACTIONS(2455), - [anon_sym_pub] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_static] = ACTIONS(2455), - [anon_sym_struct] = ACTIONS(2455), - [anon_sym_trait] = ACTIONS(2455), - [anon_sym_type] = ACTIONS(2455), - [anon_sym_union] = ACTIONS(2455), - [anon_sym_unsafe] = ACTIONS(2455), - [anon_sym_use] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [anon_sym_extern] = ACTIONS(2455), - [anon_sym_yield] = ACTIONS(2455), - [anon_sym_move] = ACTIONS(2455), - [anon_sym_try] = ACTIONS(2455), - [sym_integer_literal] = ACTIONS(2453), - [aux_sym_string_literal_token1] = ACTIONS(2453), - [sym_char_literal] = ACTIONS(2453), - [anon_sym_true] = ACTIONS(2455), - [anon_sym_false] = ACTIONS(2455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2455), - [sym_super] = ACTIONS(2455), - [sym_crate] = ACTIONS(2455), - [sym_metavariable] = ACTIONS(2453), - [sym__raw_string_literal_start] = ACTIONS(2453), - [sym_float_literal] = ACTIONS(2453), + [ts_builtin_sym_end] = ACTIONS(2527), + [sym_identifier] = ACTIONS(2529), + [anon_sym_SEMI] = ACTIONS(2527), + [anon_sym_macro_rules_BANG] = ACTIONS(2527), + [anon_sym_LPAREN] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2527), + [anon_sym_LBRACE] = ACTIONS(2527), + [anon_sym_RBRACE] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2527), + [anon_sym_u8] = ACTIONS(2529), + [anon_sym_i8] = ACTIONS(2529), + [anon_sym_u16] = ACTIONS(2529), + [anon_sym_i16] = ACTIONS(2529), + [anon_sym_u32] = ACTIONS(2529), + [anon_sym_i32] = ACTIONS(2529), + [anon_sym_u64] = ACTIONS(2529), + [anon_sym_i64] = ACTIONS(2529), + [anon_sym_u128] = ACTIONS(2529), + [anon_sym_i128] = ACTIONS(2529), + [anon_sym_isize] = ACTIONS(2529), + [anon_sym_usize] = ACTIONS(2529), + [anon_sym_f32] = ACTIONS(2529), + [anon_sym_f64] = ACTIONS(2529), + [anon_sym_bool] = ACTIONS(2529), + [anon_sym_str] = ACTIONS(2529), + [anon_sym_char] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2527), + [anon_sym_BANG] = ACTIONS(2527), + [anon_sym_AMP] = ACTIONS(2527), + [anon_sym_PIPE] = ACTIONS(2527), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_DOT_DOT] = ACTIONS(2527), + [anon_sym_COLON_COLON] = ACTIONS(2527), + [anon_sym_POUND] = ACTIONS(2527), + [anon_sym_SQUOTE] = ACTIONS(2529), + [anon_sym_async] = ACTIONS(2529), + [anon_sym_break] = ACTIONS(2529), + [anon_sym_const] = ACTIONS(2529), + [anon_sym_continue] = ACTIONS(2529), + [anon_sym_default] = ACTIONS(2529), + [anon_sym_enum] = ACTIONS(2529), + [anon_sym_fn] = ACTIONS(2529), + [anon_sym_for] = ACTIONS(2529), + [anon_sym_gen] = ACTIONS(2529), + [anon_sym_if] = ACTIONS(2529), + [anon_sym_impl] = ACTIONS(2529), + [anon_sym_let] = ACTIONS(2529), + [anon_sym_loop] = ACTIONS(2529), + [anon_sym_match] = ACTIONS(2529), + [anon_sym_mod] = ACTIONS(2529), + [anon_sym_pub] = ACTIONS(2529), + [anon_sym_return] = ACTIONS(2529), + [anon_sym_static] = ACTIONS(2529), + [anon_sym_struct] = ACTIONS(2529), + [anon_sym_trait] = ACTIONS(2529), + [anon_sym_type] = ACTIONS(2529), + [anon_sym_union] = ACTIONS(2529), + [anon_sym_unsafe] = ACTIONS(2529), + [anon_sym_use] = ACTIONS(2529), + [anon_sym_while] = ACTIONS(2529), + [anon_sym_extern] = ACTIONS(2529), + [anon_sym_yield] = ACTIONS(2529), + [anon_sym_move] = ACTIONS(2529), + [anon_sym_try] = ACTIONS(2529), + [sym_integer_literal] = ACTIONS(2527), + [aux_sym_string_literal_token1] = ACTIONS(2527), + [sym_char_literal] = ACTIONS(2527), + [anon_sym_true] = ACTIONS(2529), + [anon_sym_false] = ACTIONS(2529), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2529), + [sym_super] = ACTIONS(2529), + [sym_crate] = ACTIONS(2529), + [sym_metavariable] = ACTIONS(2527), + [sym__raw_string_literal_start] = ACTIONS(2527), + [sym_float_literal] = ACTIONS(2527), }, [STATE(647)] = { [sym_line_comment] = STATE(647), [sym_block_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(2457), - [sym_identifier] = ACTIONS(2459), - [anon_sym_SEMI] = ACTIONS(2457), - [anon_sym_macro_rules_BANG] = ACTIONS(2457), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_LBRACK] = ACTIONS(2457), - [anon_sym_LBRACE] = ACTIONS(2457), - [anon_sym_RBRACE] = ACTIONS(2457), - [anon_sym_STAR] = ACTIONS(2457), - [anon_sym_u8] = ACTIONS(2459), - [anon_sym_i8] = ACTIONS(2459), - [anon_sym_u16] = ACTIONS(2459), - [anon_sym_i16] = ACTIONS(2459), - [anon_sym_u32] = ACTIONS(2459), - [anon_sym_i32] = ACTIONS(2459), - [anon_sym_u64] = ACTIONS(2459), - [anon_sym_i64] = ACTIONS(2459), - [anon_sym_u128] = ACTIONS(2459), - [anon_sym_i128] = ACTIONS(2459), - [anon_sym_isize] = ACTIONS(2459), - [anon_sym_usize] = ACTIONS(2459), - [anon_sym_f32] = ACTIONS(2459), - [anon_sym_f64] = ACTIONS(2459), - [anon_sym_bool] = ACTIONS(2459), - [anon_sym_str] = ACTIONS(2459), - [anon_sym_char] = ACTIONS(2459), - [anon_sym_DASH] = ACTIONS(2457), - [anon_sym_BANG] = ACTIONS(2457), - [anon_sym_AMP] = ACTIONS(2457), - [anon_sym_PIPE] = ACTIONS(2457), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_DOT_DOT] = ACTIONS(2457), - [anon_sym_COLON_COLON] = ACTIONS(2457), - [anon_sym_POUND] = ACTIONS(2457), - [anon_sym_SQUOTE] = ACTIONS(2459), - [anon_sym_async] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_default] = ACTIONS(2459), - [anon_sym_enum] = ACTIONS(2459), - [anon_sym_fn] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_gen] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_impl] = ACTIONS(2459), - [anon_sym_let] = ACTIONS(2459), - [anon_sym_loop] = ACTIONS(2459), - [anon_sym_match] = ACTIONS(2459), - [anon_sym_mod] = ACTIONS(2459), - [anon_sym_pub] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_static] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(2459), - [anon_sym_trait] = ACTIONS(2459), - [anon_sym_type] = ACTIONS(2459), - [anon_sym_union] = ACTIONS(2459), - [anon_sym_unsafe] = ACTIONS(2459), - [anon_sym_use] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym_yield] = ACTIONS(2459), - [anon_sym_move] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [sym_integer_literal] = ACTIONS(2457), - [aux_sym_string_literal_token1] = ACTIONS(2457), - [sym_char_literal] = ACTIONS(2457), - [anon_sym_true] = ACTIONS(2459), - [anon_sym_false] = ACTIONS(2459), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2459), - [sym_super] = ACTIONS(2459), - [sym_crate] = ACTIONS(2459), - [sym_metavariable] = ACTIONS(2457), - [sym__raw_string_literal_start] = ACTIONS(2457), - [sym_float_literal] = ACTIONS(2457), + [ts_builtin_sym_end] = ACTIONS(2531), + [sym_identifier] = ACTIONS(2533), + [anon_sym_SEMI] = ACTIONS(2531), + [anon_sym_macro_rules_BANG] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2531), + [anon_sym_LBRACK] = ACTIONS(2531), + [anon_sym_LBRACE] = ACTIONS(2531), + [anon_sym_RBRACE] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(2531), + [anon_sym_u8] = ACTIONS(2533), + [anon_sym_i8] = ACTIONS(2533), + [anon_sym_u16] = ACTIONS(2533), + [anon_sym_i16] = ACTIONS(2533), + [anon_sym_u32] = ACTIONS(2533), + [anon_sym_i32] = ACTIONS(2533), + [anon_sym_u64] = ACTIONS(2533), + [anon_sym_i64] = ACTIONS(2533), + [anon_sym_u128] = ACTIONS(2533), + [anon_sym_i128] = ACTIONS(2533), + [anon_sym_isize] = ACTIONS(2533), + [anon_sym_usize] = ACTIONS(2533), + [anon_sym_f32] = ACTIONS(2533), + [anon_sym_f64] = ACTIONS(2533), + [anon_sym_bool] = ACTIONS(2533), + [anon_sym_str] = ACTIONS(2533), + [anon_sym_char] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_BANG] = ACTIONS(2531), + [anon_sym_AMP] = ACTIONS(2531), + [anon_sym_PIPE] = ACTIONS(2531), + [anon_sym_LT] = ACTIONS(2531), + [anon_sym_DOT_DOT] = ACTIONS(2531), + [anon_sym_COLON_COLON] = ACTIONS(2531), + [anon_sym_POUND] = ACTIONS(2531), + [anon_sym_SQUOTE] = ACTIONS(2533), + [anon_sym_async] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(2533), + [anon_sym_const] = ACTIONS(2533), + [anon_sym_continue] = ACTIONS(2533), + [anon_sym_default] = ACTIONS(2533), + [anon_sym_enum] = ACTIONS(2533), + [anon_sym_fn] = ACTIONS(2533), + [anon_sym_for] = ACTIONS(2533), + [anon_sym_gen] = ACTIONS(2533), + [anon_sym_if] = ACTIONS(2533), + [anon_sym_impl] = ACTIONS(2533), + [anon_sym_let] = ACTIONS(2533), + [anon_sym_loop] = ACTIONS(2533), + [anon_sym_match] = ACTIONS(2533), + [anon_sym_mod] = ACTIONS(2533), + [anon_sym_pub] = ACTIONS(2533), + [anon_sym_return] = ACTIONS(2533), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_struct] = ACTIONS(2533), + [anon_sym_trait] = ACTIONS(2533), + [anon_sym_type] = ACTIONS(2533), + [anon_sym_union] = ACTIONS(2533), + [anon_sym_unsafe] = ACTIONS(2533), + [anon_sym_use] = ACTIONS(2533), + [anon_sym_while] = ACTIONS(2533), + [anon_sym_extern] = ACTIONS(2533), + [anon_sym_yield] = ACTIONS(2533), + [anon_sym_move] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2533), + [sym_integer_literal] = ACTIONS(2531), + [aux_sym_string_literal_token1] = ACTIONS(2531), + [sym_char_literal] = ACTIONS(2531), + [anon_sym_true] = ACTIONS(2533), + [anon_sym_false] = ACTIONS(2533), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2533), + [sym_super] = ACTIONS(2533), + [sym_crate] = ACTIONS(2533), + [sym_metavariable] = ACTIONS(2531), + [sym__raw_string_literal_start] = ACTIONS(2531), + [sym_float_literal] = ACTIONS(2531), }, [STATE(648)] = { [sym_line_comment] = STATE(648), [sym_block_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(2461), - [sym_identifier] = ACTIONS(2463), - [anon_sym_SEMI] = ACTIONS(2461), - [anon_sym_macro_rules_BANG] = ACTIONS(2461), - [anon_sym_LPAREN] = ACTIONS(2461), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_LBRACE] = ACTIONS(2461), - [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_u8] = ACTIONS(2463), - [anon_sym_i8] = ACTIONS(2463), - [anon_sym_u16] = ACTIONS(2463), - [anon_sym_i16] = ACTIONS(2463), - [anon_sym_u32] = ACTIONS(2463), - [anon_sym_i32] = ACTIONS(2463), - [anon_sym_u64] = ACTIONS(2463), - [anon_sym_i64] = ACTIONS(2463), - [anon_sym_u128] = ACTIONS(2463), - [anon_sym_i128] = ACTIONS(2463), - [anon_sym_isize] = ACTIONS(2463), - [anon_sym_usize] = ACTIONS(2463), - [anon_sym_f32] = ACTIONS(2463), - [anon_sym_f64] = ACTIONS(2463), - [anon_sym_bool] = ACTIONS(2463), - [anon_sym_str] = ACTIONS(2463), - [anon_sym_char] = ACTIONS(2463), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_BANG] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_PIPE] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_DOT_DOT] = ACTIONS(2461), - [anon_sym_COLON_COLON] = ACTIONS(2461), - [anon_sym_POUND] = ACTIONS(2461), - [anon_sym_SQUOTE] = ACTIONS(2463), - [anon_sym_async] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_const] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_default] = ACTIONS(2463), - [anon_sym_enum] = ACTIONS(2463), - [anon_sym_fn] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_gen] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_impl] = ACTIONS(2463), - [anon_sym_let] = ACTIONS(2463), - [anon_sym_loop] = ACTIONS(2463), - [anon_sym_match] = ACTIONS(2463), - [anon_sym_mod] = ACTIONS(2463), - [anon_sym_pub] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_static] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(2463), - [anon_sym_trait] = ACTIONS(2463), - [anon_sym_type] = ACTIONS(2463), - [anon_sym_union] = ACTIONS(2463), - [anon_sym_unsafe] = ACTIONS(2463), - [anon_sym_use] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_extern] = ACTIONS(2463), - [anon_sym_yield] = ACTIONS(2463), - [anon_sym_move] = ACTIONS(2463), - [anon_sym_try] = ACTIONS(2463), - [sym_integer_literal] = ACTIONS(2461), - [aux_sym_string_literal_token1] = ACTIONS(2461), - [sym_char_literal] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2463), - [anon_sym_false] = ACTIONS(2463), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2463), - [sym_super] = ACTIONS(2463), - [sym_crate] = ACTIONS(2463), - [sym_metavariable] = ACTIONS(2461), - [sym__raw_string_literal_start] = ACTIONS(2461), - [sym_float_literal] = ACTIONS(2461), + [ts_builtin_sym_end] = ACTIONS(2535), + [sym_identifier] = ACTIONS(2537), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_macro_rules_BANG] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_LBRACK] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_STAR] = ACTIONS(2535), + [anon_sym_u8] = ACTIONS(2537), + [anon_sym_i8] = ACTIONS(2537), + [anon_sym_u16] = ACTIONS(2537), + [anon_sym_i16] = ACTIONS(2537), + [anon_sym_u32] = ACTIONS(2537), + [anon_sym_i32] = ACTIONS(2537), + [anon_sym_u64] = ACTIONS(2537), + [anon_sym_i64] = ACTIONS(2537), + [anon_sym_u128] = ACTIONS(2537), + [anon_sym_i128] = ACTIONS(2537), + [anon_sym_isize] = ACTIONS(2537), + [anon_sym_usize] = ACTIONS(2537), + [anon_sym_f32] = ACTIONS(2537), + [anon_sym_f64] = ACTIONS(2537), + [anon_sym_bool] = ACTIONS(2537), + [anon_sym_str] = ACTIONS(2537), + [anon_sym_char] = ACTIONS(2537), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_BANG] = ACTIONS(2535), + [anon_sym_AMP] = ACTIONS(2535), + [anon_sym_PIPE] = ACTIONS(2535), + [anon_sym_LT] = ACTIONS(2535), + [anon_sym_DOT_DOT] = ACTIONS(2535), + [anon_sym_COLON_COLON] = ACTIONS(2535), + [anon_sym_POUND] = ACTIONS(2535), + [anon_sym_SQUOTE] = ACTIONS(2537), + [anon_sym_async] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2537), + [anon_sym_const] = ACTIONS(2537), + [anon_sym_continue] = ACTIONS(2537), + [anon_sym_default] = ACTIONS(2537), + [anon_sym_enum] = ACTIONS(2537), + [anon_sym_fn] = ACTIONS(2537), + [anon_sym_for] = ACTIONS(2537), + [anon_sym_gen] = ACTIONS(2537), + [anon_sym_if] = ACTIONS(2537), + [anon_sym_impl] = ACTIONS(2537), + [anon_sym_let] = ACTIONS(2537), + [anon_sym_loop] = ACTIONS(2537), + [anon_sym_match] = ACTIONS(2537), + [anon_sym_mod] = ACTIONS(2537), + [anon_sym_pub] = ACTIONS(2537), + [anon_sym_return] = ACTIONS(2537), + [anon_sym_static] = ACTIONS(2537), + [anon_sym_struct] = ACTIONS(2537), + [anon_sym_trait] = ACTIONS(2537), + [anon_sym_type] = ACTIONS(2537), + [anon_sym_union] = ACTIONS(2537), + [anon_sym_unsafe] = ACTIONS(2537), + [anon_sym_use] = ACTIONS(2537), + [anon_sym_while] = ACTIONS(2537), + [anon_sym_extern] = ACTIONS(2537), + [anon_sym_yield] = ACTIONS(2537), + [anon_sym_move] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2537), + [sym_integer_literal] = ACTIONS(2535), + [aux_sym_string_literal_token1] = ACTIONS(2535), + [sym_char_literal] = ACTIONS(2535), + [anon_sym_true] = ACTIONS(2537), + [anon_sym_false] = ACTIONS(2537), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2537), + [sym_super] = ACTIONS(2537), + [sym_crate] = ACTIONS(2537), + [sym_metavariable] = ACTIONS(2535), + [sym__raw_string_literal_start] = ACTIONS(2535), + [sym_float_literal] = ACTIONS(2535), }, [STATE(649)] = { [sym_line_comment] = STATE(649), [sym_block_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(2465), - [sym_identifier] = ACTIONS(2467), - [anon_sym_SEMI] = ACTIONS(2465), - [anon_sym_macro_rules_BANG] = ACTIONS(2465), - [anon_sym_LPAREN] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_STAR] = ACTIONS(2465), - [anon_sym_u8] = ACTIONS(2467), - [anon_sym_i8] = ACTIONS(2467), - [anon_sym_u16] = ACTIONS(2467), - [anon_sym_i16] = ACTIONS(2467), - [anon_sym_u32] = ACTIONS(2467), - [anon_sym_i32] = ACTIONS(2467), - [anon_sym_u64] = ACTIONS(2467), - [anon_sym_i64] = ACTIONS(2467), - [anon_sym_u128] = ACTIONS(2467), - [anon_sym_i128] = ACTIONS(2467), - [anon_sym_isize] = ACTIONS(2467), - [anon_sym_usize] = ACTIONS(2467), - [anon_sym_f32] = ACTIONS(2467), - [anon_sym_f64] = ACTIONS(2467), - [anon_sym_bool] = ACTIONS(2467), - [anon_sym_str] = ACTIONS(2467), - [anon_sym_char] = ACTIONS(2467), - [anon_sym_DASH] = ACTIONS(2465), - [anon_sym_BANG] = ACTIONS(2465), - [anon_sym_AMP] = ACTIONS(2465), - [anon_sym_PIPE] = ACTIONS(2465), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2465), - [anon_sym_COLON_COLON] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(2465), - [anon_sym_SQUOTE] = ACTIONS(2467), - [anon_sym_async] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_const] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_default] = ACTIONS(2467), - [anon_sym_enum] = ACTIONS(2467), - [anon_sym_fn] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_gen] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_impl] = ACTIONS(2467), - [anon_sym_let] = ACTIONS(2467), - [anon_sym_loop] = ACTIONS(2467), - [anon_sym_match] = ACTIONS(2467), - [anon_sym_mod] = ACTIONS(2467), - [anon_sym_pub] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_static] = ACTIONS(2467), - [anon_sym_struct] = ACTIONS(2467), - [anon_sym_trait] = ACTIONS(2467), - [anon_sym_type] = ACTIONS(2467), - [anon_sym_union] = ACTIONS(2467), - [anon_sym_unsafe] = ACTIONS(2467), - [anon_sym_use] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2467), - [anon_sym_extern] = ACTIONS(2467), - [anon_sym_yield] = ACTIONS(2467), - [anon_sym_move] = ACTIONS(2467), - [anon_sym_try] = ACTIONS(2467), - [sym_integer_literal] = ACTIONS(2465), - [aux_sym_string_literal_token1] = ACTIONS(2465), - [sym_char_literal] = ACTIONS(2465), - [anon_sym_true] = ACTIONS(2467), - [anon_sym_false] = ACTIONS(2467), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2467), - [sym_super] = ACTIONS(2467), - [sym_crate] = ACTIONS(2467), - [sym_metavariable] = ACTIONS(2465), - [sym__raw_string_literal_start] = ACTIONS(2465), - [sym_float_literal] = ACTIONS(2465), + [ts_builtin_sym_end] = ACTIONS(2539), + [sym_identifier] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2539), + [anon_sym_macro_rules_BANG] = ACTIONS(2539), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(2539), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_STAR] = ACTIONS(2539), + [anon_sym_u8] = ACTIONS(2541), + [anon_sym_i8] = ACTIONS(2541), + [anon_sym_u16] = ACTIONS(2541), + [anon_sym_i16] = ACTIONS(2541), + [anon_sym_u32] = ACTIONS(2541), + [anon_sym_i32] = ACTIONS(2541), + [anon_sym_u64] = ACTIONS(2541), + [anon_sym_i64] = ACTIONS(2541), + [anon_sym_u128] = ACTIONS(2541), + [anon_sym_i128] = ACTIONS(2541), + [anon_sym_isize] = ACTIONS(2541), + [anon_sym_usize] = ACTIONS(2541), + [anon_sym_f32] = ACTIONS(2541), + [anon_sym_f64] = ACTIONS(2541), + [anon_sym_bool] = ACTIONS(2541), + [anon_sym_str] = ACTIONS(2541), + [anon_sym_char] = ACTIONS(2541), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_BANG] = ACTIONS(2539), + [anon_sym_AMP] = ACTIONS(2539), + [anon_sym_PIPE] = ACTIONS(2539), + [anon_sym_LT] = ACTIONS(2539), + [anon_sym_DOT_DOT] = ACTIONS(2539), + [anon_sym_COLON_COLON] = ACTIONS(2539), + [anon_sym_POUND] = ACTIONS(2539), + [anon_sym_SQUOTE] = ACTIONS(2541), + [anon_sym_async] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_fn] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_gen] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_impl] = ACTIONS(2541), + [anon_sym_let] = ACTIONS(2541), + [anon_sym_loop] = ACTIONS(2541), + [anon_sym_match] = ACTIONS(2541), + [anon_sym_mod] = ACTIONS(2541), + [anon_sym_pub] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_trait] = ACTIONS(2541), + [anon_sym_type] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [anon_sym_unsafe] = ACTIONS(2541), + [anon_sym_use] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym_yield] = ACTIONS(2541), + [anon_sym_move] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [sym_integer_literal] = ACTIONS(2539), + [aux_sym_string_literal_token1] = ACTIONS(2539), + [sym_char_literal] = ACTIONS(2539), + [anon_sym_true] = ACTIONS(2541), + [anon_sym_false] = ACTIONS(2541), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2541), + [sym_super] = ACTIONS(2541), + [sym_crate] = ACTIONS(2541), + [sym_metavariable] = ACTIONS(2539), + [sym__raw_string_literal_start] = ACTIONS(2539), + [sym_float_literal] = ACTIONS(2539), }, [STATE(650)] = { [sym_line_comment] = STATE(650), [sym_block_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(2469), - [sym_identifier] = ACTIONS(2471), - [anon_sym_SEMI] = ACTIONS(2469), - [anon_sym_macro_rules_BANG] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_STAR] = ACTIONS(2469), - [anon_sym_u8] = ACTIONS(2471), - [anon_sym_i8] = ACTIONS(2471), - [anon_sym_u16] = ACTIONS(2471), - [anon_sym_i16] = ACTIONS(2471), - [anon_sym_u32] = ACTIONS(2471), - [anon_sym_i32] = ACTIONS(2471), - [anon_sym_u64] = ACTIONS(2471), - [anon_sym_i64] = ACTIONS(2471), - [anon_sym_u128] = ACTIONS(2471), - [anon_sym_i128] = ACTIONS(2471), - [anon_sym_isize] = ACTIONS(2471), - [anon_sym_usize] = ACTIONS(2471), - [anon_sym_f32] = ACTIONS(2471), - [anon_sym_f64] = ACTIONS(2471), - [anon_sym_bool] = ACTIONS(2471), - [anon_sym_str] = ACTIONS(2471), - [anon_sym_char] = ACTIONS(2471), - [anon_sym_DASH] = ACTIONS(2469), - [anon_sym_BANG] = ACTIONS(2469), - [anon_sym_AMP] = ACTIONS(2469), - [anon_sym_PIPE] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(2469), - [anon_sym_DOT_DOT] = ACTIONS(2469), - [anon_sym_COLON_COLON] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(2469), - [anon_sym_SQUOTE] = ACTIONS(2471), - [anon_sym_async] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_default] = ACTIONS(2471), - [anon_sym_enum] = ACTIONS(2471), - [anon_sym_fn] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_gen] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_impl] = ACTIONS(2471), - [anon_sym_let] = ACTIONS(2471), - [anon_sym_loop] = ACTIONS(2471), - [anon_sym_match] = ACTIONS(2471), - [anon_sym_mod] = ACTIONS(2471), - [anon_sym_pub] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_static] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(2471), - [anon_sym_trait] = ACTIONS(2471), - [anon_sym_type] = ACTIONS(2471), - [anon_sym_union] = ACTIONS(2471), - [anon_sym_unsafe] = ACTIONS(2471), - [anon_sym_use] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2471), - [anon_sym_extern] = ACTIONS(2471), - [anon_sym_yield] = ACTIONS(2471), - [anon_sym_move] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2471), - [sym_integer_literal] = ACTIONS(2469), - [aux_sym_string_literal_token1] = ACTIONS(2469), - [sym_char_literal] = ACTIONS(2469), - [anon_sym_true] = ACTIONS(2471), - [anon_sym_false] = ACTIONS(2471), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2471), - [sym_super] = ACTIONS(2471), - [sym_crate] = ACTIONS(2471), - [sym_metavariable] = ACTIONS(2469), - [sym__raw_string_literal_start] = ACTIONS(2469), - [sym_float_literal] = ACTIONS(2469), + [ts_builtin_sym_end] = ACTIONS(2543), + [sym_identifier] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym_macro_rules_BANG] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_LBRACK] = ACTIONS(2543), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_u8] = ACTIONS(2545), + [anon_sym_i8] = ACTIONS(2545), + [anon_sym_u16] = ACTIONS(2545), + [anon_sym_i16] = ACTIONS(2545), + [anon_sym_u32] = ACTIONS(2545), + [anon_sym_i32] = ACTIONS(2545), + [anon_sym_u64] = ACTIONS(2545), + [anon_sym_i64] = ACTIONS(2545), + [anon_sym_u128] = ACTIONS(2545), + [anon_sym_i128] = ACTIONS(2545), + [anon_sym_isize] = ACTIONS(2545), + [anon_sym_usize] = ACTIONS(2545), + [anon_sym_f32] = ACTIONS(2545), + [anon_sym_f64] = ACTIONS(2545), + [anon_sym_bool] = ACTIONS(2545), + [anon_sym_str] = ACTIONS(2545), + [anon_sym_char] = ACTIONS(2545), + [anon_sym_DASH] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2543), + [anon_sym_PIPE] = ACTIONS(2543), + [anon_sym_LT] = ACTIONS(2543), + [anon_sym_DOT_DOT] = ACTIONS(2543), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_POUND] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2545), + [anon_sym_async] = ACTIONS(2545), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_const] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_default] = ACTIONS(2545), + [anon_sym_enum] = ACTIONS(2545), + [anon_sym_fn] = ACTIONS(2545), + [anon_sym_for] = ACTIONS(2545), + [anon_sym_gen] = ACTIONS(2545), + [anon_sym_if] = ACTIONS(2545), + [anon_sym_impl] = ACTIONS(2545), + [anon_sym_let] = ACTIONS(2545), + [anon_sym_loop] = ACTIONS(2545), + [anon_sym_match] = ACTIONS(2545), + [anon_sym_mod] = ACTIONS(2545), + [anon_sym_pub] = ACTIONS(2545), + [anon_sym_return] = ACTIONS(2545), + [anon_sym_static] = ACTIONS(2545), + [anon_sym_struct] = ACTIONS(2545), + [anon_sym_trait] = ACTIONS(2545), + [anon_sym_type] = ACTIONS(2545), + [anon_sym_union] = ACTIONS(2545), + [anon_sym_unsafe] = ACTIONS(2545), + [anon_sym_use] = ACTIONS(2545), + [anon_sym_while] = ACTIONS(2545), + [anon_sym_extern] = ACTIONS(2545), + [anon_sym_yield] = ACTIONS(2545), + [anon_sym_move] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2545), + [sym_integer_literal] = ACTIONS(2543), + [aux_sym_string_literal_token1] = ACTIONS(2543), + [sym_char_literal] = ACTIONS(2543), + [anon_sym_true] = ACTIONS(2545), + [anon_sym_false] = ACTIONS(2545), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2545), + [sym_super] = ACTIONS(2545), + [sym_crate] = ACTIONS(2545), + [sym_metavariable] = ACTIONS(2543), + [sym__raw_string_literal_start] = ACTIONS(2543), + [sym_float_literal] = ACTIONS(2543), }, [STATE(651)] = { [sym_line_comment] = STATE(651), [sym_block_comment] = STATE(651), - [ts_builtin_sym_end] = ACTIONS(2473), - [sym_identifier] = ACTIONS(2475), - [anon_sym_SEMI] = ACTIONS(2473), - [anon_sym_macro_rules_BANG] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_LBRACK] = ACTIONS(2473), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_STAR] = ACTIONS(2473), - [anon_sym_u8] = ACTIONS(2475), - [anon_sym_i8] = ACTIONS(2475), - [anon_sym_u16] = ACTIONS(2475), - [anon_sym_i16] = ACTIONS(2475), - [anon_sym_u32] = ACTIONS(2475), - [anon_sym_i32] = ACTIONS(2475), - [anon_sym_u64] = ACTIONS(2475), - [anon_sym_i64] = ACTIONS(2475), - [anon_sym_u128] = ACTIONS(2475), - [anon_sym_i128] = ACTIONS(2475), - [anon_sym_isize] = ACTIONS(2475), - [anon_sym_usize] = ACTIONS(2475), - [anon_sym_f32] = ACTIONS(2475), - [anon_sym_f64] = ACTIONS(2475), - [anon_sym_bool] = ACTIONS(2475), - [anon_sym_str] = ACTIONS(2475), - [anon_sym_char] = ACTIONS(2475), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_BANG] = ACTIONS(2473), - [anon_sym_AMP] = ACTIONS(2473), - [anon_sym_PIPE] = ACTIONS(2473), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_DOT_DOT] = ACTIONS(2473), - [anon_sym_COLON_COLON] = ACTIONS(2473), - [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_SQUOTE] = ACTIONS(2475), - [anon_sym_async] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2475), - [anon_sym_enum] = ACTIONS(2475), - [anon_sym_fn] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_gen] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_impl] = ACTIONS(2475), - [anon_sym_let] = ACTIONS(2475), - [anon_sym_loop] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_mod] = ACTIONS(2475), - [anon_sym_pub] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_static] = ACTIONS(2475), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_trait] = ACTIONS(2475), - [anon_sym_type] = ACTIONS(2475), - [anon_sym_union] = ACTIONS(2475), - [anon_sym_unsafe] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2475), - [anon_sym_yield] = ACTIONS(2475), - [anon_sym_move] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [sym_integer_literal] = ACTIONS(2473), - [aux_sym_string_literal_token1] = ACTIONS(2473), - [sym_char_literal] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2475), - [anon_sym_false] = ACTIONS(2475), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2475), - [sym_super] = ACTIONS(2475), - [sym_crate] = ACTIONS(2475), - [sym_metavariable] = ACTIONS(2473), - [sym__raw_string_literal_start] = ACTIONS(2473), - [sym_float_literal] = ACTIONS(2473), + [ts_builtin_sym_end] = ACTIONS(2547), + [sym_identifier] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_macro_rules_BANG] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_u8] = ACTIONS(2549), + [anon_sym_i8] = ACTIONS(2549), + [anon_sym_u16] = ACTIONS(2549), + [anon_sym_i16] = ACTIONS(2549), + [anon_sym_u32] = ACTIONS(2549), + [anon_sym_i32] = ACTIONS(2549), + [anon_sym_u64] = ACTIONS(2549), + [anon_sym_i64] = ACTIONS(2549), + [anon_sym_u128] = ACTIONS(2549), + [anon_sym_i128] = ACTIONS(2549), + [anon_sym_isize] = ACTIONS(2549), + [anon_sym_usize] = ACTIONS(2549), + [anon_sym_f32] = ACTIONS(2549), + [anon_sym_f64] = ACTIONS(2549), + [anon_sym_bool] = ACTIONS(2549), + [anon_sym_str] = ACTIONS(2549), + [anon_sym_char] = ACTIONS(2549), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_DOT_DOT] = ACTIONS(2547), + [anon_sym_COLON_COLON] = ACTIONS(2547), + [anon_sym_POUND] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2549), + [anon_sym_async] = ACTIONS(2549), + [anon_sym_break] = ACTIONS(2549), + [anon_sym_const] = ACTIONS(2549), + [anon_sym_continue] = ACTIONS(2549), + [anon_sym_default] = ACTIONS(2549), + [anon_sym_enum] = ACTIONS(2549), + [anon_sym_fn] = ACTIONS(2549), + [anon_sym_for] = ACTIONS(2549), + [anon_sym_gen] = ACTIONS(2549), + [anon_sym_if] = ACTIONS(2549), + [anon_sym_impl] = ACTIONS(2549), + [anon_sym_let] = ACTIONS(2549), + [anon_sym_loop] = ACTIONS(2549), + [anon_sym_match] = ACTIONS(2549), + [anon_sym_mod] = ACTIONS(2549), + [anon_sym_pub] = ACTIONS(2549), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_struct] = ACTIONS(2549), + [anon_sym_trait] = ACTIONS(2549), + [anon_sym_type] = ACTIONS(2549), + [anon_sym_union] = ACTIONS(2549), + [anon_sym_unsafe] = ACTIONS(2549), + [anon_sym_use] = ACTIONS(2549), + [anon_sym_while] = ACTIONS(2549), + [anon_sym_extern] = ACTIONS(2549), + [anon_sym_yield] = ACTIONS(2549), + [anon_sym_move] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2549), + [sym_integer_literal] = ACTIONS(2547), + [aux_sym_string_literal_token1] = ACTIONS(2547), + [sym_char_literal] = ACTIONS(2547), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2549), + [sym_super] = ACTIONS(2549), + [sym_crate] = ACTIONS(2549), + [sym_metavariable] = ACTIONS(2547), + [sym__raw_string_literal_start] = ACTIONS(2547), + [sym_float_literal] = ACTIONS(2547), }, [STATE(652)] = { [sym_line_comment] = STATE(652), [sym_block_comment] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(2477), - [sym_identifier] = ACTIONS(2479), - [anon_sym_SEMI] = ACTIONS(2477), - [anon_sym_macro_rules_BANG] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_LBRACK] = ACTIONS(2477), - [anon_sym_LBRACE] = ACTIONS(2477), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_STAR] = ACTIONS(2477), - [anon_sym_u8] = ACTIONS(2479), - [anon_sym_i8] = ACTIONS(2479), - [anon_sym_u16] = ACTIONS(2479), - [anon_sym_i16] = ACTIONS(2479), - [anon_sym_u32] = ACTIONS(2479), - [anon_sym_i32] = ACTIONS(2479), - [anon_sym_u64] = ACTIONS(2479), - [anon_sym_i64] = ACTIONS(2479), - [anon_sym_u128] = ACTIONS(2479), - [anon_sym_i128] = ACTIONS(2479), - [anon_sym_isize] = ACTIONS(2479), - [anon_sym_usize] = ACTIONS(2479), - [anon_sym_f32] = ACTIONS(2479), - [anon_sym_f64] = ACTIONS(2479), - [anon_sym_bool] = ACTIONS(2479), - [anon_sym_str] = ACTIONS(2479), - [anon_sym_char] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_BANG] = ACTIONS(2477), - [anon_sym_AMP] = ACTIONS(2477), - [anon_sym_PIPE] = ACTIONS(2477), - [anon_sym_LT] = ACTIONS(2477), - [anon_sym_DOT_DOT] = ACTIONS(2477), - [anon_sym_COLON_COLON] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(2477), - [anon_sym_SQUOTE] = ACTIONS(2479), - [anon_sym_async] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_default] = ACTIONS(2479), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_fn] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_gen] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_impl] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_loop] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_mod] = ACTIONS(2479), - [anon_sym_pub] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_struct] = ACTIONS(2479), - [anon_sym_trait] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_union] = ACTIONS(2479), - [anon_sym_unsafe] = ACTIONS(2479), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym_yield] = ACTIONS(2479), - [anon_sym_move] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [sym_integer_literal] = ACTIONS(2477), - [aux_sym_string_literal_token1] = ACTIONS(2477), - [sym_char_literal] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2479), - [anon_sym_false] = ACTIONS(2479), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2479), - [sym_super] = ACTIONS(2479), - [sym_crate] = ACTIONS(2479), - [sym_metavariable] = ACTIONS(2477), - [sym__raw_string_literal_start] = ACTIONS(2477), - [sym_float_literal] = ACTIONS(2477), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_macro_rules_BANG] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_u8] = ACTIONS(1259), + [anon_sym_i8] = ACTIONS(1259), + [anon_sym_u16] = ACTIONS(1259), + [anon_sym_i16] = ACTIONS(1259), + [anon_sym_u32] = ACTIONS(1259), + [anon_sym_i32] = ACTIONS(1259), + [anon_sym_u64] = ACTIONS(1259), + [anon_sym_i64] = ACTIONS(1259), + [anon_sym_u128] = ACTIONS(1259), + [anon_sym_i128] = ACTIONS(1259), + [anon_sym_isize] = ACTIONS(1259), + [anon_sym_usize] = ACTIONS(1259), + [anon_sym_f32] = ACTIONS(1259), + [anon_sym_f64] = ACTIONS(1259), + [anon_sym_bool] = ACTIONS(1259), + [anon_sym_str] = ACTIONS(1259), + [anon_sym_char] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1259), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_fn] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1259), + [anon_sym_let] = ACTIONS(1259), + [anon_sym_loop] = ACTIONS(1259), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_mod] = ACTIONS(1259), + [anon_sym_pub] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_trait] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1259), + [anon_sym_use] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym_yield] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_try] = ACTIONS(1259), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1257), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1259), + [sym_super] = ACTIONS(1259), + [sym_crate] = ACTIONS(1259), + [sym_metavariable] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1257), + [sym_float_literal] = ACTIONS(1257), }, [STATE(653)] = { [sym_line_comment] = STATE(653), [sym_block_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(2481), - [sym_identifier] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2481), - [anon_sym_macro_rules_BANG] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(2481), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_u8] = ACTIONS(2483), - [anon_sym_i8] = ACTIONS(2483), - [anon_sym_u16] = ACTIONS(2483), - [anon_sym_i16] = ACTIONS(2483), - [anon_sym_u32] = ACTIONS(2483), - [anon_sym_i32] = ACTIONS(2483), - [anon_sym_u64] = ACTIONS(2483), - [anon_sym_i64] = ACTIONS(2483), - [anon_sym_u128] = ACTIONS(2483), - [anon_sym_i128] = ACTIONS(2483), - [anon_sym_isize] = ACTIONS(2483), - [anon_sym_usize] = ACTIONS(2483), - [anon_sym_f32] = ACTIONS(2483), - [anon_sym_f64] = ACTIONS(2483), - [anon_sym_bool] = ACTIONS(2483), - [anon_sym_str] = ACTIONS(2483), - [anon_sym_char] = ACTIONS(2483), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_BANG] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(2481), - [anon_sym_PIPE] = ACTIONS(2481), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_DOT_DOT] = ACTIONS(2481), - [anon_sym_COLON_COLON] = ACTIONS(2481), - [anon_sym_POUND] = ACTIONS(2481), - [anon_sym_SQUOTE] = ACTIONS(2483), - [anon_sym_async] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_default] = ACTIONS(2483), - [anon_sym_enum] = ACTIONS(2483), - [anon_sym_fn] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_gen] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_impl] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_loop] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_mod] = ACTIONS(2483), - [anon_sym_pub] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_static] = ACTIONS(2483), - [anon_sym_struct] = ACTIONS(2483), - [anon_sym_trait] = ACTIONS(2483), - [anon_sym_type] = ACTIONS(2483), - [anon_sym_union] = ACTIONS(2483), - [anon_sym_unsafe] = ACTIONS(2483), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym_yield] = ACTIONS(2483), - [anon_sym_move] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [sym_integer_literal] = ACTIONS(2481), - [aux_sym_string_literal_token1] = ACTIONS(2481), - [sym_char_literal] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2483), - [sym_super] = ACTIONS(2483), - [sym_crate] = ACTIONS(2483), - [sym_metavariable] = ACTIONS(2481), - [sym__raw_string_literal_start] = ACTIONS(2481), - [sym_float_literal] = ACTIONS(2481), + [ts_builtin_sym_end] = ACTIONS(2551), + [sym_identifier] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_macro_rules_BANG] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_u8] = ACTIONS(2553), + [anon_sym_i8] = ACTIONS(2553), + [anon_sym_u16] = ACTIONS(2553), + [anon_sym_i16] = ACTIONS(2553), + [anon_sym_u32] = ACTIONS(2553), + [anon_sym_i32] = ACTIONS(2553), + [anon_sym_u64] = ACTIONS(2553), + [anon_sym_i64] = ACTIONS(2553), + [anon_sym_u128] = ACTIONS(2553), + [anon_sym_i128] = ACTIONS(2553), + [anon_sym_isize] = ACTIONS(2553), + [anon_sym_usize] = ACTIONS(2553), + [anon_sym_f32] = ACTIONS(2553), + [anon_sym_f64] = ACTIONS(2553), + [anon_sym_bool] = ACTIONS(2553), + [anon_sym_str] = ACTIONS(2553), + [anon_sym_char] = ACTIONS(2553), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_POUND] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2553), + [anon_sym_async] = ACTIONS(2553), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_const] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_default] = ACTIONS(2553), + [anon_sym_enum] = ACTIONS(2553), + [anon_sym_fn] = ACTIONS(2553), + [anon_sym_for] = ACTIONS(2553), + [anon_sym_gen] = ACTIONS(2553), + [anon_sym_if] = ACTIONS(2553), + [anon_sym_impl] = ACTIONS(2553), + [anon_sym_let] = ACTIONS(2553), + [anon_sym_loop] = ACTIONS(2553), + [anon_sym_match] = ACTIONS(2553), + [anon_sym_mod] = ACTIONS(2553), + [anon_sym_pub] = ACTIONS(2553), + [anon_sym_return] = ACTIONS(2553), + [anon_sym_static] = ACTIONS(2553), + [anon_sym_struct] = ACTIONS(2553), + [anon_sym_trait] = ACTIONS(2553), + [anon_sym_type] = ACTIONS(2553), + [anon_sym_union] = ACTIONS(2553), + [anon_sym_unsafe] = ACTIONS(2553), + [anon_sym_use] = ACTIONS(2553), + [anon_sym_while] = ACTIONS(2553), + [anon_sym_extern] = ACTIONS(2553), + [anon_sym_yield] = ACTIONS(2553), + [anon_sym_move] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2553), + [sym_integer_literal] = ACTIONS(2551), + [aux_sym_string_literal_token1] = ACTIONS(2551), + [sym_char_literal] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2553), + [anon_sym_false] = ACTIONS(2553), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2553), + [sym_super] = ACTIONS(2553), + [sym_crate] = ACTIONS(2553), + [sym_metavariable] = ACTIONS(2551), + [sym__raw_string_literal_start] = ACTIONS(2551), + [sym_float_literal] = ACTIONS(2551), }, [STATE(654)] = { [sym_line_comment] = STATE(654), [sym_block_comment] = STATE(654), - [ts_builtin_sym_end] = ACTIONS(2485), - [sym_identifier] = ACTIONS(2487), - [anon_sym_SEMI] = ACTIONS(2485), - [anon_sym_macro_rules_BANG] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2485), - [anon_sym_LBRACE] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_u8] = ACTIONS(2487), - [anon_sym_i8] = ACTIONS(2487), - [anon_sym_u16] = ACTIONS(2487), - [anon_sym_i16] = ACTIONS(2487), - [anon_sym_u32] = ACTIONS(2487), - [anon_sym_i32] = ACTIONS(2487), - [anon_sym_u64] = ACTIONS(2487), - [anon_sym_i64] = ACTIONS(2487), - [anon_sym_u128] = ACTIONS(2487), - [anon_sym_i128] = ACTIONS(2487), - [anon_sym_isize] = ACTIONS(2487), - [anon_sym_usize] = ACTIONS(2487), - [anon_sym_f32] = ACTIONS(2487), - [anon_sym_f64] = ACTIONS(2487), - [anon_sym_bool] = ACTIONS(2487), - [anon_sym_str] = ACTIONS(2487), - [anon_sym_char] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_PIPE] = ACTIONS(2485), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_DOT_DOT] = ACTIONS(2485), - [anon_sym_COLON_COLON] = ACTIONS(2485), - [anon_sym_POUND] = ACTIONS(2485), - [anon_sym_SQUOTE] = ACTIONS(2487), - [anon_sym_async] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_enum] = ACTIONS(2487), - [anon_sym_fn] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_gen] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_impl] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_loop] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_mod] = ACTIONS(2487), - [anon_sym_pub] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_struct] = ACTIONS(2487), - [anon_sym_trait] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2487), - [anon_sym_union] = ACTIONS(2487), - [anon_sym_unsafe] = ACTIONS(2487), - [anon_sym_use] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym_yield] = ACTIONS(2487), - [anon_sym_move] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [sym_integer_literal] = ACTIONS(2485), - [aux_sym_string_literal_token1] = ACTIONS(2485), - [sym_char_literal] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2487), - [anon_sym_false] = ACTIONS(2487), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2487), - [sym_super] = ACTIONS(2487), - [sym_crate] = ACTIONS(2487), - [sym_metavariable] = ACTIONS(2485), - [sym__raw_string_literal_start] = ACTIONS(2485), - [sym_float_literal] = ACTIONS(2485), + [ts_builtin_sym_end] = ACTIONS(1333), + [sym_identifier] = ACTIONS(1335), + [anon_sym_SEMI] = ACTIONS(1333), + [anon_sym_macro_rules_BANG] = ACTIONS(1333), + [anon_sym_LPAREN] = ACTIONS(1333), + [anon_sym_LBRACK] = ACTIONS(1333), + [anon_sym_LBRACE] = ACTIONS(1333), + [anon_sym_RBRACE] = ACTIONS(1333), + [anon_sym_STAR] = ACTIONS(1333), + [anon_sym_u8] = ACTIONS(1335), + [anon_sym_i8] = ACTIONS(1335), + [anon_sym_u16] = ACTIONS(1335), + [anon_sym_i16] = ACTIONS(1335), + [anon_sym_u32] = ACTIONS(1335), + [anon_sym_i32] = ACTIONS(1335), + [anon_sym_u64] = ACTIONS(1335), + [anon_sym_i64] = ACTIONS(1335), + [anon_sym_u128] = ACTIONS(1335), + [anon_sym_i128] = ACTIONS(1335), + [anon_sym_isize] = ACTIONS(1335), + [anon_sym_usize] = ACTIONS(1335), + [anon_sym_f32] = ACTIONS(1335), + [anon_sym_f64] = ACTIONS(1335), + [anon_sym_bool] = ACTIONS(1335), + [anon_sym_str] = ACTIONS(1335), + [anon_sym_char] = ACTIONS(1335), + [anon_sym_DASH] = ACTIONS(1333), + [anon_sym_BANG] = ACTIONS(1333), + [anon_sym_AMP] = ACTIONS(1333), + [anon_sym_PIPE] = ACTIONS(1333), + [anon_sym_LT] = ACTIONS(1333), + [anon_sym_DOT_DOT] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(1333), + [anon_sym_POUND] = ACTIONS(1333), + [anon_sym_SQUOTE] = ACTIONS(1335), + [anon_sym_async] = ACTIONS(1335), + [anon_sym_break] = ACTIONS(1335), + [anon_sym_const] = ACTIONS(1335), + [anon_sym_continue] = ACTIONS(1335), + [anon_sym_default] = ACTIONS(1335), + [anon_sym_enum] = ACTIONS(1335), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1335), + [anon_sym_gen] = ACTIONS(1335), + [anon_sym_if] = ACTIONS(1335), + [anon_sym_impl] = ACTIONS(1335), + [anon_sym_let] = ACTIONS(1335), + [anon_sym_loop] = ACTIONS(1335), + [anon_sym_match] = ACTIONS(1335), + [anon_sym_mod] = ACTIONS(1335), + [anon_sym_pub] = ACTIONS(1335), + [anon_sym_return] = ACTIONS(1335), + [anon_sym_static] = ACTIONS(1335), + [anon_sym_struct] = ACTIONS(1335), + [anon_sym_trait] = ACTIONS(1335), + [anon_sym_type] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1335), + [anon_sym_use] = ACTIONS(1335), + [anon_sym_while] = ACTIONS(1335), + [anon_sym_extern] = ACTIONS(1335), + [anon_sym_yield] = ACTIONS(1335), + [anon_sym_move] = ACTIONS(1335), + [anon_sym_try] = ACTIONS(1335), + [sym_integer_literal] = ACTIONS(1333), + [aux_sym_string_literal_token1] = ACTIONS(1333), + [sym_char_literal] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(1335), + [anon_sym_false] = ACTIONS(1335), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1335), + [sym_super] = ACTIONS(1335), + [sym_crate] = ACTIONS(1335), + [sym_metavariable] = ACTIONS(1333), + [sym__raw_string_literal_start] = ACTIONS(1333), + [sym_float_literal] = ACTIONS(1333), }, [STATE(655)] = { [sym_line_comment] = STATE(655), [sym_block_comment] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(2489), - [sym_identifier] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2489), - [anon_sym_macro_rules_BANG] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_LBRACK] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2489), - [anon_sym_STAR] = ACTIONS(2489), - [anon_sym_u8] = ACTIONS(2491), - [anon_sym_i8] = ACTIONS(2491), - [anon_sym_u16] = ACTIONS(2491), - [anon_sym_i16] = ACTIONS(2491), - [anon_sym_u32] = ACTIONS(2491), - [anon_sym_i32] = ACTIONS(2491), - [anon_sym_u64] = ACTIONS(2491), - [anon_sym_i64] = ACTIONS(2491), - [anon_sym_u128] = ACTIONS(2491), - [anon_sym_i128] = ACTIONS(2491), - [anon_sym_isize] = ACTIONS(2491), - [anon_sym_usize] = ACTIONS(2491), - [anon_sym_f32] = ACTIONS(2491), - [anon_sym_f64] = ACTIONS(2491), - [anon_sym_bool] = ACTIONS(2491), - [anon_sym_str] = ACTIONS(2491), - [anon_sym_char] = ACTIONS(2491), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_BANG] = ACTIONS(2489), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_PIPE] = ACTIONS(2489), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_DOT_DOT] = ACTIONS(2489), - [anon_sym_COLON_COLON] = ACTIONS(2489), - [anon_sym_POUND] = ACTIONS(2489), - [anon_sym_SQUOTE] = ACTIONS(2491), - [anon_sym_async] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_default] = ACTIONS(2491), - [anon_sym_enum] = ACTIONS(2491), - [anon_sym_fn] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_gen] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_impl] = ACTIONS(2491), - [anon_sym_let] = ACTIONS(2491), - [anon_sym_loop] = ACTIONS(2491), - [anon_sym_match] = ACTIONS(2491), - [anon_sym_mod] = ACTIONS(2491), - [anon_sym_pub] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2491), - [anon_sym_trait] = ACTIONS(2491), - [anon_sym_type] = ACTIONS(2491), - [anon_sym_union] = ACTIONS(2491), - [anon_sym_unsafe] = ACTIONS(2491), - [anon_sym_use] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_extern] = ACTIONS(2491), - [anon_sym_yield] = ACTIONS(2491), - [anon_sym_move] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2491), - [sym_integer_literal] = ACTIONS(2489), - [aux_sym_string_literal_token1] = ACTIONS(2489), - [sym_char_literal] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2491), - [anon_sym_false] = ACTIONS(2491), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2491), - [sym_super] = ACTIONS(2491), - [sym_crate] = ACTIONS(2491), - [sym_metavariable] = ACTIONS(2489), - [sym__raw_string_literal_start] = ACTIONS(2489), - [sym_float_literal] = ACTIONS(2489), + [ts_builtin_sym_end] = ACTIONS(2555), + [sym_identifier] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_macro_rules_BANG] = ACTIONS(2555), + [anon_sym_LPAREN] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_u8] = ACTIONS(2557), + [anon_sym_i8] = ACTIONS(2557), + [anon_sym_u16] = ACTIONS(2557), + [anon_sym_i16] = ACTIONS(2557), + [anon_sym_u32] = ACTIONS(2557), + [anon_sym_i32] = ACTIONS(2557), + [anon_sym_u64] = ACTIONS(2557), + [anon_sym_i64] = ACTIONS(2557), + [anon_sym_u128] = ACTIONS(2557), + [anon_sym_i128] = ACTIONS(2557), + [anon_sym_isize] = ACTIONS(2557), + [anon_sym_usize] = ACTIONS(2557), + [anon_sym_f32] = ACTIONS(2557), + [anon_sym_f64] = ACTIONS(2557), + [anon_sym_bool] = ACTIONS(2557), + [anon_sym_str] = ACTIONS(2557), + [anon_sym_char] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_PIPE] = ACTIONS(2555), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_DOT_DOT] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_POUND] = ACTIONS(2555), + [anon_sym_SQUOTE] = ACTIONS(2557), + [anon_sym_async] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_default] = ACTIONS(2557), + [anon_sym_enum] = ACTIONS(2557), + [anon_sym_fn] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_gen] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_impl] = ACTIONS(2557), + [anon_sym_let] = ACTIONS(2557), + [anon_sym_loop] = ACTIONS(2557), + [anon_sym_match] = ACTIONS(2557), + [anon_sym_mod] = ACTIONS(2557), + [anon_sym_pub] = ACTIONS(2557), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_static] = ACTIONS(2557), + [anon_sym_struct] = ACTIONS(2557), + [anon_sym_trait] = ACTIONS(2557), + [anon_sym_type] = ACTIONS(2557), + [anon_sym_union] = ACTIONS(2557), + [anon_sym_unsafe] = ACTIONS(2557), + [anon_sym_use] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_extern] = ACTIONS(2557), + [anon_sym_yield] = ACTIONS(2557), + [anon_sym_move] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [sym_integer_literal] = ACTIONS(2555), + [aux_sym_string_literal_token1] = ACTIONS(2555), + [sym_char_literal] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2557), + [sym_super] = ACTIONS(2557), + [sym_crate] = ACTIONS(2557), + [sym_metavariable] = ACTIONS(2555), + [sym__raw_string_literal_start] = ACTIONS(2555), + [sym_float_literal] = ACTIONS(2555), }, [STATE(656)] = { [sym_line_comment] = STATE(656), @@ -84097,1221 +84025,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(657)] = { [sym_line_comment] = STATE(657), [sym_block_comment] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(2493), - [sym_identifier] = ACTIONS(2495), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_macro_rules_BANG] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2493), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2493), - [anon_sym_STAR] = ACTIONS(2493), - [anon_sym_u8] = ACTIONS(2495), - [anon_sym_i8] = ACTIONS(2495), - [anon_sym_u16] = ACTIONS(2495), - [anon_sym_i16] = ACTIONS(2495), - [anon_sym_u32] = ACTIONS(2495), - [anon_sym_i32] = ACTIONS(2495), - [anon_sym_u64] = ACTIONS(2495), - [anon_sym_i64] = ACTIONS(2495), - [anon_sym_u128] = ACTIONS(2495), - [anon_sym_i128] = ACTIONS(2495), - [anon_sym_isize] = ACTIONS(2495), - [anon_sym_usize] = ACTIONS(2495), - [anon_sym_f32] = ACTIONS(2495), - [anon_sym_f64] = ACTIONS(2495), - [anon_sym_bool] = ACTIONS(2495), - [anon_sym_str] = ACTIONS(2495), - [anon_sym_char] = ACTIONS(2495), - [anon_sym_DASH] = ACTIONS(2493), - [anon_sym_BANG] = ACTIONS(2493), - [anon_sym_AMP] = ACTIONS(2493), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_LT] = ACTIONS(2493), - [anon_sym_DOT_DOT] = ACTIONS(2493), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(2493), - [anon_sym_SQUOTE] = ACTIONS(2495), - [anon_sym_async] = ACTIONS(2495), - [anon_sym_break] = ACTIONS(2495), - [anon_sym_const] = ACTIONS(2495), - [anon_sym_continue] = ACTIONS(2495), - [anon_sym_default] = ACTIONS(2495), - [anon_sym_enum] = ACTIONS(2495), - [anon_sym_fn] = ACTIONS(2495), - [anon_sym_for] = ACTIONS(2495), - [anon_sym_gen] = ACTIONS(2495), - [anon_sym_if] = ACTIONS(2495), - [anon_sym_impl] = ACTIONS(2495), - [anon_sym_let] = ACTIONS(2495), - [anon_sym_loop] = ACTIONS(2495), - [anon_sym_match] = ACTIONS(2495), - [anon_sym_mod] = ACTIONS(2495), - [anon_sym_pub] = ACTIONS(2495), - [anon_sym_return] = ACTIONS(2495), - [anon_sym_static] = ACTIONS(2495), - [anon_sym_struct] = ACTIONS(2495), - [anon_sym_trait] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2495), - [anon_sym_union] = ACTIONS(2495), - [anon_sym_unsafe] = ACTIONS(2495), - [anon_sym_use] = ACTIONS(2495), - [anon_sym_while] = ACTIONS(2495), - [anon_sym_extern] = ACTIONS(2495), - [anon_sym_yield] = ACTIONS(2495), - [anon_sym_move] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2495), - [sym_integer_literal] = ACTIONS(2493), - [aux_sym_string_literal_token1] = ACTIONS(2493), - [sym_char_literal] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2495), - [anon_sym_false] = ACTIONS(2495), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2495), - [sym_super] = ACTIONS(2495), - [sym_crate] = ACTIONS(2495), - [sym_metavariable] = ACTIONS(2493), - [sym__raw_string_literal_start] = ACTIONS(2493), - [sym_float_literal] = ACTIONS(2493), - }, - [STATE(658)] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), - [ts_builtin_sym_end] = ACTIONS(2497), - [sym_identifier] = ACTIONS(2499), - [anon_sym_SEMI] = ACTIONS(2497), - [anon_sym_macro_rules_BANG] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2497), - [anon_sym_STAR] = ACTIONS(2497), - [anon_sym_u8] = ACTIONS(2499), - [anon_sym_i8] = ACTIONS(2499), - [anon_sym_u16] = ACTIONS(2499), - [anon_sym_i16] = ACTIONS(2499), - [anon_sym_u32] = ACTIONS(2499), - [anon_sym_i32] = ACTIONS(2499), - [anon_sym_u64] = ACTIONS(2499), - [anon_sym_i64] = ACTIONS(2499), - [anon_sym_u128] = ACTIONS(2499), - [anon_sym_i128] = ACTIONS(2499), - [anon_sym_isize] = ACTIONS(2499), - [anon_sym_usize] = ACTIONS(2499), - [anon_sym_f32] = ACTIONS(2499), - [anon_sym_f64] = ACTIONS(2499), - [anon_sym_bool] = ACTIONS(2499), - [anon_sym_str] = ACTIONS(2499), - [anon_sym_char] = ACTIONS(2499), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_BANG] = ACTIONS(2497), - [anon_sym_AMP] = ACTIONS(2497), - [anon_sym_PIPE] = ACTIONS(2497), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_DOT_DOT] = ACTIONS(2497), - [anon_sym_COLON_COLON] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(2497), - [anon_sym_SQUOTE] = ACTIONS(2499), - [anon_sym_async] = ACTIONS(2499), - [anon_sym_break] = ACTIONS(2499), - [anon_sym_const] = ACTIONS(2499), - [anon_sym_continue] = ACTIONS(2499), - [anon_sym_default] = ACTIONS(2499), - [anon_sym_enum] = ACTIONS(2499), - [anon_sym_fn] = ACTIONS(2499), - [anon_sym_for] = ACTIONS(2499), - [anon_sym_gen] = ACTIONS(2499), - [anon_sym_if] = ACTIONS(2499), - [anon_sym_impl] = ACTIONS(2499), - [anon_sym_let] = ACTIONS(2499), - [anon_sym_loop] = ACTIONS(2499), - [anon_sym_match] = ACTIONS(2499), - [anon_sym_mod] = ACTIONS(2499), - [anon_sym_pub] = ACTIONS(2499), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_static] = ACTIONS(2499), - [anon_sym_struct] = ACTIONS(2499), - [anon_sym_trait] = ACTIONS(2499), - [anon_sym_type] = ACTIONS(2499), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_unsafe] = ACTIONS(2499), - [anon_sym_use] = ACTIONS(2499), - [anon_sym_while] = ACTIONS(2499), - [anon_sym_extern] = ACTIONS(2499), - [anon_sym_yield] = ACTIONS(2499), - [anon_sym_move] = ACTIONS(2499), - [anon_sym_try] = ACTIONS(2499), - [sym_integer_literal] = ACTIONS(2497), - [aux_sym_string_literal_token1] = ACTIONS(2497), - [sym_char_literal] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2499), - [sym_super] = ACTIONS(2499), - [sym_crate] = ACTIONS(2499), - [sym_metavariable] = ACTIONS(2497), - [sym__raw_string_literal_start] = ACTIONS(2497), - [sym_float_literal] = ACTIONS(2497), - }, - [STATE(659)] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(2501), - [sym_identifier] = ACTIONS(2503), - [anon_sym_SEMI] = ACTIONS(2501), - [anon_sym_macro_rules_BANG] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_STAR] = ACTIONS(2501), - [anon_sym_u8] = ACTIONS(2503), - [anon_sym_i8] = ACTIONS(2503), - [anon_sym_u16] = ACTIONS(2503), - [anon_sym_i16] = ACTIONS(2503), - [anon_sym_u32] = ACTIONS(2503), - [anon_sym_i32] = ACTIONS(2503), - [anon_sym_u64] = ACTIONS(2503), - [anon_sym_i64] = ACTIONS(2503), - [anon_sym_u128] = ACTIONS(2503), - [anon_sym_i128] = ACTIONS(2503), - [anon_sym_isize] = ACTIONS(2503), - [anon_sym_usize] = ACTIONS(2503), - [anon_sym_f32] = ACTIONS(2503), - [anon_sym_f64] = ACTIONS(2503), - [anon_sym_bool] = ACTIONS(2503), - [anon_sym_str] = ACTIONS(2503), - [anon_sym_char] = ACTIONS(2503), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_BANG] = ACTIONS(2501), - [anon_sym_AMP] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2501), - [anon_sym_LT] = ACTIONS(2501), - [anon_sym_DOT_DOT] = ACTIONS(2501), - [anon_sym_COLON_COLON] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(2501), - [anon_sym_SQUOTE] = ACTIONS(2503), - [anon_sym_async] = ACTIONS(2503), - [anon_sym_break] = ACTIONS(2503), - [anon_sym_const] = ACTIONS(2503), - [anon_sym_continue] = ACTIONS(2503), - [anon_sym_default] = ACTIONS(2503), - [anon_sym_enum] = ACTIONS(2503), - [anon_sym_fn] = ACTIONS(2503), - [anon_sym_for] = ACTIONS(2503), - [anon_sym_gen] = ACTIONS(2503), - [anon_sym_if] = ACTIONS(2503), - [anon_sym_impl] = ACTIONS(2503), - [anon_sym_let] = ACTIONS(2503), - [anon_sym_loop] = ACTIONS(2503), - [anon_sym_match] = ACTIONS(2503), - [anon_sym_mod] = ACTIONS(2503), - [anon_sym_pub] = ACTIONS(2503), - [anon_sym_return] = ACTIONS(2503), - [anon_sym_static] = ACTIONS(2503), - [anon_sym_struct] = ACTIONS(2503), - [anon_sym_trait] = ACTIONS(2503), - [anon_sym_type] = ACTIONS(2503), - [anon_sym_union] = ACTIONS(2503), - [anon_sym_unsafe] = ACTIONS(2503), - [anon_sym_use] = ACTIONS(2503), - [anon_sym_while] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2503), - [anon_sym_yield] = ACTIONS(2503), - [anon_sym_move] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2503), - [sym_integer_literal] = ACTIONS(2501), - [aux_sym_string_literal_token1] = ACTIONS(2501), - [sym_char_literal] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2503), - [anon_sym_false] = ACTIONS(2503), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2503), - [sym_super] = ACTIONS(2503), - [sym_crate] = ACTIONS(2503), - [sym_metavariable] = ACTIONS(2501), - [sym__raw_string_literal_start] = ACTIONS(2501), - [sym_float_literal] = ACTIONS(2501), - }, - [STATE(660)] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_macro_rules_BANG] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_u8] = ACTIONS(2507), - [anon_sym_i8] = ACTIONS(2507), - [anon_sym_u16] = ACTIONS(2507), - [anon_sym_i16] = ACTIONS(2507), - [anon_sym_u32] = ACTIONS(2507), - [anon_sym_i32] = ACTIONS(2507), - [anon_sym_u64] = ACTIONS(2507), - [anon_sym_i64] = ACTIONS(2507), - [anon_sym_u128] = ACTIONS(2507), - [anon_sym_i128] = ACTIONS(2507), - [anon_sym_isize] = ACTIONS(2507), - [anon_sym_usize] = ACTIONS(2507), - [anon_sym_f32] = ACTIONS(2507), - [anon_sym_f64] = ACTIONS(2507), - [anon_sym_bool] = ACTIONS(2507), - [anon_sym_str] = ACTIONS(2507), - [anon_sym_char] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2505), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2507), - [anon_sym_async] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_default] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_gen] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_impl] = ACTIONS(2507), - [anon_sym_let] = ACTIONS(2507), - [anon_sym_loop] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_mod] = ACTIONS(2507), - [anon_sym_pub] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_trait] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), - [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_use] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym_yield] = ACTIONS(2507), - [anon_sym_move] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2507), - [sym_integer_literal] = ACTIONS(2505), - [aux_sym_string_literal_token1] = ACTIONS(2505), - [sym_char_literal] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2507), - [sym_super] = ACTIONS(2507), - [sym_crate] = ACTIONS(2507), - [sym_metavariable] = ACTIONS(2505), - [sym__raw_string_literal_start] = ACTIONS(2505), - [sym_float_literal] = ACTIONS(2505), - }, - [STATE(661)] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(2509), - [sym_identifier] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_macro_rules_BANG] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_u8] = ACTIONS(2511), - [anon_sym_i8] = ACTIONS(2511), - [anon_sym_u16] = ACTIONS(2511), - [anon_sym_i16] = ACTIONS(2511), - [anon_sym_u32] = ACTIONS(2511), - [anon_sym_i32] = ACTIONS(2511), - [anon_sym_u64] = ACTIONS(2511), - [anon_sym_i64] = ACTIONS(2511), - [anon_sym_u128] = ACTIONS(2511), - [anon_sym_i128] = ACTIONS(2511), - [anon_sym_isize] = ACTIONS(2511), - [anon_sym_usize] = ACTIONS(2511), - [anon_sym_f32] = ACTIONS(2511), - [anon_sym_f64] = ACTIONS(2511), - [anon_sym_bool] = ACTIONS(2511), - [anon_sym_str] = ACTIONS(2511), - [anon_sym_char] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_DOT_DOT] = ACTIONS(2509), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_async] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_gen] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_impl] = ACTIONS(2511), - [anon_sym_let] = ACTIONS(2511), - [anon_sym_loop] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2511), - [anon_sym_mod] = ACTIONS(2511), - [anon_sym_pub] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_trait] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_unsafe] = ACTIONS(2511), - [anon_sym_use] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym_yield] = ACTIONS(2511), - [anon_sym_move] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [sym_integer_literal] = ACTIONS(2509), - [aux_sym_string_literal_token1] = ACTIONS(2509), - [sym_char_literal] = ACTIONS(2509), - [anon_sym_true] = ACTIONS(2511), - [anon_sym_false] = ACTIONS(2511), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2511), - [sym_super] = ACTIONS(2511), - [sym_crate] = ACTIONS(2511), - [sym_metavariable] = ACTIONS(2509), - [sym__raw_string_literal_start] = ACTIONS(2509), - [sym_float_literal] = ACTIONS(2509), - }, - [STATE(662)] = { - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_macro_rules_BANG] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_u8] = ACTIONS(2515), - [anon_sym_i8] = ACTIONS(2515), - [anon_sym_u16] = ACTIONS(2515), - [anon_sym_i16] = ACTIONS(2515), - [anon_sym_u32] = ACTIONS(2515), - [anon_sym_i32] = ACTIONS(2515), - [anon_sym_u64] = ACTIONS(2515), - [anon_sym_i64] = ACTIONS(2515), - [anon_sym_u128] = ACTIONS(2515), - [anon_sym_i128] = ACTIONS(2515), - [anon_sym_isize] = ACTIONS(2515), - [anon_sym_usize] = ACTIONS(2515), - [anon_sym_f32] = ACTIONS(2515), - [anon_sym_f64] = ACTIONS(2515), - [anon_sym_bool] = ACTIONS(2515), - [anon_sym_str] = ACTIONS(2515), - [anon_sym_char] = ACTIONS(2515), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_async] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_default] = ACTIONS(2515), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_fn] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_gen] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_impl] = ACTIONS(2515), - [anon_sym_let] = ACTIONS(2515), - [anon_sym_loop] = ACTIONS(2515), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_mod] = ACTIONS(2515), - [anon_sym_pub] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_static] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_trait] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_union] = ACTIONS(2515), - [anon_sym_unsafe] = ACTIONS(2515), - [anon_sym_use] = ACTIONS(2515), - [anon_sym_while] = ACTIONS(2515), - [anon_sym_extern] = ACTIONS(2515), - [anon_sym_yield] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_try] = ACTIONS(2515), - [sym_integer_literal] = ACTIONS(2513), - [aux_sym_string_literal_token1] = ACTIONS(2513), - [sym_char_literal] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2515), - [anon_sym_false] = ACTIONS(2515), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2515), - [sym_super] = ACTIONS(2515), - [sym_crate] = ACTIONS(2515), - [sym_metavariable] = ACTIONS(2513), - [sym__raw_string_literal_start] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2513), - }, - [STATE(663)] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), - [ts_builtin_sym_end] = ACTIONS(2517), - [sym_identifier] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2517), - [anon_sym_macro_rules_BANG] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_RBRACE] = ACTIONS(2517), - [anon_sym_STAR] = ACTIONS(2517), - [anon_sym_u8] = ACTIONS(2519), - [anon_sym_i8] = ACTIONS(2519), - [anon_sym_u16] = ACTIONS(2519), - [anon_sym_i16] = ACTIONS(2519), - [anon_sym_u32] = ACTIONS(2519), - [anon_sym_i32] = ACTIONS(2519), - [anon_sym_u64] = ACTIONS(2519), - [anon_sym_i64] = ACTIONS(2519), - [anon_sym_u128] = ACTIONS(2519), - [anon_sym_i128] = ACTIONS(2519), - [anon_sym_isize] = ACTIONS(2519), - [anon_sym_usize] = ACTIONS(2519), - [anon_sym_f32] = ACTIONS(2519), - [anon_sym_f64] = ACTIONS(2519), - [anon_sym_bool] = ACTIONS(2519), - [anon_sym_str] = ACTIONS(2519), - [anon_sym_char] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2517), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_DOT_DOT] = ACTIONS(2517), - [anon_sym_COLON_COLON] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(2517), - [anon_sym_SQUOTE] = ACTIONS(2519), - [anon_sym_async] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_default] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_fn] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_gen] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_impl] = ACTIONS(2519), - [anon_sym_let] = ACTIONS(2519), - [anon_sym_loop] = ACTIONS(2519), - [anon_sym_match] = ACTIONS(2519), - [anon_sym_mod] = ACTIONS(2519), - [anon_sym_pub] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_trait] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_unsafe] = ACTIONS(2519), - [anon_sym_use] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym_yield] = ACTIONS(2519), - [anon_sym_move] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [sym_integer_literal] = ACTIONS(2517), - [aux_sym_string_literal_token1] = ACTIONS(2517), - [sym_char_literal] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2519), - [anon_sym_false] = ACTIONS(2519), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2519), - [sym_super] = ACTIONS(2519), - [sym_crate] = ACTIONS(2519), - [sym_metavariable] = ACTIONS(2517), - [sym__raw_string_literal_start] = ACTIONS(2517), - [sym_float_literal] = ACTIONS(2517), - }, - [STATE(664)] = { - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(2521), - [sym_identifier] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_macro_rules_BANG] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_RBRACE] = ACTIONS(2521), - [anon_sym_STAR] = ACTIONS(2521), - [anon_sym_u8] = ACTIONS(2523), - [anon_sym_i8] = ACTIONS(2523), - [anon_sym_u16] = ACTIONS(2523), - [anon_sym_i16] = ACTIONS(2523), - [anon_sym_u32] = ACTIONS(2523), - [anon_sym_i32] = ACTIONS(2523), - [anon_sym_u64] = ACTIONS(2523), - [anon_sym_i64] = ACTIONS(2523), - [anon_sym_u128] = ACTIONS(2523), - [anon_sym_i128] = ACTIONS(2523), - [anon_sym_isize] = ACTIONS(2523), - [anon_sym_usize] = ACTIONS(2523), - [anon_sym_f32] = ACTIONS(2523), - [anon_sym_f64] = ACTIONS(2523), - [anon_sym_bool] = ACTIONS(2523), - [anon_sym_str] = ACTIONS(2523), - [anon_sym_char] = ACTIONS(2523), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_async] = ACTIONS(2523), - [anon_sym_break] = ACTIONS(2523), - [anon_sym_const] = ACTIONS(2523), - [anon_sym_continue] = ACTIONS(2523), - [anon_sym_default] = ACTIONS(2523), - [anon_sym_enum] = ACTIONS(2523), - [anon_sym_fn] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2523), - [anon_sym_gen] = ACTIONS(2523), - [anon_sym_if] = ACTIONS(2523), - [anon_sym_impl] = ACTIONS(2523), - [anon_sym_let] = ACTIONS(2523), - [anon_sym_loop] = ACTIONS(2523), - [anon_sym_match] = ACTIONS(2523), - [anon_sym_mod] = ACTIONS(2523), - [anon_sym_pub] = ACTIONS(2523), - [anon_sym_return] = ACTIONS(2523), - [anon_sym_static] = ACTIONS(2523), - [anon_sym_struct] = ACTIONS(2523), - [anon_sym_trait] = ACTIONS(2523), - [anon_sym_type] = ACTIONS(2523), - [anon_sym_union] = ACTIONS(2523), - [anon_sym_unsafe] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2523), - [anon_sym_while] = ACTIONS(2523), - [anon_sym_extern] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2523), - [anon_sym_move] = ACTIONS(2523), - [anon_sym_try] = ACTIONS(2523), - [sym_integer_literal] = ACTIONS(2521), - [aux_sym_string_literal_token1] = ACTIONS(2521), - [sym_char_literal] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2523), - [anon_sym_false] = ACTIONS(2523), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2523), - [sym_super] = ACTIONS(2523), - [sym_crate] = ACTIONS(2523), - [sym_metavariable] = ACTIONS(2521), - [sym__raw_string_literal_start] = ACTIONS(2521), - [sym_float_literal] = ACTIONS(2521), - }, - [STATE(665)] = { - [sym_line_comment] = STATE(665), - [sym_block_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(2525), - [sym_identifier] = ACTIONS(2527), - [anon_sym_SEMI] = ACTIONS(2525), - [anon_sym_macro_rules_BANG] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_LBRACK] = ACTIONS(2525), - [anon_sym_LBRACE] = ACTIONS(2525), - [anon_sym_RBRACE] = ACTIONS(2525), - [anon_sym_STAR] = ACTIONS(2525), - [anon_sym_u8] = ACTIONS(2527), - [anon_sym_i8] = ACTIONS(2527), - [anon_sym_u16] = ACTIONS(2527), - [anon_sym_i16] = ACTIONS(2527), - [anon_sym_u32] = ACTIONS(2527), - [anon_sym_i32] = ACTIONS(2527), - [anon_sym_u64] = ACTIONS(2527), - [anon_sym_i64] = ACTIONS(2527), - [anon_sym_u128] = ACTIONS(2527), - [anon_sym_i128] = ACTIONS(2527), - [anon_sym_isize] = ACTIONS(2527), - [anon_sym_usize] = ACTIONS(2527), - [anon_sym_f32] = ACTIONS(2527), - [anon_sym_f64] = ACTIONS(2527), - [anon_sym_bool] = ACTIONS(2527), - [anon_sym_str] = ACTIONS(2527), - [anon_sym_char] = ACTIONS(2527), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_BANG] = ACTIONS(2525), - [anon_sym_AMP] = ACTIONS(2525), - [anon_sym_PIPE] = ACTIONS(2525), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_DOT_DOT] = ACTIONS(2525), - [anon_sym_COLON_COLON] = ACTIONS(2525), - [anon_sym_POUND] = ACTIONS(2525), - [anon_sym_SQUOTE] = ACTIONS(2527), - [anon_sym_async] = ACTIONS(2527), - [anon_sym_break] = ACTIONS(2527), - [anon_sym_const] = ACTIONS(2527), - [anon_sym_continue] = ACTIONS(2527), - [anon_sym_default] = ACTIONS(2527), - [anon_sym_enum] = ACTIONS(2527), - [anon_sym_fn] = ACTIONS(2527), - [anon_sym_for] = ACTIONS(2527), - [anon_sym_gen] = ACTIONS(2527), - [anon_sym_if] = ACTIONS(2527), - [anon_sym_impl] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2527), - [anon_sym_loop] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_mod] = ACTIONS(2527), - [anon_sym_pub] = ACTIONS(2527), - [anon_sym_return] = ACTIONS(2527), - [anon_sym_static] = ACTIONS(2527), - [anon_sym_struct] = ACTIONS(2527), - [anon_sym_trait] = ACTIONS(2527), - [anon_sym_type] = ACTIONS(2527), - [anon_sym_union] = ACTIONS(2527), - [anon_sym_unsafe] = ACTIONS(2527), - [anon_sym_use] = ACTIONS(2527), - [anon_sym_while] = ACTIONS(2527), - [anon_sym_extern] = ACTIONS(2527), - [anon_sym_yield] = ACTIONS(2527), - [anon_sym_move] = ACTIONS(2527), - [anon_sym_try] = ACTIONS(2527), - [sym_integer_literal] = ACTIONS(2525), - [aux_sym_string_literal_token1] = ACTIONS(2525), - [sym_char_literal] = ACTIONS(2525), - [anon_sym_true] = ACTIONS(2527), - [anon_sym_false] = ACTIONS(2527), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2527), - [sym_super] = ACTIONS(2527), - [sym_crate] = ACTIONS(2527), - [sym_metavariable] = ACTIONS(2525), - [sym__raw_string_literal_start] = ACTIONS(2525), - [sym_float_literal] = ACTIONS(2525), - }, - [STATE(666)] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), - [ts_builtin_sym_end] = ACTIONS(2529), - [sym_identifier] = ACTIONS(2531), - [anon_sym_SEMI] = ACTIONS(2529), - [anon_sym_macro_rules_BANG] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_RBRACE] = ACTIONS(2529), - [anon_sym_STAR] = ACTIONS(2529), - [anon_sym_u8] = ACTIONS(2531), - [anon_sym_i8] = ACTIONS(2531), - [anon_sym_u16] = ACTIONS(2531), - [anon_sym_i16] = ACTIONS(2531), - [anon_sym_u32] = ACTIONS(2531), - [anon_sym_i32] = ACTIONS(2531), - [anon_sym_u64] = ACTIONS(2531), - [anon_sym_i64] = ACTIONS(2531), - [anon_sym_u128] = ACTIONS(2531), - [anon_sym_i128] = ACTIONS(2531), - [anon_sym_isize] = ACTIONS(2531), - [anon_sym_usize] = ACTIONS(2531), - [anon_sym_f32] = ACTIONS(2531), - [anon_sym_f64] = ACTIONS(2531), - [anon_sym_bool] = ACTIONS(2531), - [anon_sym_str] = ACTIONS(2531), - [anon_sym_char] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2529), - [anon_sym_BANG] = ACTIONS(2529), - [anon_sym_AMP] = ACTIONS(2529), - [anon_sym_PIPE] = ACTIONS(2529), - [anon_sym_LT] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(2529), - [anon_sym_COLON_COLON] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2529), - [anon_sym_SQUOTE] = ACTIONS(2531), - [anon_sym_async] = ACTIONS(2531), - [anon_sym_break] = ACTIONS(2531), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_continue] = ACTIONS(2531), - [anon_sym_default] = ACTIONS(2531), - [anon_sym_enum] = ACTIONS(2531), - [anon_sym_fn] = ACTIONS(2531), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_gen] = ACTIONS(2531), - [anon_sym_if] = ACTIONS(2531), - [anon_sym_impl] = ACTIONS(2531), - [anon_sym_let] = ACTIONS(2531), - [anon_sym_loop] = ACTIONS(2531), - [anon_sym_match] = ACTIONS(2531), - [anon_sym_mod] = ACTIONS(2531), - [anon_sym_pub] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2531), - [anon_sym_static] = ACTIONS(2531), - [anon_sym_struct] = ACTIONS(2531), - [anon_sym_trait] = ACTIONS(2531), - [anon_sym_type] = ACTIONS(2531), - [anon_sym_union] = ACTIONS(2531), - [anon_sym_unsafe] = ACTIONS(2531), - [anon_sym_use] = ACTIONS(2531), - [anon_sym_while] = ACTIONS(2531), - [anon_sym_extern] = ACTIONS(2531), - [anon_sym_yield] = ACTIONS(2531), - [anon_sym_move] = ACTIONS(2531), - [anon_sym_try] = ACTIONS(2531), - [sym_integer_literal] = ACTIONS(2529), - [aux_sym_string_literal_token1] = ACTIONS(2529), - [sym_char_literal] = ACTIONS(2529), - [anon_sym_true] = ACTIONS(2531), - [anon_sym_false] = ACTIONS(2531), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2531), - [sym_super] = ACTIONS(2531), - [sym_crate] = ACTIONS(2531), - [sym_metavariable] = ACTIONS(2529), - [sym__raw_string_literal_start] = ACTIONS(2529), - [sym_float_literal] = ACTIONS(2529), - }, - [STATE(667)] = { - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(2533), - [sym_identifier] = ACTIONS(2535), - [anon_sym_SEMI] = ACTIONS(2533), - [anon_sym_macro_rules_BANG] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_LBRACK] = ACTIONS(2533), - [anon_sym_LBRACE] = ACTIONS(2533), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_STAR] = ACTIONS(2533), - [anon_sym_u8] = ACTIONS(2535), - [anon_sym_i8] = ACTIONS(2535), - [anon_sym_u16] = ACTIONS(2535), - [anon_sym_i16] = ACTIONS(2535), - [anon_sym_u32] = ACTIONS(2535), - [anon_sym_i32] = ACTIONS(2535), - [anon_sym_u64] = ACTIONS(2535), - [anon_sym_i64] = ACTIONS(2535), - [anon_sym_u128] = ACTIONS(2535), - [anon_sym_i128] = ACTIONS(2535), - [anon_sym_isize] = ACTIONS(2535), - [anon_sym_usize] = ACTIONS(2535), - [anon_sym_f32] = ACTIONS(2535), - [anon_sym_f64] = ACTIONS(2535), - [anon_sym_bool] = ACTIONS(2535), - [anon_sym_str] = ACTIONS(2535), - [anon_sym_char] = ACTIONS(2535), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_AMP] = ACTIONS(2533), - [anon_sym_PIPE] = ACTIONS(2533), - [anon_sym_LT] = ACTIONS(2533), - [anon_sym_DOT_DOT] = ACTIONS(2533), - [anon_sym_COLON_COLON] = ACTIONS(2533), - [anon_sym_POUND] = ACTIONS(2533), - [anon_sym_SQUOTE] = ACTIONS(2535), - [anon_sym_async] = ACTIONS(2535), - [anon_sym_break] = ACTIONS(2535), - [anon_sym_const] = ACTIONS(2535), - [anon_sym_continue] = ACTIONS(2535), - [anon_sym_default] = ACTIONS(2535), - [anon_sym_enum] = ACTIONS(2535), - [anon_sym_fn] = ACTIONS(2535), - [anon_sym_for] = ACTIONS(2535), - [anon_sym_gen] = ACTIONS(2535), - [anon_sym_if] = ACTIONS(2535), - [anon_sym_impl] = ACTIONS(2535), - [anon_sym_let] = ACTIONS(2535), - [anon_sym_loop] = ACTIONS(2535), - [anon_sym_match] = ACTIONS(2535), - [anon_sym_mod] = ACTIONS(2535), - [anon_sym_pub] = ACTIONS(2535), - [anon_sym_return] = ACTIONS(2535), - [anon_sym_static] = ACTIONS(2535), - [anon_sym_struct] = ACTIONS(2535), - [anon_sym_trait] = ACTIONS(2535), - [anon_sym_type] = ACTIONS(2535), - [anon_sym_union] = ACTIONS(2535), - [anon_sym_unsafe] = ACTIONS(2535), - [anon_sym_use] = ACTIONS(2535), - [anon_sym_while] = ACTIONS(2535), - [anon_sym_extern] = ACTIONS(2535), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_move] = ACTIONS(2535), - [anon_sym_try] = ACTIONS(2535), - [sym_integer_literal] = ACTIONS(2533), - [aux_sym_string_literal_token1] = ACTIONS(2533), - [sym_char_literal] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2535), - [sym_super] = ACTIONS(2535), - [sym_crate] = ACTIONS(2535), - [sym_metavariable] = ACTIONS(2533), - [sym__raw_string_literal_start] = ACTIONS(2533), - [sym_float_literal] = ACTIONS(2533), - }, - [STATE(668)] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(2537), - [sym_identifier] = ACTIONS(2539), - [anon_sym_SEMI] = ACTIONS(2537), - [anon_sym_macro_rules_BANG] = ACTIONS(2537), - [anon_sym_LPAREN] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(2537), - [anon_sym_RBRACE] = ACTIONS(2537), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_u8] = ACTIONS(2539), - [anon_sym_i8] = ACTIONS(2539), - [anon_sym_u16] = ACTIONS(2539), - [anon_sym_i16] = ACTIONS(2539), - [anon_sym_u32] = ACTIONS(2539), - [anon_sym_i32] = ACTIONS(2539), - [anon_sym_u64] = ACTIONS(2539), - [anon_sym_i64] = ACTIONS(2539), - [anon_sym_u128] = ACTIONS(2539), - [anon_sym_i128] = ACTIONS(2539), - [anon_sym_isize] = ACTIONS(2539), - [anon_sym_usize] = ACTIONS(2539), - [anon_sym_f32] = ACTIONS(2539), - [anon_sym_f64] = ACTIONS(2539), - [anon_sym_bool] = ACTIONS(2539), - [anon_sym_str] = ACTIONS(2539), - [anon_sym_char] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2537), - [anon_sym_BANG] = ACTIONS(2537), - [anon_sym_AMP] = ACTIONS(2537), - [anon_sym_PIPE] = ACTIONS(2537), - [anon_sym_LT] = ACTIONS(2537), - [anon_sym_DOT_DOT] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(2537), - [anon_sym_POUND] = ACTIONS(2537), - [anon_sym_SQUOTE] = ACTIONS(2539), - [anon_sym_async] = ACTIONS(2539), - [anon_sym_break] = ACTIONS(2539), - [anon_sym_const] = ACTIONS(2539), - [anon_sym_continue] = ACTIONS(2539), - [anon_sym_default] = ACTIONS(2539), - [anon_sym_enum] = ACTIONS(2539), - [anon_sym_fn] = ACTIONS(2539), - [anon_sym_for] = ACTIONS(2539), - [anon_sym_gen] = ACTIONS(2539), - [anon_sym_if] = ACTIONS(2539), - [anon_sym_impl] = ACTIONS(2539), - [anon_sym_let] = ACTIONS(2539), - [anon_sym_loop] = ACTIONS(2539), - [anon_sym_match] = ACTIONS(2539), - [anon_sym_mod] = ACTIONS(2539), - [anon_sym_pub] = ACTIONS(2539), - [anon_sym_return] = ACTIONS(2539), - [anon_sym_static] = ACTIONS(2539), - [anon_sym_struct] = ACTIONS(2539), - [anon_sym_trait] = ACTIONS(2539), - [anon_sym_type] = ACTIONS(2539), - [anon_sym_union] = ACTIONS(2539), - [anon_sym_unsafe] = ACTIONS(2539), - [anon_sym_use] = ACTIONS(2539), - [anon_sym_while] = ACTIONS(2539), - [anon_sym_extern] = ACTIONS(2539), - [anon_sym_yield] = ACTIONS(2539), - [anon_sym_move] = ACTIONS(2539), - [anon_sym_try] = ACTIONS(2539), - [sym_integer_literal] = ACTIONS(2537), - [aux_sym_string_literal_token1] = ACTIONS(2537), - [sym_char_literal] = ACTIONS(2537), - [anon_sym_true] = ACTIONS(2539), - [anon_sym_false] = ACTIONS(2539), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2539), - [sym_super] = ACTIONS(2539), - [sym_crate] = ACTIONS(2539), - [sym_metavariable] = ACTIONS(2537), - [sym__raw_string_literal_start] = ACTIONS(2537), - [sym_float_literal] = ACTIONS(2537), - }, - [STATE(669)] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(2541), - [sym_identifier] = ACTIONS(2543), - [anon_sym_SEMI] = ACTIONS(2541), - [anon_sym_macro_rules_BANG] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2541), - [anon_sym_LBRACK] = ACTIONS(2541), - [anon_sym_LBRACE] = ACTIONS(2541), - [anon_sym_RBRACE] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2541), - [anon_sym_u8] = ACTIONS(2543), - [anon_sym_i8] = ACTIONS(2543), - [anon_sym_u16] = ACTIONS(2543), - [anon_sym_i16] = ACTIONS(2543), - [anon_sym_u32] = ACTIONS(2543), - [anon_sym_i32] = ACTIONS(2543), - [anon_sym_u64] = ACTIONS(2543), - [anon_sym_i64] = ACTIONS(2543), - [anon_sym_u128] = ACTIONS(2543), - [anon_sym_i128] = ACTIONS(2543), - [anon_sym_isize] = ACTIONS(2543), - [anon_sym_usize] = ACTIONS(2543), - [anon_sym_f32] = ACTIONS(2543), - [anon_sym_f64] = ACTIONS(2543), - [anon_sym_bool] = ACTIONS(2543), - [anon_sym_str] = ACTIONS(2543), - [anon_sym_char] = ACTIONS(2543), - [anon_sym_DASH] = ACTIONS(2541), - [anon_sym_BANG] = ACTIONS(2541), - [anon_sym_AMP] = ACTIONS(2541), - [anon_sym_PIPE] = ACTIONS(2541), - [anon_sym_LT] = ACTIONS(2541), - [anon_sym_DOT_DOT] = ACTIONS(2541), - [anon_sym_COLON_COLON] = ACTIONS(2541), - [anon_sym_POUND] = ACTIONS(2541), - [anon_sym_SQUOTE] = ACTIONS(2543), - [anon_sym_async] = ACTIONS(2543), - [anon_sym_break] = ACTIONS(2543), - [anon_sym_const] = ACTIONS(2543), - [anon_sym_continue] = ACTIONS(2543), - [anon_sym_default] = ACTIONS(2543), - [anon_sym_enum] = ACTIONS(2543), - [anon_sym_fn] = ACTIONS(2543), - [anon_sym_for] = ACTIONS(2543), - [anon_sym_gen] = ACTIONS(2543), - [anon_sym_if] = ACTIONS(2543), - [anon_sym_impl] = ACTIONS(2543), - [anon_sym_let] = ACTIONS(2543), - [anon_sym_loop] = ACTIONS(2543), - [anon_sym_match] = ACTIONS(2543), - [anon_sym_mod] = ACTIONS(2543), - [anon_sym_pub] = ACTIONS(2543), - [anon_sym_return] = ACTIONS(2543), - [anon_sym_static] = ACTIONS(2543), - [anon_sym_struct] = ACTIONS(2543), - [anon_sym_trait] = ACTIONS(2543), - [anon_sym_type] = ACTIONS(2543), - [anon_sym_union] = ACTIONS(2543), - [anon_sym_unsafe] = ACTIONS(2543), - [anon_sym_use] = ACTIONS(2543), - [anon_sym_while] = ACTIONS(2543), - [anon_sym_extern] = ACTIONS(2543), - [anon_sym_yield] = ACTIONS(2543), - [anon_sym_move] = ACTIONS(2543), - [anon_sym_try] = ACTIONS(2543), - [sym_integer_literal] = ACTIONS(2541), - [aux_sym_string_literal_token1] = ACTIONS(2541), - [sym_char_literal] = ACTIONS(2541), - [anon_sym_true] = ACTIONS(2543), - [anon_sym_false] = ACTIONS(2543), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2543), - [sym_super] = ACTIONS(2543), - [sym_crate] = ACTIONS(2543), - [sym_metavariable] = ACTIONS(2541), - [sym__raw_string_literal_start] = ACTIONS(2541), - [sym_float_literal] = ACTIONS(2541), - }, - [STATE(670)] = { - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(2545), - [sym_identifier] = ACTIONS(2547), - [anon_sym_SEMI] = ACTIONS(2545), - [anon_sym_macro_rules_BANG] = ACTIONS(2545), - [anon_sym_LPAREN] = ACTIONS(2545), - [anon_sym_LBRACK] = ACTIONS(2545), - [anon_sym_LBRACE] = ACTIONS(2545), - [anon_sym_RBRACE] = ACTIONS(2545), - [anon_sym_STAR] = ACTIONS(2545), - [anon_sym_u8] = ACTIONS(2547), - [anon_sym_i8] = ACTIONS(2547), - [anon_sym_u16] = ACTIONS(2547), - [anon_sym_i16] = ACTIONS(2547), - [anon_sym_u32] = ACTIONS(2547), - [anon_sym_i32] = ACTIONS(2547), - [anon_sym_u64] = ACTIONS(2547), - [anon_sym_i64] = ACTIONS(2547), - [anon_sym_u128] = ACTIONS(2547), - [anon_sym_i128] = ACTIONS(2547), - [anon_sym_isize] = ACTIONS(2547), - [anon_sym_usize] = ACTIONS(2547), - [anon_sym_f32] = ACTIONS(2547), - [anon_sym_f64] = ACTIONS(2547), - [anon_sym_bool] = ACTIONS(2547), - [anon_sym_str] = ACTIONS(2547), - [anon_sym_char] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2545), - [anon_sym_BANG] = ACTIONS(2545), - [anon_sym_AMP] = ACTIONS(2545), - [anon_sym_PIPE] = ACTIONS(2545), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_DOT_DOT] = ACTIONS(2545), - [anon_sym_COLON_COLON] = ACTIONS(2545), - [anon_sym_POUND] = ACTIONS(2545), - [anon_sym_SQUOTE] = ACTIONS(2547), - [anon_sym_async] = ACTIONS(2547), - [anon_sym_break] = ACTIONS(2547), - [anon_sym_const] = ACTIONS(2547), - [anon_sym_continue] = ACTIONS(2547), - [anon_sym_default] = ACTIONS(2547), - [anon_sym_enum] = ACTIONS(2547), - [anon_sym_fn] = ACTIONS(2547), - [anon_sym_for] = ACTIONS(2547), - [anon_sym_gen] = ACTIONS(2547), - [anon_sym_if] = ACTIONS(2547), - [anon_sym_impl] = ACTIONS(2547), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_loop] = ACTIONS(2547), - [anon_sym_match] = ACTIONS(2547), - [anon_sym_mod] = ACTIONS(2547), - [anon_sym_pub] = ACTIONS(2547), - [anon_sym_return] = ACTIONS(2547), - [anon_sym_static] = ACTIONS(2547), - [anon_sym_struct] = ACTIONS(2547), - [anon_sym_trait] = ACTIONS(2547), - [anon_sym_type] = ACTIONS(2547), - [anon_sym_union] = ACTIONS(2547), - [anon_sym_unsafe] = ACTIONS(2547), - [anon_sym_use] = ACTIONS(2547), - [anon_sym_while] = ACTIONS(2547), - [anon_sym_extern] = ACTIONS(2547), - [anon_sym_yield] = ACTIONS(2547), - [anon_sym_move] = ACTIONS(2547), - [anon_sym_try] = ACTIONS(2547), - [sym_integer_literal] = ACTIONS(2545), - [aux_sym_string_literal_token1] = ACTIONS(2545), - [sym_char_literal] = ACTIONS(2545), - [anon_sym_true] = ACTIONS(2547), - [anon_sym_false] = ACTIONS(2547), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2547), - [sym_super] = ACTIONS(2547), - [sym_crate] = ACTIONS(2547), - [sym_metavariable] = ACTIONS(2545), - [sym__raw_string_literal_start] = ACTIONS(2545), - [sym_float_literal] = ACTIONS(2545), - }, - [STATE(671)] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(2549), - [sym_identifier] = ACTIONS(2551), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym_macro_rules_BANG] = ACTIONS(2549), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_LBRACK] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_RBRACE] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2549), - [anon_sym_u8] = ACTIONS(2551), - [anon_sym_i8] = ACTIONS(2551), - [anon_sym_u16] = ACTIONS(2551), - [anon_sym_i16] = ACTIONS(2551), - [anon_sym_u32] = ACTIONS(2551), - [anon_sym_i32] = ACTIONS(2551), - [anon_sym_u64] = ACTIONS(2551), - [anon_sym_i64] = ACTIONS(2551), - [anon_sym_u128] = ACTIONS(2551), - [anon_sym_i128] = ACTIONS(2551), - [anon_sym_isize] = ACTIONS(2551), - [anon_sym_usize] = ACTIONS(2551), - [anon_sym_f32] = ACTIONS(2551), - [anon_sym_f64] = ACTIONS(2551), - [anon_sym_bool] = ACTIONS(2551), - [anon_sym_str] = ACTIONS(2551), - [anon_sym_char] = ACTIONS(2551), - [anon_sym_DASH] = ACTIONS(2549), - [anon_sym_BANG] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2549), - [anon_sym_PIPE] = ACTIONS(2549), - [anon_sym_LT] = ACTIONS(2549), - [anon_sym_DOT_DOT] = ACTIONS(2549), - [anon_sym_COLON_COLON] = ACTIONS(2549), - [anon_sym_POUND] = ACTIONS(2549), - [anon_sym_SQUOTE] = ACTIONS(2551), - [anon_sym_async] = ACTIONS(2551), - [anon_sym_break] = ACTIONS(2551), - [anon_sym_const] = ACTIONS(2551), - [anon_sym_continue] = ACTIONS(2551), - [anon_sym_default] = ACTIONS(2551), - [anon_sym_enum] = ACTIONS(2551), - [anon_sym_fn] = ACTIONS(2551), - [anon_sym_for] = ACTIONS(2551), - [anon_sym_gen] = ACTIONS(2551), - [anon_sym_if] = ACTIONS(2551), - [anon_sym_impl] = ACTIONS(2551), - [anon_sym_let] = ACTIONS(2551), - [anon_sym_loop] = ACTIONS(2551), - [anon_sym_match] = ACTIONS(2551), - [anon_sym_mod] = ACTIONS(2551), - [anon_sym_pub] = ACTIONS(2551), - [anon_sym_return] = ACTIONS(2551), - [anon_sym_static] = ACTIONS(2551), - [anon_sym_struct] = ACTIONS(2551), - [anon_sym_trait] = ACTIONS(2551), - [anon_sym_type] = ACTIONS(2551), - [anon_sym_union] = ACTIONS(2551), - [anon_sym_unsafe] = ACTIONS(2551), - [anon_sym_use] = ACTIONS(2551), - [anon_sym_while] = ACTIONS(2551), - [anon_sym_extern] = ACTIONS(2551), - [anon_sym_yield] = ACTIONS(2551), - [anon_sym_move] = ACTIONS(2551), - [anon_sym_try] = ACTIONS(2551), - [sym_integer_literal] = ACTIONS(2549), - [aux_sym_string_literal_token1] = ACTIONS(2549), - [sym_char_literal] = ACTIONS(2549), - [anon_sym_true] = ACTIONS(2551), - [anon_sym_false] = ACTIONS(2551), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2551), - [sym_super] = ACTIONS(2551), - [sym_crate] = ACTIONS(2551), - [sym_metavariable] = ACTIONS(2549), - [sym__raw_string_literal_start] = ACTIONS(2549), - [sym_float_literal] = ACTIONS(2549), - }, - [STATE(672)] = { - [sym_line_comment] = STATE(672), - [sym_block_comment] = STATE(672), [ts_builtin_sym_end] = ACTIONS(1381), [sym_identifier] = ACTIONS(1383), [anon_sym_SEMI] = ACTIONS(1381), @@ -85390,981 +84103,576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1381), [sym_float_literal] = ACTIONS(1381), }, - [STATE(673)] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(2553), - [sym_identifier] = ACTIONS(2555), - [anon_sym_SEMI] = ACTIONS(2553), - [anon_sym_macro_rules_BANG] = ACTIONS(2553), - [anon_sym_LPAREN] = ACTIONS(2553), - [anon_sym_LBRACK] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2553), - [anon_sym_RBRACE] = ACTIONS(2553), - [anon_sym_STAR] = ACTIONS(2553), - [anon_sym_u8] = ACTIONS(2555), - [anon_sym_i8] = ACTIONS(2555), - [anon_sym_u16] = ACTIONS(2555), - [anon_sym_i16] = ACTIONS(2555), - [anon_sym_u32] = ACTIONS(2555), - [anon_sym_i32] = ACTIONS(2555), - [anon_sym_u64] = ACTIONS(2555), - [anon_sym_i64] = ACTIONS(2555), - [anon_sym_u128] = ACTIONS(2555), - [anon_sym_i128] = ACTIONS(2555), - [anon_sym_isize] = ACTIONS(2555), - [anon_sym_usize] = ACTIONS(2555), - [anon_sym_f32] = ACTIONS(2555), - [anon_sym_f64] = ACTIONS(2555), - [anon_sym_bool] = ACTIONS(2555), - [anon_sym_str] = ACTIONS(2555), - [anon_sym_char] = ACTIONS(2555), - [anon_sym_DASH] = ACTIONS(2553), - [anon_sym_BANG] = ACTIONS(2553), - [anon_sym_AMP] = ACTIONS(2553), - [anon_sym_PIPE] = ACTIONS(2553), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_DOT_DOT] = ACTIONS(2553), - [anon_sym_COLON_COLON] = ACTIONS(2553), - [anon_sym_POUND] = ACTIONS(2553), - [anon_sym_SQUOTE] = ACTIONS(2555), - [anon_sym_async] = ACTIONS(2555), - [anon_sym_break] = ACTIONS(2555), - [anon_sym_const] = ACTIONS(2555), - [anon_sym_continue] = ACTIONS(2555), - [anon_sym_default] = ACTIONS(2555), - [anon_sym_enum] = ACTIONS(2555), - [anon_sym_fn] = ACTIONS(2555), - [anon_sym_for] = ACTIONS(2555), - [anon_sym_gen] = ACTIONS(2555), - [anon_sym_if] = ACTIONS(2555), - [anon_sym_impl] = ACTIONS(2555), - [anon_sym_let] = ACTIONS(2555), - [anon_sym_loop] = ACTIONS(2555), - [anon_sym_match] = ACTIONS(2555), - [anon_sym_mod] = ACTIONS(2555), - [anon_sym_pub] = ACTIONS(2555), - [anon_sym_return] = ACTIONS(2555), - [anon_sym_static] = ACTIONS(2555), - [anon_sym_struct] = ACTIONS(2555), - [anon_sym_trait] = ACTIONS(2555), - [anon_sym_type] = ACTIONS(2555), - [anon_sym_union] = ACTIONS(2555), - [anon_sym_unsafe] = ACTIONS(2555), - [anon_sym_use] = ACTIONS(2555), - [anon_sym_while] = ACTIONS(2555), - [anon_sym_extern] = ACTIONS(2555), - [anon_sym_yield] = ACTIONS(2555), - [anon_sym_move] = ACTIONS(2555), - [anon_sym_try] = ACTIONS(2555), - [sym_integer_literal] = ACTIONS(2553), - [aux_sym_string_literal_token1] = ACTIONS(2553), - [sym_char_literal] = ACTIONS(2553), - [anon_sym_true] = ACTIONS(2555), - [anon_sym_false] = ACTIONS(2555), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2555), - [sym_super] = ACTIONS(2555), - [sym_crate] = ACTIONS(2555), - [sym_metavariable] = ACTIONS(2553), - [sym__raw_string_literal_start] = ACTIONS(2553), - [sym_float_literal] = ACTIONS(2553), - }, - [STATE(674)] = { - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(1363), - [sym_identifier] = ACTIONS(1365), - [anon_sym_SEMI] = ACTIONS(1363), - [anon_sym_macro_rules_BANG] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1363), - [anon_sym_LBRACK] = ACTIONS(1363), - [anon_sym_LBRACE] = ACTIONS(1363), - [anon_sym_RBRACE] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_u8] = ACTIONS(1365), - [anon_sym_i8] = ACTIONS(1365), - [anon_sym_u16] = ACTIONS(1365), - [anon_sym_i16] = ACTIONS(1365), - [anon_sym_u32] = ACTIONS(1365), - [anon_sym_i32] = ACTIONS(1365), - [anon_sym_u64] = ACTIONS(1365), - [anon_sym_i64] = ACTIONS(1365), - [anon_sym_u128] = ACTIONS(1365), - [anon_sym_i128] = ACTIONS(1365), - [anon_sym_isize] = ACTIONS(1365), - [anon_sym_usize] = ACTIONS(1365), - [anon_sym_f32] = ACTIONS(1365), - [anon_sym_f64] = ACTIONS(1365), - [anon_sym_bool] = ACTIONS(1365), - [anon_sym_str] = ACTIONS(1365), - [anon_sym_char] = ACTIONS(1365), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1363), - [anon_sym_LT] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1363), - [anon_sym_COLON_COLON] = ACTIONS(1363), - [anon_sym_POUND] = ACTIONS(1363), - [anon_sym_SQUOTE] = ACTIONS(1365), - [anon_sym_async] = ACTIONS(1365), - [anon_sym_break] = ACTIONS(1365), - [anon_sym_const] = ACTIONS(1365), - [anon_sym_continue] = ACTIONS(1365), - [anon_sym_default] = ACTIONS(1365), - [anon_sym_enum] = ACTIONS(1365), - [anon_sym_fn] = ACTIONS(1365), - [anon_sym_for] = ACTIONS(1365), - [anon_sym_gen] = ACTIONS(1365), - [anon_sym_if] = ACTIONS(1365), - [anon_sym_impl] = ACTIONS(1365), - [anon_sym_let] = ACTIONS(1365), - [anon_sym_loop] = ACTIONS(1365), - [anon_sym_match] = ACTIONS(1365), - [anon_sym_mod] = ACTIONS(1365), - [anon_sym_pub] = ACTIONS(1365), - [anon_sym_return] = ACTIONS(1365), - [anon_sym_static] = ACTIONS(1365), - [anon_sym_struct] = ACTIONS(1365), - [anon_sym_trait] = ACTIONS(1365), - [anon_sym_type] = ACTIONS(1365), - [anon_sym_union] = ACTIONS(1365), - [anon_sym_unsafe] = ACTIONS(1365), - [anon_sym_use] = ACTIONS(1365), - [anon_sym_while] = ACTIONS(1365), - [anon_sym_extern] = ACTIONS(1365), - [anon_sym_yield] = ACTIONS(1365), - [anon_sym_move] = ACTIONS(1365), - [anon_sym_try] = ACTIONS(1365), - [sym_integer_literal] = ACTIONS(1363), - [aux_sym_string_literal_token1] = ACTIONS(1363), - [sym_char_literal] = ACTIONS(1363), - [anon_sym_true] = ACTIONS(1365), - [anon_sym_false] = ACTIONS(1365), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1365), - [sym_super] = ACTIONS(1365), - [sym_crate] = ACTIONS(1365), - [sym_metavariable] = ACTIONS(1363), - [sym__raw_string_literal_start] = ACTIONS(1363), - [sym_float_literal] = ACTIONS(1363), - }, - [STATE(675)] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(1385), - [sym_identifier] = ACTIONS(1387), - [anon_sym_SEMI] = ACTIONS(1385), - [anon_sym_macro_rules_BANG] = ACTIONS(1385), - [anon_sym_LPAREN] = ACTIONS(1385), - [anon_sym_LBRACK] = ACTIONS(1385), - [anon_sym_LBRACE] = ACTIONS(1385), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_u8] = ACTIONS(1387), - [anon_sym_i8] = ACTIONS(1387), - [anon_sym_u16] = ACTIONS(1387), - [anon_sym_i16] = ACTIONS(1387), - [anon_sym_u32] = ACTIONS(1387), - [anon_sym_i32] = ACTIONS(1387), - [anon_sym_u64] = ACTIONS(1387), - [anon_sym_i64] = ACTIONS(1387), - [anon_sym_u128] = ACTIONS(1387), - [anon_sym_i128] = ACTIONS(1387), - [anon_sym_isize] = ACTIONS(1387), - [anon_sym_usize] = ACTIONS(1387), - [anon_sym_f32] = ACTIONS(1387), - [anon_sym_f64] = ACTIONS(1387), - [anon_sym_bool] = ACTIONS(1387), - [anon_sym_str] = ACTIONS(1387), - [anon_sym_char] = ACTIONS(1387), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_BANG] = ACTIONS(1385), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_DOT_DOT] = ACTIONS(1385), - [anon_sym_COLON_COLON] = ACTIONS(1385), - [anon_sym_POUND] = ACTIONS(1385), - [anon_sym_SQUOTE] = ACTIONS(1387), - [anon_sym_async] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_default] = ACTIONS(1387), - [anon_sym_enum] = ACTIONS(1387), - [anon_sym_fn] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1387), - [anon_sym_let] = ACTIONS(1387), - [anon_sym_loop] = ACTIONS(1387), - [anon_sym_match] = ACTIONS(1387), - [anon_sym_mod] = ACTIONS(1387), - [anon_sym_pub] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_static] = ACTIONS(1387), - [anon_sym_struct] = ACTIONS(1387), - [anon_sym_trait] = ACTIONS(1387), - [anon_sym_type] = ACTIONS(1387), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1387), - [anon_sym_use] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1387), - [anon_sym_yield] = ACTIONS(1387), - [anon_sym_move] = ACTIONS(1387), - [anon_sym_try] = ACTIONS(1387), - [sym_integer_literal] = ACTIONS(1385), - [aux_sym_string_literal_token1] = ACTIONS(1385), - [sym_char_literal] = ACTIONS(1385), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1387), - [sym_super] = ACTIONS(1387), - [sym_crate] = ACTIONS(1387), - [sym_metavariable] = ACTIONS(1385), - [sym__raw_string_literal_start] = ACTIONS(1385), - [sym_float_literal] = ACTIONS(1385), - }, - [STATE(676)] = { - [sym_line_comment] = STATE(676), - [sym_block_comment] = STATE(676), - [ts_builtin_sym_end] = ACTIONS(1355), - [sym_identifier] = ACTIONS(1357), - [anon_sym_SEMI] = ACTIONS(1355), - [anon_sym_macro_rules_BANG] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(1355), - [anon_sym_LBRACK] = ACTIONS(1355), - [anon_sym_LBRACE] = ACTIONS(1355), - [anon_sym_RBRACE] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_u8] = ACTIONS(1357), - [anon_sym_i8] = ACTIONS(1357), - [anon_sym_u16] = ACTIONS(1357), - [anon_sym_i16] = ACTIONS(1357), - [anon_sym_u32] = ACTIONS(1357), - [anon_sym_i32] = ACTIONS(1357), - [anon_sym_u64] = ACTIONS(1357), - [anon_sym_i64] = ACTIONS(1357), - [anon_sym_u128] = ACTIONS(1357), - [anon_sym_i128] = ACTIONS(1357), - [anon_sym_isize] = ACTIONS(1357), - [anon_sym_usize] = ACTIONS(1357), - [anon_sym_f32] = ACTIONS(1357), - [anon_sym_f64] = ACTIONS(1357), - [anon_sym_bool] = ACTIONS(1357), - [anon_sym_str] = ACTIONS(1357), - [anon_sym_char] = ACTIONS(1357), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_PIPE] = ACTIONS(1355), - [anon_sym_LT] = ACTIONS(1355), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_COLON_COLON] = ACTIONS(1355), - [anon_sym_POUND] = ACTIONS(1355), - [anon_sym_SQUOTE] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1357), - [anon_sym_break] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1357), - [anon_sym_continue] = ACTIONS(1357), - [anon_sym_default] = ACTIONS(1357), - [anon_sym_enum] = ACTIONS(1357), - [anon_sym_fn] = ACTIONS(1357), - [anon_sym_for] = ACTIONS(1357), - [anon_sym_gen] = ACTIONS(1357), - [anon_sym_if] = ACTIONS(1357), - [anon_sym_impl] = ACTIONS(1357), - [anon_sym_let] = ACTIONS(1357), - [anon_sym_loop] = ACTIONS(1357), - [anon_sym_match] = ACTIONS(1357), - [anon_sym_mod] = ACTIONS(1357), - [anon_sym_pub] = ACTIONS(1357), - [anon_sym_return] = ACTIONS(1357), - [anon_sym_static] = ACTIONS(1357), - [anon_sym_struct] = ACTIONS(1357), - [anon_sym_trait] = ACTIONS(1357), - [anon_sym_type] = ACTIONS(1357), - [anon_sym_union] = ACTIONS(1357), - [anon_sym_unsafe] = ACTIONS(1357), - [anon_sym_use] = ACTIONS(1357), - [anon_sym_while] = ACTIONS(1357), - [anon_sym_extern] = ACTIONS(1357), - [anon_sym_yield] = ACTIONS(1357), - [anon_sym_move] = ACTIONS(1357), - [anon_sym_try] = ACTIONS(1357), - [sym_integer_literal] = ACTIONS(1355), - [aux_sym_string_literal_token1] = ACTIONS(1355), - [sym_char_literal] = ACTIONS(1355), - [anon_sym_true] = ACTIONS(1357), - [anon_sym_false] = ACTIONS(1357), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1357), - [sym_super] = ACTIONS(1357), - [sym_crate] = ACTIONS(1357), - [sym_metavariable] = ACTIONS(1355), - [sym__raw_string_literal_start] = ACTIONS(1355), - [sym_float_literal] = ACTIONS(1355), - }, - [STATE(677)] = { - [sym_line_comment] = STATE(677), - [sym_block_comment] = STATE(677), - [ts_builtin_sym_end] = ACTIONS(2557), - [sym_identifier] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2557), - [anon_sym_macro_rules_BANG] = ACTIONS(2557), - [anon_sym_LPAREN] = ACTIONS(2557), - [anon_sym_LBRACK] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_RBRACE] = ACTIONS(2557), - [anon_sym_STAR] = ACTIONS(2557), - [anon_sym_u8] = ACTIONS(2559), - [anon_sym_i8] = ACTIONS(2559), - [anon_sym_u16] = ACTIONS(2559), - [anon_sym_i16] = ACTIONS(2559), - [anon_sym_u32] = ACTIONS(2559), - [anon_sym_i32] = ACTIONS(2559), - [anon_sym_u64] = ACTIONS(2559), - [anon_sym_i64] = ACTIONS(2559), - [anon_sym_u128] = ACTIONS(2559), - [anon_sym_i128] = ACTIONS(2559), - [anon_sym_isize] = ACTIONS(2559), - [anon_sym_usize] = ACTIONS(2559), - [anon_sym_f32] = ACTIONS(2559), - [anon_sym_f64] = ACTIONS(2559), - [anon_sym_bool] = ACTIONS(2559), - [anon_sym_str] = ACTIONS(2559), - [anon_sym_char] = ACTIONS(2559), - [anon_sym_DASH] = ACTIONS(2557), - [anon_sym_BANG] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2557), - [anon_sym_PIPE] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(2557), - [anon_sym_DOT_DOT] = ACTIONS(2557), - [anon_sym_COLON_COLON] = ACTIONS(2557), - [anon_sym_POUND] = ACTIONS(2557), - [anon_sym_SQUOTE] = ACTIONS(2559), - [anon_sym_async] = ACTIONS(2559), - [anon_sym_break] = ACTIONS(2559), - [anon_sym_const] = ACTIONS(2559), - [anon_sym_continue] = ACTIONS(2559), - [anon_sym_default] = ACTIONS(2559), - [anon_sym_enum] = ACTIONS(2559), - [anon_sym_fn] = ACTIONS(2559), - [anon_sym_for] = ACTIONS(2559), - [anon_sym_gen] = ACTIONS(2559), - [anon_sym_if] = ACTIONS(2559), - [anon_sym_impl] = ACTIONS(2559), - [anon_sym_let] = ACTIONS(2559), - [anon_sym_loop] = ACTIONS(2559), - [anon_sym_match] = ACTIONS(2559), - [anon_sym_mod] = ACTIONS(2559), - [anon_sym_pub] = ACTIONS(2559), - [anon_sym_return] = ACTIONS(2559), - [anon_sym_static] = ACTIONS(2559), - [anon_sym_struct] = ACTIONS(2559), - [anon_sym_trait] = ACTIONS(2559), - [anon_sym_type] = ACTIONS(2559), - [anon_sym_union] = ACTIONS(2559), - [anon_sym_unsafe] = ACTIONS(2559), - [anon_sym_use] = ACTIONS(2559), - [anon_sym_while] = ACTIONS(2559), - [anon_sym_extern] = ACTIONS(2559), - [anon_sym_yield] = ACTIONS(2559), - [anon_sym_move] = ACTIONS(2559), - [anon_sym_try] = ACTIONS(2559), - [sym_integer_literal] = ACTIONS(2557), - [aux_sym_string_literal_token1] = ACTIONS(2557), - [sym_char_literal] = ACTIONS(2557), - [anon_sym_true] = ACTIONS(2559), - [anon_sym_false] = ACTIONS(2559), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2559), - [sym_super] = ACTIONS(2559), - [sym_crate] = ACTIONS(2559), - [sym_metavariable] = ACTIONS(2557), - [sym__raw_string_literal_start] = ACTIONS(2557), - [sym_float_literal] = ACTIONS(2557), - }, - [STATE(678)] = { - [sym_line_comment] = STATE(678), - [sym_block_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(2561), - [sym_identifier] = ACTIONS(2563), - [anon_sym_SEMI] = ACTIONS(2561), - [anon_sym_macro_rules_BANG] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_LBRACK] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_RBRACE] = ACTIONS(2561), - [anon_sym_STAR] = ACTIONS(2561), - [anon_sym_u8] = ACTIONS(2563), - [anon_sym_i8] = ACTIONS(2563), - [anon_sym_u16] = ACTIONS(2563), - [anon_sym_i16] = ACTIONS(2563), - [anon_sym_u32] = ACTIONS(2563), - [anon_sym_i32] = ACTIONS(2563), - [anon_sym_u64] = ACTIONS(2563), - [anon_sym_i64] = ACTIONS(2563), - [anon_sym_u128] = ACTIONS(2563), - [anon_sym_i128] = ACTIONS(2563), - [anon_sym_isize] = ACTIONS(2563), - [anon_sym_usize] = ACTIONS(2563), - [anon_sym_f32] = ACTIONS(2563), - [anon_sym_f64] = ACTIONS(2563), - [anon_sym_bool] = ACTIONS(2563), - [anon_sym_str] = ACTIONS(2563), - [anon_sym_char] = ACTIONS(2563), - [anon_sym_DASH] = ACTIONS(2561), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_AMP] = ACTIONS(2561), - [anon_sym_PIPE] = ACTIONS(2561), - [anon_sym_LT] = ACTIONS(2561), - [anon_sym_DOT_DOT] = ACTIONS(2561), - [anon_sym_COLON_COLON] = ACTIONS(2561), - [anon_sym_POUND] = ACTIONS(2561), - [anon_sym_SQUOTE] = ACTIONS(2563), - [anon_sym_async] = ACTIONS(2563), - [anon_sym_break] = ACTIONS(2563), - [anon_sym_const] = ACTIONS(2563), - [anon_sym_continue] = ACTIONS(2563), - [anon_sym_default] = ACTIONS(2563), - [anon_sym_enum] = ACTIONS(2563), - [anon_sym_fn] = ACTIONS(2563), - [anon_sym_for] = ACTIONS(2563), - [anon_sym_gen] = ACTIONS(2563), - [anon_sym_if] = ACTIONS(2563), - [anon_sym_impl] = ACTIONS(2563), - [anon_sym_let] = ACTIONS(2563), - [anon_sym_loop] = ACTIONS(2563), - [anon_sym_match] = ACTIONS(2563), - [anon_sym_mod] = ACTIONS(2563), - [anon_sym_pub] = ACTIONS(2563), - [anon_sym_return] = ACTIONS(2563), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_struct] = ACTIONS(2563), - [anon_sym_trait] = ACTIONS(2563), - [anon_sym_type] = ACTIONS(2563), - [anon_sym_union] = ACTIONS(2563), - [anon_sym_unsafe] = ACTIONS(2563), - [anon_sym_use] = ACTIONS(2563), - [anon_sym_while] = ACTIONS(2563), - [anon_sym_extern] = ACTIONS(2563), - [anon_sym_yield] = ACTIONS(2563), - [anon_sym_move] = ACTIONS(2563), - [anon_sym_try] = ACTIONS(2563), - [sym_integer_literal] = ACTIONS(2561), - [aux_sym_string_literal_token1] = ACTIONS(2561), - [sym_char_literal] = ACTIONS(2561), - [anon_sym_true] = ACTIONS(2563), - [anon_sym_false] = ACTIONS(2563), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2563), - [sym_super] = ACTIONS(2563), - [sym_crate] = ACTIONS(2563), - [sym_metavariable] = ACTIONS(2561), - [sym__raw_string_literal_start] = ACTIONS(2561), - [sym_float_literal] = ACTIONS(2561), + [STATE(658)] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(2559), + [sym_identifier] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_macro_rules_BANG] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_u8] = ACTIONS(2561), + [anon_sym_i8] = ACTIONS(2561), + [anon_sym_u16] = ACTIONS(2561), + [anon_sym_i16] = ACTIONS(2561), + [anon_sym_u32] = ACTIONS(2561), + [anon_sym_i32] = ACTIONS(2561), + [anon_sym_u64] = ACTIONS(2561), + [anon_sym_i64] = ACTIONS(2561), + [anon_sym_u128] = ACTIONS(2561), + [anon_sym_i128] = ACTIONS(2561), + [anon_sym_isize] = ACTIONS(2561), + [anon_sym_usize] = ACTIONS(2561), + [anon_sym_f32] = ACTIONS(2561), + [anon_sym_f64] = ACTIONS(2561), + [anon_sym_bool] = ACTIONS(2561), + [anon_sym_str] = ACTIONS(2561), + [anon_sym_char] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_DOT_DOT] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_POUND] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2561), + [anon_sym_async] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_default] = ACTIONS(2561), + [anon_sym_enum] = ACTIONS(2561), + [anon_sym_fn] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_gen] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_impl] = ACTIONS(2561), + [anon_sym_let] = ACTIONS(2561), + [anon_sym_loop] = ACTIONS(2561), + [anon_sym_match] = ACTIONS(2561), + [anon_sym_mod] = ACTIONS(2561), + [anon_sym_pub] = ACTIONS(2561), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_static] = ACTIONS(2561), + [anon_sym_struct] = ACTIONS(2561), + [anon_sym_trait] = ACTIONS(2561), + [anon_sym_type] = ACTIONS(2561), + [anon_sym_union] = ACTIONS(2561), + [anon_sym_unsafe] = ACTIONS(2561), + [anon_sym_use] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_extern] = ACTIONS(2561), + [anon_sym_yield] = ACTIONS(2561), + [anon_sym_move] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2561), + [sym_integer_literal] = ACTIONS(2559), + [aux_sym_string_literal_token1] = ACTIONS(2559), + [sym_char_literal] = ACTIONS(2559), + [anon_sym_true] = ACTIONS(2561), + [anon_sym_false] = ACTIONS(2561), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2561), + [sym_super] = ACTIONS(2561), + [sym_crate] = ACTIONS(2561), + [sym_metavariable] = ACTIONS(2559), + [sym__raw_string_literal_start] = ACTIONS(2559), + [sym_float_literal] = ACTIONS(2559), }, - [STATE(679)] = { - [sym_line_comment] = STATE(679), - [sym_block_comment] = STATE(679), - [ts_builtin_sym_end] = ACTIONS(2565), - [sym_identifier] = ACTIONS(2567), - [anon_sym_SEMI] = ACTIONS(2565), - [anon_sym_macro_rules_BANG] = ACTIONS(2565), - [anon_sym_LPAREN] = ACTIONS(2565), - [anon_sym_LBRACK] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2565), - [anon_sym_RBRACE] = ACTIONS(2565), - [anon_sym_STAR] = ACTIONS(2565), - [anon_sym_u8] = ACTIONS(2567), - [anon_sym_i8] = ACTIONS(2567), - [anon_sym_u16] = ACTIONS(2567), - [anon_sym_i16] = ACTIONS(2567), - [anon_sym_u32] = ACTIONS(2567), - [anon_sym_i32] = ACTIONS(2567), - [anon_sym_u64] = ACTIONS(2567), - [anon_sym_i64] = ACTIONS(2567), - [anon_sym_u128] = ACTIONS(2567), - [anon_sym_i128] = ACTIONS(2567), - [anon_sym_isize] = ACTIONS(2567), - [anon_sym_usize] = ACTIONS(2567), - [anon_sym_f32] = ACTIONS(2567), - [anon_sym_f64] = ACTIONS(2567), - [anon_sym_bool] = ACTIONS(2567), - [anon_sym_str] = ACTIONS(2567), - [anon_sym_char] = ACTIONS(2567), - [anon_sym_DASH] = ACTIONS(2565), - [anon_sym_BANG] = ACTIONS(2565), - [anon_sym_AMP] = ACTIONS(2565), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_LT] = ACTIONS(2565), - [anon_sym_DOT_DOT] = ACTIONS(2565), - [anon_sym_COLON_COLON] = ACTIONS(2565), - [anon_sym_POUND] = ACTIONS(2565), - [anon_sym_SQUOTE] = ACTIONS(2567), - [anon_sym_async] = ACTIONS(2567), - [anon_sym_break] = ACTIONS(2567), - [anon_sym_const] = ACTIONS(2567), - [anon_sym_continue] = ACTIONS(2567), - [anon_sym_default] = ACTIONS(2567), - [anon_sym_enum] = ACTIONS(2567), - [anon_sym_fn] = ACTIONS(2567), - [anon_sym_for] = ACTIONS(2567), - [anon_sym_gen] = ACTIONS(2567), - [anon_sym_if] = ACTIONS(2567), - [anon_sym_impl] = ACTIONS(2567), - [anon_sym_let] = ACTIONS(2567), - [anon_sym_loop] = ACTIONS(2567), - [anon_sym_match] = ACTIONS(2567), - [anon_sym_mod] = ACTIONS(2567), - [anon_sym_pub] = ACTIONS(2567), - [anon_sym_return] = ACTIONS(2567), - [anon_sym_static] = ACTIONS(2567), - [anon_sym_struct] = ACTIONS(2567), - [anon_sym_trait] = ACTIONS(2567), - [anon_sym_type] = ACTIONS(2567), - [anon_sym_union] = ACTIONS(2567), - [anon_sym_unsafe] = ACTIONS(2567), - [anon_sym_use] = ACTIONS(2567), - [anon_sym_while] = ACTIONS(2567), - [anon_sym_extern] = ACTIONS(2567), - [anon_sym_yield] = ACTIONS(2567), - [anon_sym_move] = ACTIONS(2567), - [anon_sym_try] = ACTIONS(2567), - [sym_integer_literal] = ACTIONS(2565), - [aux_sym_string_literal_token1] = ACTIONS(2565), - [sym_char_literal] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(2567), - [anon_sym_false] = ACTIONS(2567), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2567), - [sym_super] = ACTIONS(2567), - [sym_crate] = ACTIONS(2567), - [sym_metavariable] = ACTIONS(2565), - [sym__raw_string_literal_start] = ACTIONS(2565), - [sym_float_literal] = ACTIONS(2565), + [STATE(659)] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), + [ts_builtin_sym_end] = ACTIONS(2563), + [sym_identifier] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_macro_rules_BANG] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_RBRACE] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_u8] = ACTIONS(2565), + [anon_sym_i8] = ACTIONS(2565), + [anon_sym_u16] = ACTIONS(2565), + [anon_sym_i16] = ACTIONS(2565), + [anon_sym_u32] = ACTIONS(2565), + [anon_sym_i32] = ACTIONS(2565), + [anon_sym_u64] = ACTIONS(2565), + [anon_sym_i64] = ACTIONS(2565), + [anon_sym_u128] = ACTIONS(2565), + [anon_sym_i128] = ACTIONS(2565), + [anon_sym_isize] = ACTIONS(2565), + [anon_sym_usize] = ACTIONS(2565), + [anon_sym_f32] = ACTIONS(2565), + [anon_sym_f64] = ACTIONS(2565), + [anon_sym_bool] = ACTIONS(2565), + [anon_sym_str] = ACTIONS(2565), + [anon_sym_char] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2563), + [anon_sym_POUND] = ACTIONS(2563), + [anon_sym_SQUOTE] = ACTIONS(2565), + [anon_sym_async] = ACTIONS(2565), + [anon_sym_break] = ACTIONS(2565), + [anon_sym_const] = ACTIONS(2565), + [anon_sym_continue] = ACTIONS(2565), + [anon_sym_default] = ACTIONS(2565), + [anon_sym_enum] = ACTIONS(2565), + [anon_sym_fn] = ACTIONS(2565), + [anon_sym_for] = ACTIONS(2565), + [anon_sym_gen] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(2565), + [anon_sym_impl] = ACTIONS(2565), + [anon_sym_let] = ACTIONS(2565), + [anon_sym_loop] = ACTIONS(2565), + [anon_sym_match] = ACTIONS(2565), + [anon_sym_mod] = ACTIONS(2565), + [anon_sym_pub] = ACTIONS(2565), + [anon_sym_return] = ACTIONS(2565), + [anon_sym_static] = ACTIONS(2565), + [anon_sym_struct] = ACTIONS(2565), + [anon_sym_trait] = ACTIONS(2565), + [anon_sym_type] = ACTIONS(2565), + [anon_sym_union] = ACTIONS(2565), + [anon_sym_unsafe] = ACTIONS(2565), + [anon_sym_use] = ACTIONS(2565), + [anon_sym_while] = ACTIONS(2565), + [anon_sym_extern] = ACTIONS(2565), + [anon_sym_yield] = ACTIONS(2565), + [anon_sym_move] = ACTIONS(2565), + [anon_sym_try] = ACTIONS(2565), + [sym_integer_literal] = ACTIONS(2563), + [aux_sym_string_literal_token1] = ACTIONS(2563), + [sym_char_literal] = ACTIONS(2563), + [anon_sym_true] = ACTIONS(2565), + [anon_sym_false] = ACTIONS(2565), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2565), + [sym_super] = ACTIONS(2565), + [sym_crate] = ACTIONS(2565), + [sym_metavariable] = ACTIONS(2563), + [sym__raw_string_literal_start] = ACTIONS(2563), + [sym_float_literal] = ACTIONS(2563), }, - [STATE(680)] = { - [sym_line_comment] = STATE(680), - [sym_block_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(2569), - [sym_identifier] = ACTIONS(2571), - [anon_sym_SEMI] = ACTIONS(2569), - [anon_sym_macro_rules_BANG] = ACTIONS(2569), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_LBRACK] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2569), - [anon_sym_RBRACE] = ACTIONS(2569), - [anon_sym_STAR] = ACTIONS(2569), - [anon_sym_u8] = ACTIONS(2571), - [anon_sym_i8] = ACTIONS(2571), - [anon_sym_u16] = ACTIONS(2571), - [anon_sym_i16] = ACTIONS(2571), - [anon_sym_u32] = ACTIONS(2571), - [anon_sym_i32] = ACTIONS(2571), - [anon_sym_u64] = ACTIONS(2571), - [anon_sym_i64] = ACTIONS(2571), - [anon_sym_u128] = ACTIONS(2571), - [anon_sym_i128] = ACTIONS(2571), - [anon_sym_isize] = ACTIONS(2571), - [anon_sym_usize] = ACTIONS(2571), - [anon_sym_f32] = ACTIONS(2571), - [anon_sym_f64] = ACTIONS(2571), - [anon_sym_bool] = ACTIONS(2571), - [anon_sym_str] = ACTIONS(2571), - [anon_sym_char] = ACTIONS(2571), - [anon_sym_DASH] = ACTIONS(2569), - [anon_sym_BANG] = ACTIONS(2569), - [anon_sym_AMP] = ACTIONS(2569), - [anon_sym_PIPE] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2569), - [anon_sym_DOT_DOT] = ACTIONS(2569), - [anon_sym_COLON_COLON] = ACTIONS(2569), - [anon_sym_POUND] = ACTIONS(2569), - [anon_sym_SQUOTE] = ACTIONS(2571), - [anon_sym_async] = ACTIONS(2571), - [anon_sym_break] = ACTIONS(2571), - [anon_sym_const] = ACTIONS(2571), - [anon_sym_continue] = ACTIONS(2571), - [anon_sym_default] = ACTIONS(2571), - [anon_sym_enum] = ACTIONS(2571), - [anon_sym_fn] = ACTIONS(2571), - [anon_sym_for] = ACTIONS(2571), - [anon_sym_gen] = ACTIONS(2571), - [anon_sym_if] = ACTIONS(2571), - [anon_sym_impl] = ACTIONS(2571), - [anon_sym_let] = ACTIONS(2571), - [anon_sym_loop] = ACTIONS(2571), - [anon_sym_match] = ACTIONS(2571), - [anon_sym_mod] = ACTIONS(2571), - [anon_sym_pub] = ACTIONS(2571), - [anon_sym_return] = ACTIONS(2571), - [anon_sym_static] = ACTIONS(2571), - [anon_sym_struct] = ACTIONS(2571), - [anon_sym_trait] = ACTIONS(2571), - [anon_sym_type] = ACTIONS(2571), - [anon_sym_union] = ACTIONS(2571), - [anon_sym_unsafe] = ACTIONS(2571), - [anon_sym_use] = ACTIONS(2571), - [anon_sym_while] = ACTIONS(2571), - [anon_sym_extern] = ACTIONS(2571), - [anon_sym_yield] = ACTIONS(2571), - [anon_sym_move] = ACTIONS(2571), - [anon_sym_try] = ACTIONS(2571), - [sym_integer_literal] = ACTIONS(2569), - [aux_sym_string_literal_token1] = ACTIONS(2569), - [sym_char_literal] = ACTIONS(2569), - [anon_sym_true] = ACTIONS(2571), - [anon_sym_false] = ACTIONS(2571), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2571), - [sym_super] = ACTIONS(2571), - [sym_crate] = ACTIONS(2571), - [sym_metavariable] = ACTIONS(2569), - [sym__raw_string_literal_start] = ACTIONS(2569), - [sym_float_literal] = ACTIONS(2569), + [STATE(660)] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), + [ts_builtin_sym_end] = ACTIONS(2567), + [sym_identifier] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2567), + [anon_sym_macro_rules_BANG] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_RBRACE] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2567), + [anon_sym_u8] = ACTIONS(2569), + [anon_sym_i8] = ACTIONS(2569), + [anon_sym_u16] = ACTIONS(2569), + [anon_sym_i16] = ACTIONS(2569), + [anon_sym_u32] = ACTIONS(2569), + [anon_sym_i32] = ACTIONS(2569), + [anon_sym_u64] = ACTIONS(2569), + [anon_sym_i64] = ACTIONS(2569), + [anon_sym_u128] = ACTIONS(2569), + [anon_sym_i128] = ACTIONS(2569), + [anon_sym_isize] = ACTIONS(2569), + [anon_sym_usize] = ACTIONS(2569), + [anon_sym_f32] = ACTIONS(2569), + [anon_sym_f64] = ACTIONS(2569), + [anon_sym_bool] = ACTIONS(2569), + [anon_sym_str] = ACTIONS(2569), + [anon_sym_char] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2567), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2567), + [anon_sym_DOT_DOT] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2567), + [anon_sym_POUND] = ACTIONS(2567), + [anon_sym_SQUOTE] = ACTIONS(2569), + [anon_sym_async] = ACTIONS(2569), + [anon_sym_break] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2569), + [anon_sym_default] = ACTIONS(2569), + [anon_sym_enum] = ACTIONS(2569), + [anon_sym_fn] = ACTIONS(2569), + [anon_sym_for] = ACTIONS(2569), + [anon_sym_gen] = ACTIONS(2569), + [anon_sym_if] = ACTIONS(2569), + [anon_sym_impl] = ACTIONS(2569), + [anon_sym_let] = ACTIONS(2569), + [anon_sym_loop] = ACTIONS(2569), + [anon_sym_match] = ACTIONS(2569), + [anon_sym_mod] = ACTIONS(2569), + [anon_sym_pub] = ACTIONS(2569), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_struct] = ACTIONS(2569), + [anon_sym_trait] = ACTIONS(2569), + [anon_sym_type] = ACTIONS(2569), + [anon_sym_union] = ACTIONS(2569), + [anon_sym_unsafe] = ACTIONS(2569), + [anon_sym_use] = ACTIONS(2569), + [anon_sym_while] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym_yield] = ACTIONS(2569), + [anon_sym_move] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2569), + [sym_integer_literal] = ACTIONS(2567), + [aux_sym_string_literal_token1] = ACTIONS(2567), + [sym_char_literal] = ACTIONS(2567), + [anon_sym_true] = ACTIONS(2569), + [anon_sym_false] = ACTIONS(2569), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2569), + [sym_super] = ACTIONS(2569), + [sym_crate] = ACTIONS(2569), + [sym_metavariable] = ACTIONS(2567), + [sym__raw_string_literal_start] = ACTIONS(2567), + [sym_float_literal] = ACTIONS(2567), }, - [STATE(681)] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(2573), - [sym_identifier] = ACTIONS(2575), - [anon_sym_SEMI] = ACTIONS(2573), - [anon_sym_macro_rules_BANG] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(2573), - [anon_sym_LBRACK] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2573), - [anon_sym_RBRACE] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2573), - [anon_sym_u8] = ACTIONS(2575), - [anon_sym_i8] = ACTIONS(2575), - [anon_sym_u16] = ACTIONS(2575), - [anon_sym_i16] = ACTIONS(2575), - [anon_sym_u32] = ACTIONS(2575), - [anon_sym_i32] = ACTIONS(2575), - [anon_sym_u64] = ACTIONS(2575), - [anon_sym_i64] = ACTIONS(2575), - [anon_sym_u128] = ACTIONS(2575), - [anon_sym_i128] = ACTIONS(2575), - [anon_sym_isize] = ACTIONS(2575), - [anon_sym_usize] = ACTIONS(2575), - [anon_sym_f32] = ACTIONS(2575), - [anon_sym_f64] = ACTIONS(2575), - [anon_sym_bool] = ACTIONS(2575), - [anon_sym_str] = ACTIONS(2575), - [anon_sym_char] = ACTIONS(2575), - [anon_sym_DASH] = ACTIONS(2573), - [anon_sym_BANG] = ACTIONS(2573), - [anon_sym_AMP] = ACTIONS(2573), - [anon_sym_PIPE] = ACTIONS(2573), - [anon_sym_LT] = ACTIONS(2573), - [anon_sym_DOT_DOT] = ACTIONS(2573), - [anon_sym_COLON_COLON] = ACTIONS(2573), - [anon_sym_POUND] = ACTIONS(2573), - [anon_sym_SQUOTE] = ACTIONS(2575), - [anon_sym_async] = ACTIONS(2575), - [anon_sym_break] = ACTIONS(2575), - [anon_sym_const] = ACTIONS(2575), - [anon_sym_continue] = ACTIONS(2575), - [anon_sym_default] = ACTIONS(2575), - [anon_sym_enum] = ACTIONS(2575), - [anon_sym_fn] = ACTIONS(2575), - [anon_sym_for] = ACTIONS(2575), - [anon_sym_gen] = ACTIONS(2575), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_impl] = ACTIONS(2575), - [anon_sym_let] = ACTIONS(2575), - [anon_sym_loop] = ACTIONS(2575), - [anon_sym_match] = ACTIONS(2575), - [anon_sym_mod] = ACTIONS(2575), - [anon_sym_pub] = ACTIONS(2575), - [anon_sym_return] = ACTIONS(2575), - [anon_sym_static] = ACTIONS(2575), - [anon_sym_struct] = ACTIONS(2575), - [anon_sym_trait] = ACTIONS(2575), - [anon_sym_type] = ACTIONS(2575), - [anon_sym_union] = ACTIONS(2575), - [anon_sym_unsafe] = ACTIONS(2575), - [anon_sym_use] = ACTIONS(2575), - [anon_sym_while] = ACTIONS(2575), - [anon_sym_extern] = ACTIONS(2575), - [anon_sym_yield] = ACTIONS(2575), - [anon_sym_move] = ACTIONS(2575), - [anon_sym_try] = ACTIONS(2575), - [sym_integer_literal] = ACTIONS(2573), - [aux_sym_string_literal_token1] = ACTIONS(2573), - [sym_char_literal] = ACTIONS(2573), - [anon_sym_true] = ACTIONS(2575), - [anon_sym_false] = ACTIONS(2575), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2575), - [sym_super] = ACTIONS(2575), - [sym_crate] = ACTIONS(2575), - [sym_metavariable] = ACTIONS(2573), - [sym__raw_string_literal_start] = ACTIONS(2573), - [sym_float_literal] = ACTIONS(2573), + [STATE(661)] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(2571), + [sym_identifier] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_macro_rules_BANG] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_u8] = ACTIONS(2573), + [anon_sym_i8] = ACTIONS(2573), + [anon_sym_u16] = ACTIONS(2573), + [anon_sym_i16] = ACTIONS(2573), + [anon_sym_u32] = ACTIONS(2573), + [anon_sym_i32] = ACTIONS(2573), + [anon_sym_u64] = ACTIONS(2573), + [anon_sym_i64] = ACTIONS(2573), + [anon_sym_u128] = ACTIONS(2573), + [anon_sym_i128] = ACTIONS(2573), + [anon_sym_isize] = ACTIONS(2573), + [anon_sym_usize] = ACTIONS(2573), + [anon_sym_f32] = ACTIONS(2573), + [anon_sym_f64] = ACTIONS(2573), + [anon_sym_bool] = ACTIONS(2573), + [anon_sym_str] = ACTIONS(2573), + [anon_sym_char] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_POUND] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2573), + [anon_sym_async] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_default] = ACTIONS(2573), + [anon_sym_enum] = ACTIONS(2573), + [anon_sym_fn] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_gen] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_impl] = ACTIONS(2573), + [anon_sym_let] = ACTIONS(2573), + [anon_sym_loop] = ACTIONS(2573), + [anon_sym_match] = ACTIONS(2573), + [anon_sym_mod] = ACTIONS(2573), + [anon_sym_pub] = ACTIONS(2573), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_static] = ACTIONS(2573), + [anon_sym_struct] = ACTIONS(2573), + [anon_sym_trait] = ACTIONS(2573), + [anon_sym_type] = ACTIONS(2573), + [anon_sym_union] = ACTIONS(2573), + [anon_sym_unsafe] = ACTIONS(2573), + [anon_sym_use] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_extern] = ACTIONS(2573), + [anon_sym_yield] = ACTIONS(2573), + [anon_sym_move] = ACTIONS(2573), + [anon_sym_try] = ACTIONS(2573), + [sym_integer_literal] = ACTIONS(2571), + [aux_sym_string_literal_token1] = ACTIONS(2571), + [sym_char_literal] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2573), + [anon_sym_false] = ACTIONS(2573), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2573), + [sym_super] = ACTIONS(2573), + [sym_crate] = ACTIONS(2573), + [sym_metavariable] = ACTIONS(2571), + [sym__raw_string_literal_start] = ACTIONS(2571), + [sym_float_literal] = ACTIONS(2571), }, - [STATE(682)] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2577), - [sym_identifier] = ACTIONS(2579), - [anon_sym_SEMI] = ACTIONS(2577), - [anon_sym_macro_rules_BANG] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(2577), - [anon_sym_LBRACK] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2577), - [anon_sym_RBRACE] = ACTIONS(2577), - [anon_sym_STAR] = ACTIONS(2577), - [anon_sym_u8] = ACTIONS(2579), - [anon_sym_i8] = ACTIONS(2579), - [anon_sym_u16] = ACTIONS(2579), - [anon_sym_i16] = ACTIONS(2579), - [anon_sym_u32] = ACTIONS(2579), - [anon_sym_i32] = ACTIONS(2579), - [anon_sym_u64] = ACTIONS(2579), - [anon_sym_i64] = ACTIONS(2579), - [anon_sym_u128] = ACTIONS(2579), - [anon_sym_i128] = ACTIONS(2579), - [anon_sym_isize] = ACTIONS(2579), - [anon_sym_usize] = ACTIONS(2579), - [anon_sym_f32] = ACTIONS(2579), - [anon_sym_f64] = ACTIONS(2579), - [anon_sym_bool] = ACTIONS(2579), - [anon_sym_str] = ACTIONS(2579), - [anon_sym_char] = ACTIONS(2579), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_BANG] = ACTIONS(2577), - [anon_sym_AMP] = ACTIONS(2577), - [anon_sym_PIPE] = ACTIONS(2577), - [anon_sym_LT] = ACTIONS(2577), - [anon_sym_DOT_DOT] = ACTIONS(2577), - [anon_sym_COLON_COLON] = ACTIONS(2577), - [anon_sym_POUND] = ACTIONS(2577), - [anon_sym_SQUOTE] = ACTIONS(2579), - [anon_sym_async] = ACTIONS(2579), - [anon_sym_break] = ACTIONS(2579), - [anon_sym_const] = ACTIONS(2579), - [anon_sym_continue] = ACTIONS(2579), - [anon_sym_default] = ACTIONS(2579), - [anon_sym_enum] = ACTIONS(2579), - [anon_sym_fn] = ACTIONS(2579), - [anon_sym_for] = ACTIONS(2579), - [anon_sym_gen] = ACTIONS(2579), - [anon_sym_if] = ACTIONS(2579), - [anon_sym_impl] = ACTIONS(2579), - [anon_sym_let] = ACTIONS(2579), - [anon_sym_loop] = ACTIONS(2579), - [anon_sym_match] = ACTIONS(2579), - [anon_sym_mod] = ACTIONS(2579), - [anon_sym_pub] = ACTIONS(2579), - [anon_sym_return] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2579), - [anon_sym_struct] = ACTIONS(2579), - [anon_sym_trait] = ACTIONS(2579), - [anon_sym_type] = ACTIONS(2579), - [anon_sym_union] = ACTIONS(2579), - [anon_sym_unsafe] = ACTIONS(2579), - [anon_sym_use] = ACTIONS(2579), - [anon_sym_while] = ACTIONS(2579), - [anon_sym_extern] = ACTIONS(2579), - [anon_sym_yield] = ACTIONS(2579), - [anon_sym_move] = ACTIONS(2579), - [anon_sym_try] = ACTIONS(2579), - [sym_integer_literal] = ACTIONS(2577), - [aux_sym_string_literal_token1] = ACTIONS(2577), - [sym_char_literal] = ACTIONS(2577), - [anon_sym_true] = ACTIONS(2579), - [anon_sym_false] = ACTIONS(2579), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2579), - [sym_super] = ACTIONS(2579), - [sym_crate] = ACTIONS(2579), - [sym_metavariable] = ACTIONS(2577), - [sym__raw_string_literal_start] = ACTIONS(2577), - [sym_float_literal] = ACTIONS(2577), + [STATE(662)] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), + [ts_builtin_sym_end] = ACTIONS(2575), + [sym_identifier] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_macro_rules_BANG] = ACTIONS(2575), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_u8] = ACTIONS(2577), + [anon_sym_i8] = ACTIONS(2577), + [anon_sym_u16] = ACTIONS(2577), + [anon_sym_i16] = ACTIONS(2577), + [anon_sym_u32] = ACTIONS(2577), + [anon_sym_i32] = ACTIONS(2577), + [anon_sym_u64] = ACTIONS(2577), + [anon_sym_i64] = ACTIONS(2577), + [anon_sym_u128] = ACTIONS(2577), + [anon_sym_i128] = ACTIONS(2577), + [anon_sym_isize] = ACTIONS(2577), + [anon_sym_usize] = ACTIONS(2577), + [anon_sym_f32] = ACTIONS(2577), + [anon_sym_f64] = ACTIONS(2577), + [anon_sym_bool] = ACTIONS(2577), + [anon_sym_str] = ACTIONS(2577), + [anon_sym_char] = ACTIONS(2577), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_DOT_DOT] = ACTIONS(2575), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_POUND] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2577), + [anon_sym_async] = ACTIONS(2577), + [anon_sym_break] = ACTIONS(2577), + [anon_sym_const] = ACTIONS(2577), + [anon_sym_continue] = ACTIONS(2577), + [anon_sym_default] = ACTIONS(2577), + [anon_sym_enum] = ACTIONS(2577), + [anon_sym_fn] = ACTIONS(2577), + [anon_sym_for] = ACTIONS(2577), + [anon_sym_gen] = ACTIONS(2577), + [anon_sym_if] = ACTIONS(2577), + [anon_sym_impl] = ACTIONS(2577), + [anon_sym_let] = ACTIONS(2577), + [anon_sym_loop] = ACTIONS(2577), + [anon_sym_match] = ACTIONS(2577), + [anon_sym_mod] = ACTIONS(2577), + [anon_sym_pub] = ACTIONS(2577), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2577), + [anon_sym_struct] = ACTIONS(2577), + [anon_sym_trait] = ACTIONS(2577), + [anon_sym_type] = ACTIONS(2577), + [anon_sym_union] = ACTIONS(2577), + [anon_sym_unsafe] = ACTIONS(2577), + [anon_sym_use] = ACTIONS(2577), + [anon_sym_while] = ACTIONS(2577), + [anon_sym_extern] = ACTIONS(2577), + [anon_sym_yield] = ACTIONS(2577), + [anon_sym_move] = ACTIONS(2577), + [anon_sym_try] = ACTIONS(2577), + [sym_integer_literal] = ACTIONS(2575), + [aux_sym_string_literal_token1] = ACTIONS(2575), + [sym_char_literal] = ACTIONS(2575), + [anon_sym_true] = ACTIONS(2577), + [anon_sym_false] = ACTIONS(2577), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2577), + [sym_super] = ACTIONS(2577), + [sym_crate] = ACTIONS(2577), + [sym_metavariable] = ACTIONS(2575), + [sym__raw_string_literal_start] = ACTIONS(2575), + [sym_float_literal] = ACTIONS(2575), }, - [STATE(683)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym_closure_expression] = STATE(3002), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2566), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(2581), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(2583), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [STATE(663)] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), + [ts_builtin_sym_end] = ACTIONS(2579), + [sym_identifier] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_macro_rules_BANG] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_u8] = ACTIONS(2581), + [anon_sym_i8] = ACTIONS(2581), + [anon_sym_u16] = ACTIONS(2581), + [anon_sym_i16] = ACTIONS(2581), + [anon_sym_u32] = ACTIONS(2581), + [anon_sym_i32] = ACTIONS(2581), + [anon_sym_u64] = ACTIONS(2581), + [anon_sym_i64] = ACTIONS(2581), + [anon_sym_u128] = ACTIONS(2581), + [anon_sym_i128] = ACTIONS(2581), + [anon_sym_isize] = ACTIONS(2581), + [anon_sym_usize] = ACTIONS(2581), + [anon_sym_f32] = ACTIONS(2581), + [anon_sym_f64] = ACTIONS(2581), + [anon_sym_bool] = ACTIONS(2581), + [anon_sym_str] = ACTIONS(2581), + [anon_sym_char] = ACTIONS(2581), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_POUND] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2581), + [anon_sym_async] = ACTIONS(2581), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_const] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_default] = ACTIONS(2581), + [anon_sym_enum] = ACTIONS(2581), + [anon_sym_fn] = ACTIONS(2581), + [anon_sym_for] = ACTIONS(2581), + [anon_sym_gen] = ACTIONS(2581), + [anon_sym_if] = ACTIONS(2581), + [anon_sym_impl] = ACTIONS(2581), + [anon_sym_let] = ACTIONS(2581), + [anon_sym_loop] = ACTIONS(2581), + [anon_sym_match] = ACTIONS(2581), + [anon_sym_mod] = ACTIONS(2581), + [anon_sym_pub] = ACTIONS(2581), + [anon_sym_return] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_struct] = ACTIONS(2581), + [anon_sym_trait] = ACTIONS(2581), + [anon_sym_type] = ACTIONS(2581), + [anon_sym_union] = ACTIONS(2581), + [anon_sym_unsafe] = ACTIONS(2581), + [anon_sym_use] = ACTIONS(2581), + [anon_sym_while] = ACTIONS(2581), + [anon_sym_extern] = ACTIONS(2581), + [anon_sym_yield] = ACTIONS(2581), + [anon_sym_move] = ACTIONS(2581), + [anon_sym_try] = ACTIONS(2581), + [sym_integer_literal] = ACTIONS(2579), + [aux_sym_string_literal_token1] = ACTIONS(2579), + [sym_char_literal] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2581), + [anon_sym_false] = ACTIONS(2581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2581), + [sym_super] = ACTIONS(2581), + [sym_crate] = ACTIONS(2581), + [sym_metavariable] = ACTIONS(2579), + [sym__raw_string_literal_start] = ACTIONS(2579), + [sym_float_literal] = ACTIONS(2579), }, - [STATE(684)] = { - [sym_empty_statement] = STATE(1314), - [sym_macro_definition] = STATE(1314), - [sym_attribute_item] = STATE(1314), - [sym_inner_attribute_item] = STATE(1314), - [sym_mod_item] = STATE(1314), - [sym_foreign_mod_item] = STATE(1314), - [sym_struct_item] = STATE(1314), - [sym_union_item] = STATE(1314), - [sym_enum_item] = STATE(1314), - [sym_extern_crate_declaration] = STATE(1314), - [sym_const_item] = STATE(1314), - [sym_static_item] = STATE(1314), - [sym_type_item] = STATE(1314), - [sym_function_item] = STATE(1314), - [sym_function_signature_item] = STATE(1314), - [sym_function_modifiers] = STATE(3640), - [sym_impl_item] = STATE(1314), - [sym_trait_item] = STATE(1314), - [sym_associated_type] = STATE(1314), - [sym_let_declaration] = STATE(1314), - [sym_use_declaration] = STATE(1314), - [sym_extern_modifier] = STATE(2199), - [sym_visibility_modifier] = STATE(1957), - [sym_bracketed_type] = STATE(3370), - [sym_generic_type_with_turbofish] = STATE(3395), - [sym_macro_invocation] = STATE(1314), - [sym_scoped_identifier] = STATE(3297), - [sym_line_comment] = STATE(684), - [sym_block_comment] = STATE(684), - [aux_sym_declaration_list_repeat1] = STATE(689), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_macro_rules_BANG] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_u8] = ACTIONS(2241), - [anon_sym_i8] = ACTIONS(2241), - [anon_sym_u16] = ACTIONS(2241), - [anon_sym_i16] = ACTIONS(2241), - [anon_sym_u32] = ACTIONS(2241), - [anon_sym_i32] = ACTIONS(2241), - [anon_sym_u64] = ACTIONS(2241), - [anon_sym_i64] = ACTIONS(2241), - [anon_sym_u128] = ACTIONS(2241), - [anon_sym_i128] = ACTIONS(2241), - [anon_sym_isize] = ACTIONS(2241), - [anon_sym_usize] = ACTIONS(2241), - [anon_sym_f32] = ACTIONS(2241), - [anon_sym_f64] = ACTIONS(2241), - [anon_sym_bool] = ACTIONS(2241), - [anon_sym_str] = ACTIONS(2241), - [anon_sym_char] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(2247), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2251), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_gen] = ACTIONS(2255), - [anon_sym_impl] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_mod] = ACTIONS(2261), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2265), - [anon_sym_trait] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2279), - [sym_super] = ACTIONS(2279), - [sym_crate] = ACTIONS(2281), - [sym_metavariable] = ACTIONS(2283), + [STATE(664)] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), + [ts_builtin_sym_end] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2585), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_macro_rules_BANG] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_u8] = ACTIONS(2585), + [anon_sym_i8] = ACTIONS(2585), + [anon_sym_u16] = ACTIONS(2585), + [anon_sym_i16] = ACTIONS(2585), + [anon_sym_u32] = ACTIONS(2585), + [anon_sym_i32] = ACTIONS(2585), + [anon_sym_u64] = ACTIONS(2585), + [anon_sym_i64] = ACTIONS(2585), + [anon_sym_u128] = ACTIONS(2585), + [anon_sym_i128] = ACTIONS(2585), + [anon_sym_isize] = ACTIONS(2585), + [anon_sym_usize] = ACTIONS(2585), + [anon_sym_f32] = ACTIONS(2585), + [anon_sym_f64] = ACTIONS(2585), + [anon_sym_bool] = ACTIONS(2585), + [anon_sym_str] = ACTIONS(2585), + [anon_sym_char] = ACTIONS(2585), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_DOT_DOT] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2583), + [anon_sym_POUND] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2585), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_break] = ACTIONS(2585), + [anon_sym_const] = ACTIONS(2585), + [anon_sym_continue] = ACTIONS(2585), + [anon_sym_default] = ACTIONS(2585), + [anon_sym_enum] = ACTIONS(2585), + [anon_sym_fn] = ACTIONS(2585), + [anon_sym_for] = ACTIONS(2585), + [anon_sym_gen] = ACTIONS(2585), + [anon_sym_if] = ACTIONS(2585), + [anon_sym_impl] = ACTIONS(2585), + [anon_sym_let] = ACTIONS(2585), + [anon_sym_loop] = ACTIONS(2585), + [anon_sym_match] = ACTIONS(2585), + [anon_sym_mod] = ACTIONS(2585), + [anon_sym_pub] = ACTIONS(2585), + [anon_sym_return] = ACTIONS(2585), + [anon_sym_static] = ACTIONS(2585), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_trait] = ACTIONS(2585), + [anon_sym_type] = ACTIONS(2585), + [anon_sym_union] = ACTIONS(2585), + [anon_sym_unsafe] = ACTIONS(2585), + [anon_sym_use] = ACTIONS(2585), + [anon_sym_while] = ACTIONS(2585), + [anon_sym_extern] = ACTIONS(2585), + [anon_sym_yield] = ACTIONS(2585), + [anon_sym_move] = ACTIONS(2585), + [anon_sym_try] = ACTIONS(2585), + [sym_integer_literal] = ACTIONS(2583), + [aux_sym_string_literal_token1] = ACTIONS(2583), + [sym_char_literal] = ACTIONS(2583), + [anon_sym_true] = ACTIONS(2585), + [anon_sym_false] = ACTIONS(2585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2585), + [sym_super] = ACTIONS(2585), + [sym_crate] = ACTIONS(2585), + [sym_metavariable] = ACTIONS(2583), + [sym__raw_string_literal_start] = ACTIONS(2583), + [sym_float_literal] = ACTIONS(2583), }, - [STATE(685)] = { - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), + [STATE(665)] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), [ts_builtin_sym_end] = ACTIONS(2587), [sym_identifier] = ACTIONS(2589), [anon_sym_SEMI] = ACTIONS(2587), @@ -86443,9 +84751,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2587), [sym_float_literal] = ACTIONS(2587), }, - [STATE(686)] = { - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), + [STATE(666)] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), [ts_builtin_sym_end] = ACTIONS(2591), [sym_identifier] = ACTIONS(2593), [anon_sym_SEMI] = ACTIONS(2591), @@ -86524,9 +84832,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2591), [sym_float_literal] = ACTIONS(2591), }, - [STATE(687)] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), + [STATE(667)] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), [ts_builtin_sym_end] = ACTIONS(2595), [sym_identifier] = ACTIONS(2597), [anon_sym_SEMI] = ACTIONS(2595), @@ -86605,9 +84913,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2595), [sym_float_literal] = ACTIONS(2595), }, - [STATE(688)] = { - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), + [STATE(668)] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), [ts_builtin_sym_end] = ACTIONS(2599), [sym_identifier] = ACTIONS(2601), [anon_sym_SEMI] = ACTIONS(2599), @@ -86686,495 +84994,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2599), [sym_float_literal] = ACTIONS(2599), }, - [STATE(689)] = { - [sym_empty_statement] = STATE(1314), - [sym_macro_definition] = STATE(1314), - [sym_attribute_item] = STATE(1314), - [sym_inner_attribute_item] = STATE(1314), - [sym_mod_item] = STATE(1314), - [sym_foreign_mod_item] = STATE(1314), - [sym_struct_item] = STATE(1314), - [sym_union_item] = STATE(1314), - [sym_enum_item] = STATE(1314), - [sym_extern_crate_declaration] = STATE(1314), - [sym_const_item] = STATE(1314), - [sym_static_item] = STATE(1314), - [sym_type_item] = STATE(1314), - [sym_function_item] = STATE(1314), - [sym_function_signature_item] = STATE(1314), - [sym_function_modifiers] = STATE(3640), - [sym_impl_item] = STATE(1314), - [sym_trait_item] = STATE(1314), - [sym_associated_type] = STATE(1314), - [sym_let_declaration] = STATE(1314), - [sym_use_declaration] = STATE(1314), - [sym_extern_modifier] = STATE(2199), - [sym_visibility_modifier] = STATE(1957), - [sym_bracketed_type] = STATE(3370), - [sym_generic_type_with_turbofish] = STATE(3395), - [sym_macro_invocation] = STATE(1314), - [sym_scoped_identifier] = STATE(3297), - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), - [aux_sym_declaration_list_repeat1] = STATE(760), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_macro_rules_BANG] = ACTIONS(2237), + [STATE(669)] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(2603), + [sym_identifier] = ACTIONS(2605), + [anon_sym_SEMI] = ACTIONS(2603), + [anon_sym_macro_rules_BANG] = ACTIONS(2603), + [anon_sym_LPAREN] = ACTIONS(2603), + [anon_sym_LBRACK] = ACTIONS(2603), + [anon_sym_LBRACE] = ACTIONS(2603), [anon_sym_RBRACE] = ACTIONS(2603), - [anon_sym_u8] = ACTIONS(2241), - [anon_sym_i8] = ACTIONS(2241), - [anon_sym_u16] = ACTIONS(2241), - [anon_sym_i16] = ACTIONS(2241), - [anon_sym_u32] = ACTIONS(2241), - [anon_sym_i32] = ACTIONS(2241), - [anon_sym_u64] = ACTIONS(2241), - [anon_sym_i64] = ACTIONS(2241), - [anon_sym_u128] = ACTIONS(2241), - [anon_sym_i128] = ACTIONS(2241), - [anon_sym_isize] = ACTIONS(2241), - [anon_sym_usize] = ACTIONS(2241), - [anon_sym_f32] = ACTIONS(2241), - [anon_sym_f64] = ACTIONS(2241), - [anon_sym_bool] = ACTIONS(2241), - [anon_sym_str] = ACTIONS(2241), - [anon_sym_char] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2603), + [anon_sym_u8] = ACTIONS(2605), + [anon_sym_i8] = ACTIONS(2605), + [anon_sym_u16] = ACTIONS(2605), + [anon_sym_i16] = ACTIONS(2605), + [anon_sym_u32] = ACTIONS(2605), + [anon_sym_i32] = ACTIONS(2605), + [anon_sym_u64] = ACTIONS(2605), + [anon_sym_i64] = ACTIONS(2605), + [anon_sym_u128] = ACTIONS(2605), + [anon_sym_i128] = ACTIONS(2605), + [anon_sym_isize] = ACTIONS(2605), + [anon_sym_usize] = ACTIONS(2605), + [anon_sym_f32] = ACTIONS(2605), + [anon_sym_f64] = ACTIONS(2605), + [anon_sym_bool] = ACTIONS(2605), + [anon_sym_str] = ACTIONS(2605), + [anon_sym_char] = ACTIONS(2605), + [anon_sym_DASH] = ACTIONS(2603), + [anon_sym_BANG] = ACTIONS(2603), + [anon_sym_AMP] = ACTIONS(2603), + [anon_sym_PIPE] = ACTIONS(2603), + [anon_sym_LT] = ACTIONS(2603), + [anon_sym_DOT_DOT] = ACTIONS(2603), + [anon_sym_COLON_COLON] = ACTIONS(2603), + [anon_sym_POUND] = ACTIONS(2603), + [anon_sym_SQUOTE] = ACTIONS(2605), + [anon_sym_async] = ACTIONS(2605), + [anon_sym_break] = ACTIONS(2605), + [anon_sym_const] = ACTIONS(2605), + [anon_sym_continue] = ACTIONS(2605), + [anon_sym_default] = ACTIONS(2605), + [anon_sym_enum] = ACTIONS(2605), + [anon_sym_fn] = ACTIONS(2605), + [anon_sym_for] = ACTIONS(2605), + [anon_sym_gen] = ACTIONS(2605), + [anon_sym_if] = ACTIONS(2605), + [anon_sym_impl] = ACTIONS(2605), + [anon_sym_let] = ACTIONS(2605), + [anon_sym_loop] = ACTIONS(2605), + [anon_sym_match] = ACTIONS(2605), + [anon_sym_mod] = ACTIONS(2605), + [anon_sym_pub] = ACTIONS(2605), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_struct] = ACTIONS(2605), + [anon_sym_trait] = ACTIONS(2605), + [anon_sym_type] = ACTIONS(2605), + [anon_sym_union] = ACTIONS(2605), + [anon_sym_unsafe] = ACTIONS(2605), + [anon_sym_use] = ACTIONS(2605), + [anon_sym_while] = ACTIONS(2605), + [anon_sym_extern] = ACTIONS(2605), + [anon_sym_yield] = ACTIONS(2605), + [anon_sym_move] = ACTIONS(2605), + [anon_sym_try] = ACTIONS(2605), + [sym_integer_literal] = ACTIONS(2603), + [aux_sym_string_literal_token1] = ACTIONS(2603), + [sym_char_literal] = ACTIONS(2603), + [anon_sym_true] = ACTIONS(2605), + [anon_sym_false] = ACTIONS(2605), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2605), + [sym_super] = ACTIONS(2605), + [sym_crate] = ACTIONS(2605), + [sym_metavariable] = ACTIONS(2603), + [sym__raw_string_literal_start] = ACTIONS(2603), + [sym_float_literal] = ACTIONS(2603), + }, + [STATE(670)] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), + [ts_builtin_sym_end] = ACTIONS(2607), + [sym_identifier] = ACTIONS(2609), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym_macro_rules_BANG] = ACTIONS(2607), + [anon_sym_LPAREN] = ACTIONS(2607), + [anon_sym_LBRACK] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(2607), + [anon_sym_RBRACE] = ACTIONS(2607), + [anon_sym_STAR] = ACTIONS(2607), + [anon_sym_u8] = ACTIONS(2609), + [anon_sym_i8] = ACTIONS(2609), + [anon_sym_u16] = ACTIONS(2609), + [anon_sym_i16] = ACTIONS(2609), + [anon_sym_u32] = ACTIONS(2609), + [anon_sym_i32] = ACTIONS(2609), + [anon_sym_u64] = ACTIONS(2609), + [anon_sym_i64] = ACTIONS(2609), + [anon_sym_u128] = ACTIONS(2609), + [anon_sym_i128] = ACTIONS(2609), + [anon_sym_isize] = ACTIONS(2609), + [anon_sym_usize] = ACTIONS(2609), + [anon_sym_f32] = ACTIONS(2609), + [anon_sym_f64] = ACTIONS(2609), + [anon_sym_bool] = ACTIONS(2609), + [anon_sym_str] = ACTIONS(2609), + [anon_sym_char] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2607), + [anon_sym_BANG] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2607), + [anon_sym_PIPE] = ACTIONS(2607), + [anon_sym_LT] = ACTIONS(2607), + [anon_sym_DOT_DOT] = ACTIONS(2607), + [anon_sym_COLON_COLON] = ACTIONS(2607), + [anon_sym_POUND] = ACTIONS(2607), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_async] = ACTIONS(2609), + [anon_sym_break] = ACTIONS(2609), + [anon_sym_const] = ACTIONS(2609), + [anon_sym_continue] = ACTIONS(2609), + [anon_sym_default] = ACTIONS(2609), + [anon_sym_enum] = ACTIONS(2609), + [anon_sym_fn] = ACTIONS(2609), + [anon_sym_for] = ACTIONS(2609), + [anon_sym_gen] = ACTIONS(2609), + [anon_sym_if] = ACTIONS(2609), + [anon_sym_impl] = ACTIONS(2609), + [anon_sym_let] = ACTIONS(2609), + [anon_sym_loop] = ACTIONS(2609), + [anon_sym_match] = ACTIONS(2609), + [anon_sym_mod] = ACTIONS(2609), + [anon_sym_pub] = ACTIONS(2609), + [anon_sym_return] = ACTIONS(2609), + [anon_sym_static] = ACTIONS(2609), + [anon_sym_struct] = ACTIONS(2609), + [anon_sym_trait] = ACTIONS(2609), + [anon_sym_type] = ACTIONS(2609), + [anon_sym_union] = ACTIONS(2609), + [anon_sym_unsafe] = ACTIONS(2609), + [anon_sym_use] = ACTIONS(2609), + [anon_sym_while] = ACTIONS(2609), + [anon_sym_extern] = ACTIONS(2609), + [anon_sym_yield] = ACTIONS(2609), + [anon_sym_move] = ACTIONS(2609), + [anon_sym_try] = ACTIONS(2609), + [sym_integer_literal] = ACTIONS(2607), + [aux_sym_string_literal_token1] = ACTIONS(2607), + [sym_char_literal] = ACTIONS(2607), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2609), + [sym_super] = ACTIONS(2609), + [sym_crate] = ACTIONS(2609), + [sym_metavariable] = ACTIONS(2607), + [sym__raw_string_literal_start] = ACTIONS(2607), + [sym_float_literal] = ACTIONS(2607), + }, + [STATE(671)] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), + [ts_builtin_sym_end] = ACTIONS(2611), + [sym_identifier] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2611), + [anon_sym_macro_rules_BANG] = ACTIONS(2611), + [anon_sym_LPAREN] = ACTIONS(2611), + [anon_sym_LBRACK] = ACTIONS(2611), + [anon_sym_LBRACE] = ACTIONS(2611), + [anon_sym_RBRACE] = ACTIONS(2611), + [anon_sym_STAR] = ACTIONS(2611), + [anon_sym_u8] = ACTIONS(2613), + [anon_sym_i8] = ACTIONS(2613), + [anon_sym_u16] = ACTIONS(2613), + [anon_sym_i16] = ACTIONS(2613), + [anon_sym_u32] = ACTIONS(2613), + [anon_sym_i32] = ACTIONS(2613), + [anon_sym_u64] = ACTIONS(2613), + [anon_sym_i64] = ACTIONS(2613), + [anon_sym_u128] = ACTIONS(2613), + [anon_sym_i128] = ACTIONS(2613), + [anon_sym_isize] = ACTIONS(2613), + [anon_sym_usize] = ACTIONS(2613), + [anon_sym_f32] = ACTIONS(2613), + [anon_sym_f64] = ACTIONS(2613), + [anon_sym_bool] = ACTIONS(2613), + [anon_sym_str] = ACTIONS(2613), + [anon_sym_char] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2611), + [anon_sym_BANG] = ACTIONS(2611), + [anon_sym_AMP] = ACTIONS(2611), + [anon_sym_PIPE] = ACTIONS(2611), + [anon_sym_LT] = ACTIONS(2611), + [anon_sym_DOT_DOT] = ACTIONS(2611), + [anon_sym_COLON_COLON] = ACTIONS(2611), + [anon_sym_POUND] = ACTIONS(2611), + [anon_sym_SQUOTE] = ACTIONS(2613), + [anon_sym_async] = ACTIONS(2613), + [anon_sym_break] = ACTIONS(2613), + [anon_sym_const] = ACTIONS(2613), + [anon_sym_continue] = ACTIONS(2613), + [anon_sym_default] = ACTIONS(2613), + [anon_sym_enum] = ACTIONS(2613), + [anon_sym_fn] = ACTIONS(2613), + [anon_sym_for] = ACTIONS(2613), + [anon_sym_gen] = ACTIONS(2613), + [anon_sym_if] = ACTIONS(2613), + [anon_sym_impl] = ACTIONS(2613), + [anon_sym_let] = ACTIONS(2613), + [anon_sym_loop] = ACTIONS(2613), + [anon_sym_match] = ACTIONS(2613), + [anon_sym_mod] = ACTIONS(2613), + [anon_sym_pub] = ACTIONS(2613), + [anon_sym_return] = ACTIONS(2613), + [anon_sym_static] = ACTIONS(2613), + [anon_sym_struct] = ACTIONS(2613), + [anon_sym_trait] = ACTIONS(2613), + [anon_sym_type] = ACTIONS(2613), + [anon_sym_union] = ACTIONS(2613), + [anon_sym_unsafe] = ACTIONS(2613), + [anon_sym_use] = ACTIONS(2613), + [anon_sym_while] = ACTIONS(2613), + [anon_sym_extern] = ACTIONS(2613), + [anon_sym_yield] = ACTIONS(2613), + [anon_sym_move] = ACTIONS(2613), + [anon_sym_try] = ACTIONS(2613), + [sym_integer_literal] = ACTIONS(2611), + [aux_sym_string_literal_token1] = ACTIONS(2611), + [sym_char_literal] = ACTIONS(2611), + [anon_sym_true] = ACTIONS(2613), + [anon_sym_false] = ACTIONS(2613), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2613), + [sym_super] = ACTIONS(2613), + [sym_crate] = ACTIONS(2613), + [sym_metavariable] = ACTIONS(2611), + [sym__raw_string_literal_start] = ACTIONS(2611), + [sym_float_literal] = ACTIONS(2611), + }, + [STATE(672)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym_closure_expression] = STATE(2970), + [sym_closure_parameters] = STATE(226), + [sym__pattern] = STATE(2687), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(2247), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2251), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_gen] = ACTIONS(2255), - [anon_sym_impl] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_mod] = ACTIONS(2261), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2265), - [anon_sym_trait] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(2277), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2279), - [sym_super] = ACTIONS(2279), - [sym_crate] = ACTIONS(2281), - [sym_metavariable] = ACTIONS(2283), - }, - [STATE(690)] = { - [sym_line_comment] = STATE(690), - [sym_block_comment] = STATE(690), - [ts_builtin_sym_end] = ACTIONS(2605), - [sym_identifier] = ACTIONS(2607), - [anon_sym_SEMI] = ACTIONS(2605), - [anon_sym_macro_rules_BANG] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_LBRACK] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2605), - [anon_sym_RBRACE] = ACTIONS(2605), - [anon_sym_STAR] = ACTIONS(2605), - [anon_sym_u8] = ACTIONS(2607), - [anon_sym_i8] = ACTIONS(2607), - [anon_sym_u16] = ACTIONS(2607), - [anon_sym_i16] = ACTIONS(2607), - [anon_sym_u32] = ACTIONS(2607), - [anon_sym_i32] = ACTIONS(2607), - [anon_sym_u64] = ACTIONS(2607), - [anon_sym_i64] = ACTIONS(2607), - [anon_sym_u128] = ACTIONS(2607), - [anon_sym_i128] = ACTIONS(2607), - [anon_sym_isize] = ACTIONS(2607), - [anon_sym_usize] = ACTIONS(2607), - [anon_sym_f32] = ACTIONS(2607), - [anon_sym_f64] = ACTIONS(2607), - [anon_sym_bool] = ACTIONS(2607), - [anon_sym_str] = ACTIONS(2607), - [anon_sym_char] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2605), - [anon_sym_BANG] = ACTIONS(2605), - [anon_sym_AMP] = ACTIONS(2605), - [anon_sym_PIPE] = ACTIONS(2605), - [anon_sym_LT] = ACTIONS(2605), - [anon_sym_DOT_DOT] = ACTIONS(2605), - [anon_sym_COLON_COLON] = ACTIONS(2605), - [anon_sym_POUND] = ACTIONS(2605), - [anon_sym_SQUOTE] = ACTIONS(2607), - [anon_sym_async] = ACTIONS(2607), - [anon_sym_break] = ACTIONS(2607), - [anon_sym_const] = ACTIONS(2607), - [anon_sym_continue] = ACTIONS(2607), - [anon_sym_default] = ACTIONS(2607), - [anon_sym_enum] = ACTIONS(2607), - [anon_sym_fn] = ACTIONS(2607), - [anon_sym_for] = ACTIONS(2607), - [anon_sym_gen] = ACTIONS(2607), - [anon_sym_if] = ACTIONS(2607), - [anon_sym_impl] = ACTIONS(2607), - [anon_sym_let] = ACTIONS(2607), - [anon_sym_loop] = ACTIONS(2607), - [anon_sym_match] = ACTIONS(2607), - [anon_sym_mod] = ACTIONS(2607), - [anon_sym_pub] = ACTIONS(2607), - [anon_sym_return] = ACTIONS(2607), - [anon_sym_static] = ACTIONS(2607), - [anon_sym_struct] = ACTIONS(2607), - [anon_sym_trait] = ACTIONS(2607), - [anon_sym_type] = ACTIONS(2607), - [anon_sym_union] = ACTIONS(2607), - [anon_sym_unsafe] = ACTIONS(2607), - [anon_sym_use] = ACTIONS(2607), - [anon_sym_while] = ACTIONS(2607), - [anon_sym_extern] = ACTIONS(2607), - [anon_sym_yield] = ACTIONS(2607), - [anon_sym_move] = ACTIONS(2607), - [anon_sym_try] = ACTIONS(2607), - [sym_integer_literal] = ACTIONS(2605), - [aux_sym_string_literal_token1] = ACTIONS(2605), - [sym_char_literal] = ACTIONS(2605), - [anon_sym_true] = ACTIONS(2607), - [anon_sym_false] = ACTIONS(2607), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2607), - [sym_super] = ACTIONS(2607), - [sym_crate] = ACTIONS(2607), - [sym_metavariable] = ACTIONS(2605), - [sym__raw_string_literal_start] = ACTIONS(2605), - [sym_float_literal] = ACTIONS(2605), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, - [STATE(691)] = { - [sym_line_comment] = STATE(691), - [sym_block_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(1507), - [sym_identifier] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_macro_rules_BANG] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1507), - [anon_sym_RBRACE] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_u8] = ACTIONS(1509), - [anon_sym_i8] = ACTIONS(1509), - [anon_sym_u16] = ACTIONS(1509), - [anon_sym_i16] = ACTIONS(1509), - [anon_sym_u32] = ACTIONS(1509), - [anon_sym_i32] = ACTIONS(1509), - [anon_sym_u64] = ACTIONS(1509), - [anon_sym_i64] = ACTIONS(1509), - [anon_sym_u128] = ACTIONS(1509), - [anon_sym_i128] = ACTIONS(1509), - [anon_sym_isize] = ACTIONS(1509), - [anon_sym_usize] = ACTIONS(1509), - [anon_sym_f32] = ACTIONS(1509), - [anon_sym_f64] = ACTIONS(1509), - [anon_sym_bool] = ACTIONS(1509), - [anon_sym_str] = ACTIONS(1509), - [anon_sym_char] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_DOT_DOT] = ACTIONS(1507), - [anon_sym_COLON_COLON] = ACTIONS(1507), - [anon_sym_POUND] = ACTIONS(1507), - [anon_sym_SQUOTE] = ACTIONS(1509), - [anon_sym_async] = ACTIONS(1509), - [anon_sym_break] = ACTIONS(1509), - [anon_sym_const] = ACTIONS(1509), - [anon_sym_continue] = ACTIONS(1509), - [anon_sym_default] = ACTIONS(1509), - [anon_sym_enum] = ACTIONS(1509), - [anon_sym_fn] = ACTIONS(1509), - [anon_sym_for] = ACTIONS(1509), - [anon_sym_gen] = ACTIONS(1509), - [anon_sym_if] = ACTIONS(1509), - [anon_sym_impl] = ACTIONS(1509), - [anon_sym_let] = ACTIONS(1509), - [anon_sym_loop] = ACTIONS(1509), - [anon_sym_match] = ACTIONS(1509), - [anon_sym_mod] = ACTIONS(1509), - [anon_sym_pub] = ACTIONS(1509), - [anon_sym_return] = ACTIONS(1509), - [anon_sym_static] = ACTIONS(1509), - [anon_sym_struct] = ACTIONS(1509), - [anon_sym_trait] = ACTIONS(1509), - [anon_sym_type] = ACTIONS(1509), - [anon_sym_union] = ACTIONS(1509), - [anon_sym_unsafe] = ACTIONS(1509), - [anon_sym_use] = ACTIONS(1509), - [anon_sym_while] = ACTIONS(1509), - [anon_sym_extern] = ACTIONS(1509), - [anon_sym_yield] = ACTIONS(1509), - [anon_sym_move] = ACTIONS(1509), - [anon_sym_try] = ACTIONS(1509), - [sym_integer_literal] = ACTIONS(1507), - [aux_sym_string_literal_token1] = ACTIONS(1507), - [sym_char_literal] = ACTIONS(1507), - [anon_sym_true] = ACTIONS(1509), - [anon_sym_false] = ACTIONS(1509), + [STATE(673)] = { + [sym_empty_statement] = STATE(1201), + [sym_macro_definition] = STATE(1201), + [sym_attribute_item] = STATE(1201), + [sym_inner_attribute_item] = STATE(1201), + [sym_mod_item] = STATE(1201), + [sym_foreign_mod_item] = STATE(1201), + [sym_struct_item] = STATE(1201), + [sym_union_item] = STATE(1201), + [sym_enum_item] = STATE(1201), + [sym_extern_crate_declaration] = STATE(1201), + [sym_const_item] = STATE(1201), + [sym_static_item] = STATE(1201), + [sym_type_item] = STATE(1201), + [sym_function_item] = STATE(1201), + [sym_function_signature_item] = STATE(1201), + [sym_function_modifiers] = STATE(3599), + [sym_impl_item] = STATE(1201), + [sym_trait_item] = STATE(1201), + [sym_associated_type] = STATE(1201), + [sym_let_declaration] = STATE(1201), + [sym_use_declaration] = STATE(1201), + [sym_extern_modifier] = STATE(2148), + [sym_visibility_modifier] = STATE(1952), + [sym_bracketed_type] = STATE(3328), + [sym_generic_type_with_turbofish] = STATE(3354), + [sym_macro_invocation] = STATE(1201), + [sym_scoped_identifier] = STATE(3119), + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), + [aux_sym_declaration_list_repeat1] = STATE(682), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2429), + [anon_sym_macro_rules_BANG] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2619), + [anon_sym_u8] = ACTIONS(2435), + [anon_sym_i8] = ACTIONS(2435), + [anon_sym_u16] = ACTIONS(2435), + [anon_sym_i16] = ACTIONS(2435), + [anon_sym_u32] = ACTIONS(2435), + [anon_sym_i32] = ACTIONS(2435), + [anon_sym_u64] = ACTIONS(2435), + [anon_sym_i64] = ACTIONS(2435), + [anon_sym_u128] = ACTIONS(2435), + [anon_sym_i128] = ACTIONS(2435), + [anon_sym_isize] = ACTIONS(2435), + [anon_sym_usize] = ACTIONS(2435), + [anon_sym_f32] = ACTIONS(2435), + [anon_sym_f64] = ACTIONS(2435), + [anon_sym_bool] = ACTIONS(2435), + [anon_sym_str] = ACTIONS(2435), + [anon_sym_char] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(2439), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2447), + [anon_sym_gen] = ACTIONS(2449), + [anon_sym_impl] = ACTIONS(2451), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_mod] = ACTIONS(2455), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_trait] = ACTIONS(2461), + [anon_sym_type] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2467), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2471), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1509), - [sym_super] = ACTIONS(1509), - [sym_crate] = ACTIONS(1509), - [sym_metavariable] = ACTIONS(1507), - [sym__raw_string_literal_start] = ACTIONS(1507), - [sym_float_literal] = ACTIONS(1507), - }, - [STATE(692)] = { - [sym_line_comment] = STATE(692), - [sym_block_comment] = STATE(692), - [ts_builtin_sym_end] = ACTIONS(2609), - [sym_identifier] = ACTIONS(2611), - [anon_sym_SEMI] = ACTIONS(2609), - [anon_sym_macro_rules_BANG] = ACTIONS(2609), - [anon_sym_LPAREN] = ACTIONS(2609), - [anon_sym_LBRACK] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2609), - [anon_sym_RBRACE] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2609), - [anon_sym_u8] = ACTIONS(2611), - [anon_sym_i8] = ACTIONS(2611), - [anon_sym_u16] = ACTIONS(2611), - [anon_sym_i16] = ACTIONS(2611), - [anon_sym_u32] = ACTIONS(2611), - [anon_sym_i32] = ACTIONS(2611), - [anon_sym_u64] = ACTIONS(2611), - [anon_sym_i64] = ACTIONS(2611), - [anon_sym_u128] = ACTIONS(2611), - [anon_sym_i128] = ACTIONS(2611), - [anon_sym_isize] = ACTIONS(2611), - [anon_sym_usize] = ACTIONS(2611), - [anon_sym_f32] = ACTIONS(2611), - [anon_sym_f64] = ACTIONS(2611), - [anon_sym_bool] = ACTIONS(2611), - [anon_sym_str] = ACTIONS(2611), - [anon_sym_char] = ACTIONS(2611), - [anon_sym_DASH] = ACTIONS(2609), - [anon_sym_BANG] = ACTIONS(2609), - [anon_sym_AMP] = ACTIONS(2609), - [anon_sym_PIPE] = ACTIONS(2609), - [anon_sym_LT] = ACTIONS(2609), - [anon_sym_DOT_DOT] = ACTIONS(2609), - [anon_sym_COLON_COLON] = ACTIONS(2609), - [anon_sym_POUND] = ACTIONS(2609), - [anon_sym_SQUOTE] = ACTIONS(2611), - [anon_sym_async] = ACTIONS(2611), - [anon_sym_break] = ACTIONS(2611), - [anon_sym_const] = ACTIONS(2611), - [anon_sym_continue] = ACTIONS(2611), - [anon_sym_default] = ACTIONS(2611), - [anon_sym_enum] = ACTIONS(2611), - [anon_sym_fn] = ACTIONS(2611), - [anon_sym_for] = ACTIONS(2611), - [anon_sym_gen] = ACTIONS(2611), - [anon_sym_if] = ACTIONS(2611), - [anon_sym_impl] = ACTIONS(2611), - [anon_sym_let] = ACTIONS(2611), - [anon_sym_loop] = ACTIONS(2611), - [anon_sym_match] = ACTIONS(2611), - [anon_sym_mod] = ACTIONS(2611), - [anon_sym_pub] = ACTIONS(2611), - [anon_sym_return] = ACTIONS(2611), - [anon_sym_static] = ACTIONS(2611), - [anon_sym_struct] = ACTIONS(2611), - [anon_sym_trait] = ACTIONS(2611), - [anon_sym_type] = ACTIONS(2611), - [anon_sym_union] = ACTIONS(2611), - [anon_sym_unsafe] = ACTIONS(2611), - [anon_sym_use] = ACTIONS(2611), - [anon_sym_while] = ACTIONS(2611), - [anon_sym_extern] = ACTIONS(2611), - [anon_sym_yield] = ACTIONS(2611), - [anon_sym_move] = ACTIONS(2611), - [anon_sym_try] = ACTIONS(2611), - [sym_integer_literal] = ACTIONS(2609), - [aux_sym_string_literal_token1] = ACTIONS(2609), - [sym_char_literal] = ACTIONS(2609), - [anon_sym_true] = ACTIONS(2611), - [anon_sym_false] = ACTIONS(2611), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2611), - [sym_super] = ACTIONS(2611), - [sym_crate] = ACTIONS(2611), - [sym_metavariable] = ACTIONS(2609), - [sym__raw_string_literal_start] = ACTIONS(2609), - [sym_float_literal] = ACTIONS(2609), - }, - [STATE(693)] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(2613), - [sym_identifier] = ACTIONS(2615), - [anon_sym_SEMI] = ACTIONS(2613), - [anon_sym_macro_rules_BANG] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(2613), - [anon_sym_LBRACK] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_RBRACE] = ACTIONS(2613), - [anon_sym_STAR] = ACTIONS(2613), - [anon_sym_u8] = ACTIONS(2615), - [anon_sym_i8] = ACTIONS(2615), - [anon_sym_u16] = ACTIONS(2615), - [anon_sym_i16] = ACTIONS(2615), - [anon_sym_u32] = ACTIONS(2615), - [anon_sym_i32] = ACTIONS(2615), - [anon_sym_u64] = ACTIONS(2615), - [anon_sym_i64] = ACTIONS(2615), - [anon_sym_u128] = ACTIONS(2615), - [anon_sym_i128] = ACTIONS(2615), - [anon_sym_isize] = ACTIONS(2615), - [anon_sym_usize] = ACTIONS(2615), - [anon_sym_f32] = ACTIONS(2615), - [anon_sym_f64] = ACTIONS(2615), - [anon_sym_bool] = ACTIONS(2615), - [anon_sym_str] = ACTIONS(2615), - [anon_sym_char] = ACTIONS(2615), - [anon_sym_DASH] = ACTIONS(2613), - [anon_sym_BANG] = ACTIONS(2613), - [anon_sym_AMP] = ACTIONS(2613), - [anon_sym_PIPE] = ACTIONS(2613), - [anon_sym_LT] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2613), - [anon_sym_COLON_COLON] = ACTIONS(2613), - [anon_sym_POUND] = ACTIONS(2613), - [anon_sym_SQUOTE] = ACTIONS(2615), - [anon_sym_async] = ACTIONS(2615), - [anon_sym_break] = ACTIONS(2615), - [anon_sym_const] = ACTIONS(2615), - [anon_sym_continue] = ACTIONS(2615), - [anon_sym_default] = ACTIONS(2615), - [anon_sym_enum] = ACTIONS(2615), - [anon_sym_fn] = ACTIONS(2615), - [anon_sym_for] = ACTIONS(2615), - [anon_sym_gen] = ACTIONS(2615), - [anon_sym_if] = ACTIONS(2615), - [anon_sym_impl] = ACTIONS(2615), - [anon_sym_let] = ACTIONS(2615), - [anon_sym_loop] = ACTIONS(2615), - [anon_sym_match] = ACTIONS(2615), - [anon_sym_mod] = ACTIONS(2615), - [anon_sym_pub] = ACTIONS(2615), - [anon_sym_return] = ACTIONS(2615), - [anon_sym_static] = ACTIONS(2615), - [anon_sym_struct] = ACTIONS(2615), - [anon_sym_trait] = ACTIONS(2615), - [anon_sym_type] = ACTIONS(2615), - [anon_sym_union] = ACTIONS(2615), - [anon_sym_unsafe] = ACTIONS(2615), - [anon_sym_use] = ACTIONS(2615), - [anon_sym_while] = ACTIONS(2615), - [anon_sym_extern] = ACTIONS(2615), - [anon_sym_yield] = ACTIONS(2615), - [anon_sym_move] = ACTIONS(2615), - [anon_sym_try] = ACTIONS(2615), - [sym_integer_literal] = ACTIONS(2613), - [aux_sym_string_literal_token1] = ACTIONS(2613), - [sym_char_literal] = ACTIONS(2613), - [anon_sym_true] = ACTIONS(2615), - [anon_sym_false] = ACTIONS(2615), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2615), - [sym_super] = ACTIONS(2615), - [sym_crate] = ACTIONS(2615), - [sym_metavariable] = ACTIONS(2613), - [sym__raw_string_literal_start] = ACTIONS(2613), - [sym_float_literal] = ACTIONS(2613), - }, - [STATE(694)] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), - [ts_builtin_sym_end] = ACTIONS(2617), - [sym_identifier] = ACTIONS(2619), - [anon_sym_SEMI] = ACTIONS(2617), - [anon_sym_macro_rules_BANG] = ACTIONS(2617), - [anon_sym_LPAREN] = ACTIONS(2617), - [anon_sym_LBRACK] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2617), - [anon_sym_RBRACE] = ACTIONS(2617), - [anon_sym_STAR] = ACTIONS(2617), - [anon_sym_u8] = ACTIONS(2619), - [anon_sym_i8] = ACTIONS(2619), - [anon_sym_u16] = ACTIONS(2619), - [anon_sym_i16] = ACTIONS(2619), - [anon_sym_u32] = ACTIONS(2619), - [anon_sym_i32] = ACTIONS(2619), - [anon_sym_u64] = ACTIONS(2619), - [anon_sym_i64] = ACTIONS(2619), - [anon_sym_u128] = ACTIONS(2619), - [anon_sym_i128] = ACTIONS(2619), - [anon_sym_isize] = ACTIONS(2619), - [anon_sym_usize] = ACTIONS(2619), - [anon_sym_f32] = ACTIONS(2619), - [anon_sym_f64] = ACTIONS(2619), - [anon_sym_bool] = ACTIONS(2619), - [anon_sym_str] = ACTIONS(2619), - [anon_sym_char] = ACTIONS(2619), - [anon_sym_DASH] = ACTIONS(2617), - [anon_sym_BANG] = ACTIONS(2617), - [anon_sym_AMP] = ACTIONS(2617), - [anon_sym_PIPE] = ACTIONS(2617), - [anon_sym_LT] = ACTIONS(2617), - [anon_sym_DOT_DOT] = ACTIONS(2617), - [anon_sym_COLON_COLON] = ACTIONS(2617), - [anon_sym_POUND] = ACTIONS(2617), - [anon_sym_SQUOTE] = ACTIONS(2619), - [anon_sym_async] = ACTIONS(2619), - [anon_sym_break] = ACTIONS(2619), - [anon_sym_const] = ACTIONS(2619), - [anon_sym_continue] = ACTIONS(2619), - [anon_sym_default] = ACTIONS(2619), - [anon_sym_enum] = ACTIONS(2619), - [anon_sym_fn] = ACTIONS(2619), - [anon_sym_for] = ACTIONS(2619), - [anon_sym_gen] = ACTIONS(2619), - [anon_sym_if] = ACTIONS(2619), - [anon_sym_impl] = ACTIONS(2619), - [anon_sym_let] = ACTIONS(2619), - [anon_sym_loop] = ACTIONS(2619), - [anon_sym_match] = ACTIONS(2619), - [anon_sym_mod] = ACTIONS(2619), - [anon_sym_pub] = ACTIONS(2619), - [anon_sym_return] = ACTIONS(2619), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_struct] = ACTIONS(2619), - [anon_sym_trait] = ACTIONS(2619), - [anon_sym_type] = ACTIONS(2619), - [anon_sym_union] = ACTIONS(2619), - [anon_sym_unsafe] = ACTIONS(2619), - [anon_sym_use] = ACTIONS(2619), - [anon_sym_while] = ACTIONS(2619), - [anon_sym_extern] = ACTIONS(2619), - [anon_sym_yield] = ACTIONS(2619), - [anon_sym_move] = ACTIONS(2619), - [anon_sym_try] = ACTIONS(2619), - [sym_integer_literal] = ACTIONS(2617), - [aux_sym_string_literal_token1] = ACTIONS(2617), - [sym_char_literal] = ACTIONS(2617), - [anon_sym_true] = ACTIONS(2619), - [anon_sym_false] = ACTIONS(2619), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2619), - [sym_super] = ACTIONS(2619), - [sym_crate] = ACTIONS(2619), - [sym_metavariable] = ACTIONS(2617), - [sym__raw_string_literal_start] = ACTIONS(2617), - [sym_float_literal] = ACTIONS(2617), + [sym_self] = ACTIONS(2473), + [sym_super] = ACTIONS(2473), + [sym_crate] = ACTIONS(2475), + [sym_metavariable] = ACTIONS(2477), }, - [STATE(695)] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [STATE(674)] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), [ts_builtin_sym_end] = ACTIONS(2621), [sym_identifier] = ACTIONS(2623), [anon_sym_SEMI] = ACTIONS(2621), @@ -87253,9 +85480,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2621), [sym_float_literal] = ACTIONS(2621), }, - [STATE(696)] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), + [STATE(675)] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), [ts_builtin_sym_end] = ACTIONS(2625), [sym_identifier] = ACTIONS(2627), [anon_sym_SEMI] = ACTIONS(2625), @@ -87334,9 +85561,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2625), [sym_float_literal] = ACTIONS(2625), }, - [STATE(697)] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [STATE(676)] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), [ts_builtin_sym_end] = ACTIONS(2629), [sym_identifier] = ACTIONS(2631), [anon_sym_SEMI] = ACTIONS(2629), @@ -87415,9 +85642,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2629), [sym_float_literal] = ACTIONS(2629), }, - [STATE(698)] = { - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), + [STATE(677)] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), [ts_builtin_sym_end] = ACTIONS(2633), [sym_identifier] = ACTIONS(2635), [anon_sym_SEMI] = ACTIONS(2633), @@ -87496,9 +85723,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2633), [sym_float_literal] = ACTIONS(2633), }, - [STATE(699)] = { - [sym_line_comment] = STATE(699), - [sym_block_comment] = STATE(699), + [STATE(678)] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), [ts_builtin_sym_end] = ACTIONS(2637), [sym_identifier] = ACTIONS(2639), [anon_sym_SEMI] = ACTIONS(2637), @@ -87577,9 +85804,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2637), [sym_float_literal] = ACTIONS(2637), }, - [STATE(700)] = { - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), + [STATE(679)] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), [ts_builtin_sym_end] = ACTIONS(2641), [sym_identifier] = ACTIONS(2643), [anon_sym_SEMI] = ACTIONS(2641), @@ -87658,9 +85885,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2641), [sym_float_literal] = ACTIONS(2641), }, - [STATE(701)] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), + [STATE(680)] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), [ts_builtin_sym_end] = ACTIONS(2645), [sym_identifier] = ACTIONS(2647), [anon_sym_SEMI] = ACTIONS(2645), @@ -87739,9 +85966,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2645), [sym_float_literal] = ACTIONS(2645), }, - [STATE(702)] = { - [sym_line_comment] = STATE(702), - [sym_block_comment] = STATE(702), + [STATE(681)] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), [ts_builtin_sym_end] = ACTIONS(2649), [sym_identifier] = ACTIONS(2651), [anon_sym_SEMI] = ACTIONS(2649), @@ -87820,2196 +86047,2277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2649), [sym_float_literal] = ACTIONS(2649), }, + [STATE(682)] = { + [sym_empty_statement] = STATE(1201), + [sym_macro_definition] = STATE(1201), + [sym_attribute_item] = STATE(1201), + [sym_inner_attribute_item] = STATE(1201), + [sym_mod_item] = STATE(1201), + [sym_foreign_mod_item] = STATE(1201), + [sym_struct_item] = STATE(1201), + [sym_union_item] = STATE(1201), + [sym_enum_item] = STATE(1201), + [sym_extern_crate_declaration] = STATE(1201), + [sym_const_item] = STATE(1201), + [sym_static_item] = STATE(1201), + [sym_type_item] = STATE(1201), + [sym_function_item] = STATE(1201), + [sym_function_signature_item] = STATE(1201), + [sym_function_modifiers] = STATE(3599), + [sym_impl_item] = STATE(1201), + [sym_trait_item] = STATE(1201), + [sym_associated_type] = STATE(1201), + [sym_let_declaration] = STATE(1201), + [sym_use_declaration] = STATE(1201), + [sym_extern_modifier] = STATE(2148), + [sym_visibility_modifier] = STATE(1952), + [sym_bracketed_type] = STATE(3328), + [sym_generic_type_with_turbofish] = STATE(3354), + [sym_macro_invocation] = STATE(1201), + [sym_scoped_identifier] = STATE(3119), + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), + [aux_sym_declaration_list_repeat1] = STATE(622), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2429), + [anon_sym_macro_rules_BANG] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2653), + [anon_sym_u8] = ACTIONS(2435), + [anon_sym_i8] = ACTIONS(2435), + [anon_sym_u16] = ACTIONS(2435), + [anon_sym_i16] = ACTIONS(2435), + [anon_sym_u32] = ACTIONS(2435), + [anon_sym_i32] = ACTIONS(2435), + [anon_sym_u64] = ACTIONS(2435), + [anon_sym_i64] = ACTIONS(2435), + [anon_sym_u128] = ACTIONS(2435), + [anon_sym_i128] = ACTIONS(2435), + [anon_sym_isize] = ACTIONS(2435), + [anon_sym_usize] = ACTIONS(2435), + [anon_sym_f32] = ACTIONS(2435), + [anon_sym_f64] = ACTIONS(2435), + [anon_sym_bool] = ACTIONS(2435), + [anon_sym_str] = ACTIONS(2435), + [anon_sym_char] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(2439), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2447), + [anon_sym_gen] = ACTIONS(2449), + [anon_sym_impl] = ACTIONS(2451), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_mod] = ACTIONS(2455), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_trait] = ACTIONS(2461), + [anon_sym_type] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2467), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2473), + [sym_super] = ACTIONS(2473), + [sym_crate] = ACTIONS(2475), + [sym_metavariable] = ACTIONS(2477), + }, + [STATE(683)] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), + [ts_builtin_sym_end] = ACTIONS(2655), + [sym_identifier] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_macro_rules_BANG] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_u8] = ACTIONS(2657), + [anon_sym_i8] = ACTIONS(2657), + [anon_sym_u16] = ACTIONS(2657), + [anon_sym_i16] = ACTIONS(2657), + [anon_sym_u32] = ACTIONS(2657), + [anon_sym_i32] = ACTIONS(2657), + [anon_sym_u64] = ACTIONS(2657), + [anon_sym_i64] = ACTIONS(2657), + [anon_sym_u128] = ACTIONS(2657), + [anon_sym_i128] = ACTIONS(2657), + [anon_sym_isize] = ACTIONS(2657), + [anon_sym_usize] = ACTIONS(2657), + [anon_sym_f32] = ACTIONS(2657), + [anon_sym_f64] = ACTIONS(2657), + [anon_sym_bool] = ACTIONS(2657), + [anon_sym_str] = ACTIONS(2657), + [anon_sym_char] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2655), + [anon_sym_LT] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2655), + [anon_sym_POUND] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_fn] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_gen] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_impl] = ACTIONS(2657), + [anon_sym_let] = ACTIONS(2657), + [anon_sym_loop] = ACTIONS(2657), + [anon_sym_match] = ACTIONS(2657), + [anon_sym_mod] = ACTIONS(2657), + [anon_sym_pub] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_trait] = ACTIONS(2657), + [anon_sym_type] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_unsafe] = ACTIONS(2657), + [anon_sym_use] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_extern] = ACTIONS(2657), + [anon_sym_yield] = ACTIONS(2657), + [anon_sym_move] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [sym_integer_literal] = ACTIONS(2655), + [aux_sym_string_literal_token1] = ACTIONS(2655), + [sym_char_literal] = ACTIONS(2655), + [anon_sym_true] = ACTIONS(2657), + [anon_sym_false] = ACTIONS(2657), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2657), + [sym_super] = ACTIONS(2657), + [sym_crate] = ACTIONS(2657), + [sym_metavariable] = ACTIONS(2655), + [sym__raw_string_literal_start] = ACTIONS(2655), + [sym_float_literal] = ACTIONS(2655), + }, + [STATE(684)] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), + [ts_builtin_sym_end] = ACTIONS(2659), + [sym_identifier] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_macro_rules_BANG] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_RBRACE] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_u8] = ACTIONS(2661), + [anon_sym_i8] = ACTIONS(2661), + [anon_sym_u16] = ACTIONS(2661), + [anon_sym_i16] = ACTIONS(2661), + [anon_sym_u32] = ACTIONS(2661), + [anon_sym_i32] = ACTIONS(2661), + [anon_sym_u64] = ACTIONS(2661), + [anon_sym_i64] = ACTIONS(2661), + [anon_sym_u128] = ACTIONS(2661), + [anon_sym_i128] = ACTIONS(2661), + [anon_sym_isize] = ACTIONS(2661), + [anon_sym_usize] = ACTIONS(2661), + [anon_sym_f32] = ACTIONS(2661), + [anon_sym_f64] = ACTIONS(2661), + [anon_sym_bool] = ACTIONS(2661), + [anon_sym_str] = ACTIONS(2661), + [anon_sym_char] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_POUND] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_async] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_const] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_fn] = ACTIONS(2661), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_gen] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_impl] = ACTIONS(2661), + [anon_sym_let] = ACTIONS(2661), + [anon_sym_loop] = ACTIONS(2661), + [anon_sym_match] = ACTIONS(2661), + [anon_sym_mod] = ACTIONS(2661), + [anon_sym_pub] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(2661), + [anon_sym_trait] = ACTIONS(2661), + [anon_sym_type] = ACTIONS(2661), + [anon_sym_union] = ACTIONS(2661), + [anon_sym_unsafe] = ACTIONS(2661), + [anon_sym_use] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym_yield] = ACTIONS(2661), + [anon_sym_move] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(2661), + [sym_integer_literal] = ACTIONS(2659), + [aux_sym_string_literal_token1] = ACTIONS(2659), + [sym_char_literal] = ACTIONS(2659), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2661), + [sym_super] = ACTIONS(2661), + [sym_crate] = ACTIONS(2661), + [sym_metavariable] = ACTIONS(2659), + [sym__raw_string_literal_start] = ACTIONS(2659), + [sym_float_literal] = ACTIONS(2659), + }, + [STATE(685)] = { + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), + [ts_builtin_sym_end] = ACTIONS(2663), + [sym_identifier] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_macro_rules_BANG] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_u8] = ACTIONS(2665), + [anon_sym_i8] = ACTIONS(2665), + [anon_sym_u16] = ACTIONS(2665), + [anon_sym_i16] = ACTIONS(2665), + [anon_sym_u32] = ACTIONS(2665), + [anon_sym_i32] = ACTIONS(2665), + [anon_sym_u64] = ACTIONS(2665), + [anon_sym_i64] = ACTIONS(2665), + [anon_sym_u128] = ACTIONS(2665), + [anon_sym_i128] = ACTIONS(2665), + [anon_sym_isize] = ACTIONS(2665), + [anon_sym_usize] = ACTIONS(2665), + [anon_sym_f32] = ACTIONS(2665), + [anon_sym_f64] = ACTIONS(2665), + [anon_sym_bool] = ACTIONS(2665), + [anon_sym_str] = ACTIONS(2665), + [anon_sym_char] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(2663), + [anon_sym_DOT_DOT] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2663), + [anon_sym_POUND] = ACTIONS(2663), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_async] = ACTIONS(2665), + [anon_sym_break] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(2665), + [anon_sym_continue] = ACTIONS(2665), + [anon_sym_default] = ACTIONS(2665), + [anon_sym_enum] = ACTIONS(2665), + [anon_sym_fn] = ACTIONS(2665), + [anon_sym_for] = ACTIONS(2665), + [anon_sym_gen] = ACTIONS(2665), + [anon_sym_if] = ACTIONS(2665), + [anon_sym_impl] = ACTIONS(2665), + [anon_sym_let] = ACTIONS(2665), + [anon_sym_loop] = ACTIONS(2665), + [anon_sym_match] = ACTIONS(2665), + [anon_sym_mod] = ACTIONS(2665), + [anon_sym_pub] = ACTIONS(2665), + [anon_sym_return] = ACTIONS(2665), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(2665), + [anon_sym_trait] = ACTIONS(2665), + [anon_sym_type] = ACTIONS(2665), + [anon_sym_union] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(2665), + [anon_sym_use] = ACTIONS(2665), + [anon_sym_while] = ACTIONS(2665), + [anon_sym_extern] = ACTIONS(2665), + [anon_sym_yield] = ACTIONS(2665), + [anon_sym_move] = ACTIONS(2665), + [anon_sym_try] = ACTIONS(2665), + [sym_integer_literal] = ACTIONS(2663), + [aux_sym_string_literal_token1] = ACTIONS(2663), + [sym_char_literal] = ACTIONS(2663), + [anon_sym_true] = ACTIONS(2665), + [anon_sym_false] = ACTIONS(2665), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2665), + [sym_super] = ACTIONS(2665), + [sym_crate] = ACTIONS(2665), + [sym_metavariable] = ACTIONS(2663), + [sym__raw_string_literal_start] = ACTIONS(2663), + [sym_float_literal] = ACTIONS(2663), + }, + [STATE(686)] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_macro_rules_BANG] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_u8] = ACTIONS(2669), + [anon_sym_i8] = ACTIONS(2669), + [anon_sym_u16] = ACTIONS(2669), + [anon_sym_i16] = ACTIONS(2669), + [anon_sym_u32] = ACTIONS(2669), + [anon_sym_i32] = ACTIONS(2669), + [anon_sym_u64] = ACTIONS(2669), + [anon_sym_i64] = ACTIONS(2669), + [anon_sym_u128] = ACTIONS(2669), + [anon_sym_i128] = ACTIONS(2669), + [anon_sym_isize] = ACTIONS(2669), + [anon_sym_usize] = ACTIONS(2669), + [anon_sym_f32] = ACTIONS(2669), + [anon_sym_f64] = ACTIONS(2669), + [anon_sym_bool] = ACTIONS(2669), + [anon_sym_str] = ACTIONS(2669), + [anon_sym_char] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_DOT_DOT] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_async] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_gen] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_impl] = ACTIONS(2669), + [anon_sym_let] = ACTIONS(2669), + [anon_sym_loop] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_mod] = ACTIONS(2669), + [anon_sym_pub] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_trait] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_use] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_extern] = ACTIONS(2669), + [anon_sym_yield] = ACTIONS(2669), + [anon_sym_move] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [sym_integer_literal] = ACTIONS(2667), + [aux_sym_string_literal_token1] = ACTIONS(2667), + [sym_char_literal] = ACTIONS(2667), + [anon_sym_true] = ACTIONS(2669), + [anon_sym_false] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2669), + [sym_super] = ACTIONS(2669), + [sym_crate] = ACTIONS(2669), + [sym_metavariable] = ACTIONS(2667), + [sym__raw_string_literal_start] = ACTIONS(2667), + [sym_float_literal] = ACTIONS(2667), + }, + [STATE(687)] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), + [ts_builtin_sym_end] = ACTIONS(2671), + [sym_identifier] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_macro_rules_BANG] = ACTIONS(2671), + [anon_sym_LPAREN] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_u8] = ACTIONS(2673), + [anon_sym_i8] = ACTIONS(2673), + [anon_sym_u16] = ACTIONS(2673), + [anon_sym_i16] = ACTIONS(2673), + [anon_sym_u32] = ACTIONS(2673), + [anon_sym_i32] = ACTIONS(2673), + [anon_sym_u64] = ACTIONS(2673), + [anon_sym_i64] = ACTIONS(2673), + [anon_sym_u128] = ACTIONS(2673), + [anon_sym_i128] = ACTIONS(2673), + [anon_sym_isize] = ACTIONS(2673), + [anon_sym_usize] = ACTIONS(2673), + [anon_sym_f32] = ACTIONS(2673), + [anon_sym_f64] = ACTIONS(2673), + [anon_sym_bool] = ACTIONS(2673), + [anon_sym_str] = ACTIONS(2673), + [anon_sym_char] = ACTIONS(2673), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2671), + [anon_sym_LT] = ACTIONS(2671), + [anon_sym_DOT_DOT] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2671), + [anon_sym_POUND] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), + [anon_sym_fn] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_gen] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_impl] = ACTIONS(2673), + [anon_sym_let] = ACTIONS(2673), + [anon_sym_loop] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_mod] = ACTIONS(2673), + [anon_sym_pub] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_struct] = ACTIONS(2673), + [anon_sym_trait] = ACTIONS(2673), + [anon_sym_type] = ACTIONS(2673), + [anon_sym_union] = ACTIONS(2673), + [anon_sym_unsafe] = ACTIONS(2673), + [anon_sym_use] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2673), + [anon_sym_yield] = ACTIONS(2673), + [anon_sym_move] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [sym_integer_literal] = ACTIONS(2671), + [aux_sym_string_literal_token1] = ACTIONS(2671), + [sym_char_literal] = ACTIONS(2671), + [anon_sym_true] = ACTIONS(2673), + [anon_sym_false] = ACTIONS(2673), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2673), + [sym_super] = ACTIONS(2673), + [sym_crate] = ACTIONS(2673), + [sym_metavariable] = ACTIONS(2671), + [sym__raw_string_literal_start] = ACTIONS(2671), + [sym_float_literal] = ACTIONS(2671), + }, + [STATE(688)] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), + [ts_builtin_sym_end] = ACTIONS(2675), + [sym_identifier] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_macro_rules_BANG] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_u8] = ACTIONS(2677), + [anon_sym_i8] = ACTIONS(2677), + [anon_sym_u16] = ACTIONS(2677), + [anon_sym_i16] = ACTIONS(2677), + [anon_sym_u32] = ACTIONS(2677), + [anon_sym_i32] = ACTIONS(2677), + [anon_sym_u64] = ACTIONS(2677), + [anon_sym_i64] = ACTIONS(2677), + [anon_sym_u128] = ACTIONS(2677), + [anon_sym_i128] = ACTIONS(2677), + [anon_sym_isize] = ACTIONS(2677), + [anon_sym_usize] = ACTIONS(2677), + [anon_sym_f32] = ACTIONS(2677), + [anon_sym_f64] = ACTIONS(2677), + [anon_sym_bool] = ACTIONS(2677), + [anon_sym_str] = ACTIONS(2677), + [anon_sym_char] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2675), + [anon_sym_DOT_DOT] = ACTIONS(2675), + [anon_sym_COLON_COLON] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_async] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_fn] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_gen] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_impl] = ACTIONS(2677), + [anon_sym_let] = ACTIONS(2677), + [anon_sym_loop] = ACTIONS(2677), + [anon_sym_match] = ACTIONS(2677), + [anon_sym_mod] = ACTIONS(2677), + [anon_sym_pub] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(2677), + [anon_sym_trait] = ACTIONS(2677), + [anon_sym_type] = ACTIONS(2677), + [anon_sym_union] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(2677), + [anon_sym_use] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym_yield] = ACTIONS(2677), + [anon_sym_move] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [sym_integer_literal] = ACTIONS(2675), + [aux_sym_string_literal_token1] = ACTIONS(2675), + [sym_char_literal] = ACTIONS(2675), + [anon_sym_true] = ACTIONS(2677), + [anon_sym_false] = ACTIONS(2677), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2677), + [sym_super] = ACTIONS(2677), + [sym_crate] = ACTIONS(2677), + [sym_metavariable] = ACTIONS(2675), + [sym__raw_string_literal_start] = ACTIONS(2675), + [sym_float_literal] = ACTIONS(2675), + }, + [STATE(689)] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), + [ts_builtin_sym_end] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_macro_rules_BANG] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_u8] = ACTIONS(2681), + [anon_sym_i8] = ACTIONS(2681), + [anon_sym_u16] = ACTIONS(2681), + [anon_sym_i16] = ACTIONS(2681), + [anon_sym_u32] = ACTIONS(2681), + [anon_sym_i32] = ACTIONS(2681), + [anon_sym_u64] = ACTIONS(2681), + [anon_sym_i64] = ACTIONS(2681), + [anon_sym_u128] = ACTIONS(2681), + [anon_sym_i128] = ACTIONS(2681), + [anon_sym_isize] = ACTIONS(2681), + [anon_sym_usize] = ACTIONS(2681), + [anon_sym_f32] = ACTIONS(2681), + [anon_sym_f64] = ACTIONS(2681), + [anon_sym_bool] = ACTIONS(2681), + [anon_sym_str] = ACTIONS(2681), + [anon_sym_char] = ACTIONS(2681), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_async] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_fn] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_gen] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_impl] = ACTIONS(2681), + [anon_sym_let] = ACTIONS(2681), + [anon_sym_loop] = ACTIONS(2681), + [anon_sym_match] = ACTIONS(2681), + [anon_sym_mod] = ACTIONS(2681), + [anon_sym_pub] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2681), + [anon_sym_trait] = ACTIONS(2681), + [anon_sym_type] = ACTIONS(2681), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_use] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym_yield] = ACTIONS(2681), + [anon_sym_move] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [sym_integer_literal] = ACTIONS(2679), + [aux_sym_string_literal_token1] = ACTIONS(2679), + [sym_char_literal] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2681), + [anon_sym_false] = ACTIONS(2681), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2681), + [sym_super] = ACTIONS(2681), + [sym_crate] = ACTIONS(2681), + [sym_metavariable] = ACTIONS(2679), + [sym__raw_string_literal_start] = ACTIONS(2679), + [sym_float_literal] = ACTIONS(2679), + }, + [STATE(690)] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_macro_rules_BANG] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_u8] = ACTIONS(2685), + [anon_sym_i8] = ACTIONS(2685), + [anon_sym_u16] = ACTIONS(2685), + [anon_sym_i16] = ACTIONS(2685), + [anon_sym_u32] = ACTIONS(2685), + [anon_sym_i32] = ACTIONS(2685), + [anon_sym_u64] = ACTIONS(2685), + [anon_sym_i64] = ACTIONS(2685), + [anon_sym_u128] = ACTIONS(2685), + [anon_sym_i128] = ACTIONS(2685), + [anon_sym_isize] = ACTIONS(2685), + [anon_sym_usize] = ACTIONS(2685), + [anon_sym_f32] = ACTIONS(2685), + [anon_sym_f64] = ACTIONS(2685), + [anon_sym_bool] = ACTIONS(2685), + [anon_sym_str] = ACTIONS(2685), + [anon_sym_char] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_DOT_DOT] = ACTIONS(2683), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_async] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_fn] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_gen] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_impl] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_loop] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_mod] = ACTIONS(2685), + [anon_sym_pub] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_trait] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_unsafe] = ACTIONS(2685), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_move] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [sym_integer_literal] = ACTIONS(2683), + [aux_sym_string_literal_token1] = ACTIONS(2683), + [sym_char_literal] = ACTIONS(2683), + [anon_sym_true] = ACTIONS(2685), + [anon_sym_false] = ACTIONS(2685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2685), + [sym_super] = ACTIONS(2685), + [sym_crate] = ACTIONS(2685), + [sym_metavariable] = ACTIONS(2683), + [sym__raw_string_literal_start] = ACTIONS(2683), + [sym_float_literal] = ACTIONS(2683), + }, + [STATE(691)] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_macro_rules_BANG] = ACTIONS(2687), + [anon_sym_LPAREN] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_u8] = ACTIONS(2689), + [anon_sym_i8] = ACTIONS(2689), + [anon_sym_u16] = ACTIONS(2689), + [anon_sym_i16] = ACTIONS(2689), + [anon_sym_u32] = ACTIONS(2689), + [anon_sym_i32] = ACTIONS(2689), + [anon_sym_u64] = ACTIONS(2689), + [anon_sym_i64] = ACTIONS(2689), + [anon_sym_u128] = ACTIONS(2689), + [anon_sym_i128] = ACTIONS(2689), + [anon_sym_isize] = ACTIONS(2689), + [anon_sym_usize] = ACTIONS(2689), + [anon_sym_f32] = ACTIONS(2689), + [anon_sym_f64] = ACTIONS(2689), + [anon_sym_bool] = ACTIONS(2689), + [anon_sym_str] = ACTIONS(2689), + [anon_sym_char] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_DOT_DOT] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_POUND] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_async] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_gen] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_impl] = ACTIONS(2689), + [anon_sym_let] = ACTIONS(2689), + [anon_sym_loop] = ACTIONS(2689), + [anon_sym_match] = ACTIONS(2689), + [anon_sym_mod] = ACTIONS(2689), + [anon_sym_pub] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_trait] = ACTIONS(2689), + [anon_sym_type] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_unsafe] = ACTIONS(2689), + [anon_sym_use] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2689), + [anon_sym_yield] = ACTIONS(2689), + [anon_sym_move] = ACTIONS(2689), + [anon_sym_try] = ACTIONS(2689), + [sym_integer_literal] = ACTIONS(2687), + [aux_sym_string_literal_token1] = ACTIONS(2687), + [sym_char_literal] = ACTIONS(2687), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2689), + [sym_super] = ACTIONS(2689), + [sym_crate] = ACTIONS(2689), + [sym_metavariable] = ACTIONS(2687), + [sym__raw_string_literal_start] = ACTIONS(2687), + [sym_float_literal] = ACTIONS(2687), + }, + [STATE(692)] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), + [ts_builtin_sym_end] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_macro_rules_BANG] = ACTIONS(2691), + [anon_sym_LPAREN] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_RBRACE] = ACTIONS(2691), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_u8] = ACTIONS(2693), + [anon_sym_i8] = ACTIONS(2693), + [anon_sym_u16] = ACTIONS(2693), + [anon_sym_i16] = ACTIONS(2693), + [anon_sym_u32] = ACTIONS(2693), + [anon_sym_i32] = ACTIONS(2693), + [anon_sym_u64] = ACTIONS(2693), + [anon_sym_i64] = ACTIONS(2693), + [anon_sym_u128] = ACTIONS(2693), + [anon_sym_i128] = ACTIONS(2693), + [anon_sym_isize] = ACTIONS(2693), + [anon_sym_usize] = ACTIONS(2693), + [anon_sym_f32] = ACTIONS(2693), + [anon_sym_f64] = ACTIONS(2693), + [anon_sym_bool] = ACTIONS(2693), + [anon_sym_str] = ACTIONS(2693), + [anon_sym_char] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2691), + [anon_sym_LT] = ACTIONS(2691), + [anon_sym_DOT_DOT] = ACTIONS(2691), + [anon_sym_COLON_COLON] = ACTIONS(2691), + [anon_sym_POUND] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_async] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_fn] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_gen] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_impl] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_loop] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_mod] = ACTIONS(2693), + [anon_sym_pub] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2693), + [anon_sym_trait] = ACTIONS(2693), + [anon_sym_type] = ACTIONS(2693), + [anon_sym_union] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2693), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_move] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [sym_integer_literal] = ACTIONS(2691), + [aux_sym_string_literal_token1] = ACTIONS(2691), + [sym_char_literal] = ACTIONS(2691), + [anon_sym_true] = ACTIONS(2693), + [anon_sym_false] = ACTIONS(2693), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2693), + [sym_super] = ACTIONS(2693), + [sym_crate] = ACTIONS(2693), + [sym_metavariable] = ACTIONS(2691), + [sym__raw_string_literal_start] = ACTIONS(2691), + [sym_float_literal] = ACTIONS(2691), + }, + [STATE(693)] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), + [ts_builtin_sym_end] = ACTIONS(2695), + [sym_identifier] = ACTIONS(2697), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_macro_rules_BANG] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_u8] = ACTIONS(2697), + [anon_sym_i8] = ACTIONS(2697), + [anon_sym_u16] = ACTIONS(2697), + [anon_sym_i16] = ACTIONS(2697), + [anon_sym_u32] = ACTIONS(2697), + [anon_sym_i32] = ACTIONS(2697), + [anon_sym_u64] = ACTIONS(2697), + [anon_sym_i64] = ACTIONS(2697), + [anon_sym_u128] = ACTIONS(2697), + [anon_sym_i128] = ACTIONS(2697), + [anon_sym_isize] = ACTIONS(2697), + [anon_sym_usize] = ACTIONS(2697), + [anon_sym_f32] = ACTIONS(2697), + [anon_sym_f64] = ACTIONS(2697), + [anon_sym_bool] = ACTIONS(2697), + [anon_sym_str] = ACTIONS(2697), + [anon_sym_char] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_DOT_DOT] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_POUND] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2697), + [anon_sym_async] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_fn] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_gen] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_impl] = ACTIONS(2697), + [anon_sym_let] = ACTIONS(2697), + [anon_sym_loop] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_mod] = ACTIONS(2697), + [anon_sym_pub] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_trait] = ACTIONS(2697), + [anon_sym_type] = ACTIONS(2697), + [anon_sym_union] = ACTIONS(2697), + [anon_sym_unsafe] = ACTIONS(2697), + [anon_sym_use] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym_yield] = ACTIONS(2697), + [anon_sym_move] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [sym_integer_literal] = ACTIONS(2695), + [aux_sym_string_literal_token1] = ACTIONS(2695), + [sym_char_literal] = ACTIONS(2695), + [anon_sym_true] = ACTIONS(2697), + [anon_sym_false] = ACTIONS(2697), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2697), + [sym_super] = ACTIONS(2697), + [sym_crate] = ACTIONS(2697), + [sym_metavariable] = ACTIONS(2695), + [sym__raw_string_literal_start] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2695), + }, + [STATE(694)] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_macro_rules_BANG] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_u8] = ACTIONS(2701), + [anon_sym_i8] = ACTIONS(2701), + [anon_sym_u16] = ACTIONS(2701), + [anon_sym_i16] = ACTIONS(2701), + [anon_sym_u32] = ACTIONS(2701), + [anon_sym_i32] = ACTIONS(2701), + [anon_sym_u64] = ACTIONS(2701), + [anon_sym_i64] = ACTIONS(2701), + [anon_sym_u128] = ACTIONS(2701), + [anon_sym_i128] = ACTIONS(2701), + [anon_sym_isize] = ACTIONS(2701), + [anon_sym_usize] = ACTIONS(2701), + [anon_sym_f32] = ACTIONS(2701), + [anon_sym_f64] = ACTIONS(2701), + [anon_sym_bool] = ACTIONS(2701), + [anon_sym_str] = ACTIONS(2701), + [anon_sym_char] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_PIPE] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2699), + [anon_sym_DOT_DOT] = ACTIONS(2699), + [anon_sym_COLON_COLON] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_async] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_fn] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_gen] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_impl] = ACTIONS(2701), + [anon_sym_let] = ACTIONS(2701), + [anon_sym_loop] = ACTIONS(2701), + [anon_sym_match] = ACTIONS(2701), + [anon_sym_mod] = ACTIONS(2701), + [anon_sym_pub] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_trait] = ACTIONS(2701), + [anon_sym_type] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_unsafe] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym_yield] = ACTIONS(2701), + [anon_sym_move] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [sym_integer_literal] = ACTIONS(2699), + [aux_sym_string_literal_token1] = ACTIONS(2699), + [sym_char_literal] = ACTIONS(2699), + [anon_sym_true] = ACTIONS(2701), + [anon_sym_false] = ACTIONS(2701), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2701), + [sym_super] = ACTIONS(2701), + [sym_crate] = ACTIONS(2701), + [sym_metavariable] = ACTIONS(2699), + [sym__raw_string_literal_start] = ACTIONS(2699), + [sym_float_literal] = ACTIONS(2699), + }, + [STATE(695)] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_macro_rules_BANG] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_u8] = ACTIONS(2705), + [anon_sym_i8] = ACTIONS(2705), + [anon_sym_u16] = ACTIONS(2705), + [anon_sym_i16] = ACTIONS(2705), + [anon_sym_u32] = ACTIONS(2705), + [anon_sym_i32] = ACTIONS(2705), + [anon_sym_u64] = ACTIONS(2705), + [anon_sym_i64] = ACTIONS(2705), + [anon_sym_u128] = ACTIONS(2705), + [anon_sym_i128] = ACTIONS(2705), + [anon_sym_isize] = ACTIONS(2705), + [anon_sym_usize] = ACTIONS(2705), + [anon_sym_f32] = ACTIONS(2705), + [anon_sym_f64] = ACTIONS(2705), + [anon_sym_bool] = ACTIONS(2705), + [anon_sym_str] = ACTIONS(2705), + [anon_sym_char] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(2703), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_gen] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_impl] = ACTIONS(2705), + [anon_sym_let] = ACTIONS(2705), + [anon_sym_loop] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_mod] = ACTIONS(2705), + [anon_sym_pub] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_trait] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_unsafe] = ACTIONS(2705), + [anon_sym_use] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym_yield] = ACTIONS(2705), + [anon_sym_move] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [sym_integer_literal] = ACTIONS(2703), + [aux_sym_string_literal_token1] = ACTIONS(2703), + [sym_char_literal] = ACTIONS(2703), + [anon_sym_true] = ACTIONS(2705), + [anon_sym_false] = ACTIONS(2705), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2705), + [sym_super] = ACTIONS(2705), + [sym_crate] = ACTIONS(2705), + [sym_metavariable] = ACTIONS(2703), + [sym__raw_string_literal_start] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), + }, + [STATE(696)] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_macro_rules_BANG] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_u8] = ACTIONS(2709), + [anon_sym_i8] = ACTIONS(2709), + [anon_sym_u16] = ACTIONS(2709), + [anon_sym_i16] = ACTIONS(2709), + [anon_sym_u32] = ACTIONS(2709), + [anon_sym_i32] = ACTIONS(2709), + [anon_sym_u64] = ACTIONS(2709), + [anon_sym_i64] = ACTIONS(2709), + [anon_sym_u128] = ACTIONS(2709), + [anon_sym_i128] = ACTIONS(2709), + [anon_sym_isize] = ACTIONS(2709), + [anon_sym_usize] = ACTIONS(2709), + [anon_sym_f32] = ACTIONS(2709), + [anon_sym_f64] = ACTIONS(2709), + [anon_sym_bool] = ACTIONS(2709), + [anon_sym_str] = ACTIONS(2709), + [anon_sym_char] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2707), + [anon_sym_LT] = ACTIONS(2707), + [anon_sym_DOT_DOT] = ACTIONS(2707), + [anon_sym_COLON_COLON] = ACTIONS(2707), + [anon_sym_POUND] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_async] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_fn] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_gen] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_impl] = ACTIONS(2709), + [anon_sym_let] = ACTIONS(2709), + [anon_sym_loop] = ACTIONS(2709), + [anon_sym_match] = ACTIONS(2709), + [anon_sym_mod] = ACTIONS(2709), + [anon_sym_pub] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_trait] = ACTIONS(2709), + [anon_sym_type] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_unsafe] = ACTIONS(2709), + [anon_sym_use] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_yield] = ACTIONS(2709), + [anon_sym_move] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [sym_integer_literal] = ACTIONS(2707), + [aux_sym_string_literal_token1] = ACTIONS(2707), + [sym_char_literal] = ACTIONS(2707), + [anon_sym_true] = ACTIONS(2709), + [anon_sym_false] = ACTIONS(2709), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2709), + [sym_super] = ACTIONS(2709), + [sym_crate] = ACTIONS(2709), + [sym_metavariable] = ACTIONS(2707), + [sym__raw_string_literal_start] = ACTIONS(2707), + [sym_float_literal] = ACTIONS(2707), + }, + [STATE(697)] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), + [ts_builtin_sym_end] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_macro_rules_BANG] = ACTIONS(2711), + [anon_sym_LPAREN] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_u8] = ACTIONS(2713), + [anon_sym_i8] = ACTIONS(2713), + [anon_sym_u16] = ACTIONS(2713), + [anon_sym_i16] = ACTIONS(2713), + [anon_sym_u32] = ACTIONS(2713), + [anon_sym_i32] = ACTIONS(2713), + [anon_sym_u64] = ACTIONS(2713), + [anon_sym_i64] = ACTIONS(2713), + [anon_sym_u128] = ACTIONS(2713), + [anon_sym_i128] = ACTIONS(2713), + [anon_sym_isize] = ACTIONS(2713), + [anon_sym_usize] = ACTIONS(2713), + [anon_sym_f32] = ACTIONS(2713), + [anon_sym_f64] = ACTIONS(2713), + [anon_sym_bool] = ACTIONS(2713), + [anon_sym_str] = ACTIONS(2713), + [anon_sym_char] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2711), + [anon_sym_LT] = ACTIONS(2711), + [anon_sym_DOT_DOT] = ACTIONS(2711), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_async] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_fn] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_gen] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_impl] = ACTIONS(2713), + [anon_sym_let] = ACTIONS(2713), + [anon_sym_loop] = ACTIONS(2713), + [anon_sym_match] = ACTIONS(2713), + [anon_sym_mod] = ACTIONS(2713), + [anon_sym_pub] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_trait] = ACTIONS(2713), + [anon_sym_type] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_unsafe] = ACTIONS(2713), + [anon_sym_use] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym_yield] = ACTIONS(2713), + [anon_sym_move] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2711), + [aux_sym_string_literal_token1] = ACTIONS(2711), + [sym_char_literal] = ACTIONS(2711), + [anon_sym_true] = ACTIONS(2713), + [anon_sym_false] = ACTIONS(2713), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2713), + [sym_super] = ACTIONS(2713), + [sym_crate] = ACTIONS(2713), + [sym_metavariable] = ACTIONS(2711), + [sym__raw_string_literal_start] = ACTIONS(2711), + [sym_float_literal] = ACTIONS(2711), + }, + [STATE(698)] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), + [ts_builtin_sym_end] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_macro_rules_BANG] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_u8] = ACTIONS(2717), + [anon_sym_i8] = ACTIONS(2717), + [anon_sym_u16] = ACTIONS(2717), + [anon_sym_i16] = ACTIONS(2717), + [anon_sym_u32] = ACTIONS(2717), + [anon_sym_i32] = ACTIONS(2717), + [anon_sym_u64] = ACTIONS(2717), + [anon_sym_i64] = ACTIONS(2717), + [anon_sym_u128] = ACTIONS(2717), + [anon_sym_i128] = ACTIONS(2717), + [anon_sym_isize] = ACTIONS(2717), + [anon_sym_usize] = ACTIONS(2717), + [anon_sym_f32] = ACTIONS(2717), + [anon_sym_f64] = ACTIONS(2717), + [anon_sym_bool] = ACTIONS(2717), + [anon_sym_str] = ACTIONS(2717), + [anon_sym_char] = ACTIONS(2717), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_DOT_DOT] = ACTIONS(2715), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2717), + [anon_sym_async] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_fn] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_gen] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_impl] = ACTIONS(2717), + [anon_sym_let] = ACTIONS(2717), + [anon_sym_loop] = ACTIONS(2717), + [anon_sym_match] = ACTIONS(2717), + [anon_sym_mod] = ACTIONS(2717), + [anon_sym_pub] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_trait] = ACTIONS(2717), + [anon_sym_type] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_unsafe] = ACTIONS(2717), + [anon_sym_use] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym_yield] = ACTIONS(2717), + [anon_sym_move] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [sym_integer_literal] = ACTIONS(2715), + [aux_sym_string_literal_token1] = ACTIONS(2715), + [sym_char_literal] = ACTIONS(2715), + [anon_sym_true] = ACTIONS(2717), + [anon_sym_false] = ACTIONS(2717), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2717), + [sym_super] = ACTIONS(2717), + [sym_crate] = ACTIONS(2717), + [sym_metavariable] = ACTIONS(2715), + [sym__raw_string_literal_start] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), + }, + [STATE(699)] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_macro_rules_BANG] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_u8] = ACTIONS(2721), + [anon_sym_i8] = ACTIONS(2721), + [anon_sym_u16] = ACTIONS(2721), + [anon_sym_i16] = ACTIONS(2721), + [anon_sym_u32] = ACTIONS(2721), + [anon_sym_i32] = ACTIONS(2721), + [anon_sym_u64] = ACTIONS(2721), + [anon_sym_i64] = ACTIONS(2721), + [anon_sym_u128] = ACTIONS(2721), + [anon_sym_i128] = ACTIONS(2721), + [anon_sym_isize] = ACTIONS(2721), + [anon_sym_usize] = ACTIONS(2721), + [anon_sym_f32] = ACTIONS(2721), + [anon_sym_f64] = ACTIONS(2721), + [anon_sym_bool] = ACTIONS(2721), + [anon_sym_str] = ACTIONS(2721), + [anon_sym_char] = ACTIONS(2721), + [anon_sym_DASH] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_DOT_DOT] = ACTIONS(2719), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_POUND] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2721), + [anon_sym_async] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_fn] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_gen] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_impl] = ACTIONS(2721), + [anon_sym_let] = ACTIONS(2721), + [anon_sym_loop] = ACTIONS(2721), + [anon_sym_match] = ACTIONS(2721), + [anon_sym_mod] = ACTIONS(2721), + [anon_sym_pub] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_trait] = ACTIONS(2721), + [anon_sym_type] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_unsafe] = ACTIONS(2721), + [anon_sym_use] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym_yield] = ACTIONS(2721), + [anon_sym_move] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [sym_integer_literal] = ACTIONS(2719), + [aux_sym_string_literal_token1] = ACTIONS(2719), + [sym_char_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2721), + [anon_sym_false] = ACTIONS(2721), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2721), + [sym_super] = ACTIONS(2721), + [sym_crate] = ACTIONS(2721), + [sym_metavariable] = ACTIONS(2719), + [sym__raw_string_literal_start] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(2719), + }, + [STATE(700)] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_macro_rules_BANG] = ACTIONS(2723), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_u8] = ACTIONS(2725), + [anon_sym_i8] = ACTIONS(2725), + [anon_sym_u16] = ACTIONS(2725), + [anon_sym_i16] = ACTIONS(2725), + [anon_sym_u32] = ACTIONS(2725), + [anon_sym_i32] = ACTIONS(2725), + [anon_sym_u64] = ACTIONS(2725), + [anon_sym_i64] = ACTIONS(2725), + [anon_sym_u128] = ACTIONS(2725), + [anon_sym_i128] = ACTIONS(2725), + [anon_sym_isize] = ACTIONS(2725), + [anon_sym_usize] = ACTIONS(2725), + [anon_sym_f32] = ACTIONS(2725), + [anon_sym_f64] = ACTIONS(2725), + [anon_sym_bool] = ACTIONS(2725), + [anon_sym_str] = ACTIONS(2725), + [anon_sym_char] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_DOT_DOT] = ACTIONS(2723), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_POUND] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2725), + [anon_sym_async] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_fn] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_gen] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_impl] = ACTIONS(2725), + [anon_sym_let] = ACTIONS(2725), + [anon_sym_loop] = ACTIONS(2725), + [anon_sym_match] = ACTIONS(2725), + [anon_sym_mod] = ACTIONS(2725), + [anon_sym_pub] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_trait] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_unsafe] = ACTIONS(2725), + [anon_sym_use] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym_yield] = ACTIONS(2725), + [anon_sym_move] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [sym_integer_literal] = ACTIONS(2723), + [aux_sym_string_literal_token1] = ACTIONS(2723), + [sym_char_literal] = ACTIONS(2723), + [anon_sym_true] = ACTIONS(2725), + [anon_sym_false] = ACTIONS(2725), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2725), + [sym_super] = ACTIONS(2725), + [sym_crate] = ACTIONS(2725), + [sym_metavariable] = ACTIONS(2723), + [sym__raw_string_literal_start] = ACTIONS(2723), + [sym_float_literal] = ACTIONS(2723), + }, + [STATE(701)] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_macro_rules_BANG] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_u8] = ACTIONS(2729), + [anon_sym_i8] = ACTIONS(2729), + [anon_sym_u16] = ACTIONS(2729), + [anon_sym_i16] = ACTIONS(2729), + [anon_sym_u32] = ACTIONS(2729), + [anon_sym_i32] = ACTIONS(2729), + [anon_sym_u64] = ACTIONS(2729), + [anon_sym_i64] = ACTIONS(2729), + [anon_sym_u128] = ACTIONS(2729), + [anon_sym_i128] = ACTIONS(2729), + [anon_sym_isize] = ACTIONS(2729), + [anon_sym_usize] = ACTIONS(2729), + [anon_sym_f32] = ACTIONS(2729), + [anon_sym_f64] = ACTIONS(2729), + [anon_sym_bool] = ACTIONS(2729), + [anon_sym_str] = ACTIONS(2729), + [anon_sym_char] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_DOT_DOT] = ACTIONS(2727), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_POUND] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2729), + [anon_sym_async] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_fn] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_gen] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_impl] = ACTIONS(2729), + [anon_sym_let] = ACTIONS(2729), + [anon_sym_loop] = ACTIONS(2729), + [anon_sym_match] = ACTIONS(2729), + [anon_sym_mod] = ACTIONS(2729), + [anon_sym_pub] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_trait] = ACTIONS(2729), + [anon_sym_type] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_unsafe] = ACTIONS(2729), + [anon_sym_use] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym_yield] = ACTIONS(2729), + [anon_sym_move] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [sym_integer_literal] = ACTIONS(2727), + [aux_sym_string_literal_token1] = ACTIONS(2727), + [sym_char_literal] = ACTIONS(2727), + [anon_sym_true] = ACTIONS(2729), + [anon_sym_false] = ACTIONS(2729), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2729), + [sym_super] = ACTIONS(2729), + [sym_crate] = ACTIONS(2729), + [sym_metavariable] = ACTIONS(2727), + [sym__raw_string_literal_start] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), + }, + [STATE(702)] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), + [ts_builtin_sym_end] = ACTIONS(2731), + [sym_identifier] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_macro_rules_BANG] = ACTIONS(2731), + [anon_sym_LPAREN] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_RBRACE] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_u8] = ACTIONS(2733), + [anon_sym_i8] = ACTIONS(2733), + [anon_sym_u16] = ACTIONS(2733), + [anon_sym_i16] = ACTIONS(2733), + [anon_sym_u32] = ACTIONS(2733), + [anon_sym_i32] = ACTIONS(2733), + [anon_sym_u64] = ACTIONS(2733), + [anon_sym_i64] = ACTIONS(2733), + [anon_sym_u128] = ACTIONS(2733), + [anon_sym_i128] = ACTIONS(2733), + [anon_sym_isize] = ACTIONS(2733), + [anon_sym_usize] = ACTIONS(2733), + [anon_sym_f32] = ACTIONS(2733), + [anon_sym_f64] = ACTIONS(2733), + [anon_sym_bool] = ACTIONS(2733), + [anon_sym_str] = ACTIONS(2733), + [anon_sym_char] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_PIPE] = ACTIONS(2731), + [anon_sym_LT] = ACTIONS(2731), + [anon_sym_DOT_DOT] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_POUND] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_async] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_fn] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_gen] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_impl] = ACTIONS(2733), + [anon_sym_let] = ACTIONS(2733), + [anon_sym_loop] = ACTIONS(2733), + [anon_sym_match] = ACTIONS(2733), + [anon_sym_mod] = ACTIONS(2733), + [anon_sym_pub] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(2733), + [anon_sym_trait] = ACTIONS(2733), + [anon_sym_type] = ACTIONS(2733), + [anon_sym_union] = ACTIONS(2733), + [anon_sym_unsafe] = ACTIONS(2733), + [anon_sym_use] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym_yield] = ACTIONS(2733), + [anon_sym_move] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [sym_integer_literal] = ACTIONS(2731), + [aux_sym_string_literal_token1] = ACTIONS(2731), + [sym_char_literal] = ACTIONS(2731), + [anon_sym_true] = ACTIONS(2733), + [anon_sym_false] = ACTIONS(2733), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2733), + [sym_super] = ACTIONS(2733), + [sym_crate] = ACTIONS(2733), + [sym_metavariable] = ACTIONS(2731), + [sym__raw_string_literal_start] = ACTIONS(2731), + [sym_float_literal] = ACTIONS(2731), + }, [STATE(703)] = { [sym_line_comment] = STATE(703), [sym_block_comment] = STATE(703), - [ts_builtin_sym_end] = ACTIONS(2653), - [sym_identifier] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2653), - [anon_sym_macro_rules_BANG] = ACTIONS(2653), - [anon_sym_LPAREN] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2653), - [anon_sym_LBRACE] = ACTIONS(2653), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_STAR] = ACTIONS(2653), - [anon_sym_u8] = ACTIONS(2655), - [anon_sym_i8] = ACTIONS(2655), - [anon_sym_u16] = ACTIONS(2655), - [anon_sym_i16] = ACTIONS(2655), - [anon_sym_u32] = ACTIONS(2655), - [anon_sym_i32] = ACTIONS(2655), - [anon_sym_u64] = ACTIONS(2655), - [anon_sym_i64] = ACTIONS(2655), - [anon_sym_u128] = ACTIONS(2655), - [anon_sym_i128] = ACTIONS(2655), - [anon_sym_isize] = ACTIONS(2655), - [anon_sym_usize] = ACTIONS(2655), - [anon_sym_f32] = ACTIONS(2655), - [anon_sym_f64] = ACTIONS(2655), - [anon_sym_bool] = ACTIONS(2655), - [anon_sym_str] = ACTIONS(2655), - [anon_sym_char] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2653), - [anon_sym_BANG] = ACTIONS(2653), - [anon_sym_AMP] = ACTIONS(2653), - [anon_sym_PIPE] = ACTIONS(2653), - [anon_sym_LT] = ACTIONS(2653), - [anon_sym_DOT_DOT] = ACTIONS(2653), - [anon_sym_COLON_COLON] = ACTIONS(2653), - [anon_sym_POUND] = ACTIONS(2653), - [anon_sym_SQUOTE] = ACTIONS(2655), - [anon_sym_async] = ACTIONS(2655), - [anon_sym_break] = ACTIONS(2655), - [anon_sym_const] = ACTIONS(2655), - [anon_sym_continue] = ACTIONS(2655), - [anon_sym_default] = ACTIONS(2655), - [anon_sym_enum] = ACTIONS(2655), - [anon_sym_fn] = ACTIONS(2655), - [anon_sym_for] = ACTIONS(2655), - [anon_sym_gen] = ACTIONS(2655), - [anon_sym_if] = ACTIONS(2655), - [anon_sym_impl] = ACTIONS(2655), - [anon_sym_let] = ACTIONS(2655), - [anon_sym_loop] = ACTIONS(2655), - [anon_sym_match] = ACTIONS(2655), - [anon_sym_mod] = ACTIONS(2655), - [anon_sym_pub] = ACTIONS(2655), - [anon_sym_return] = ACTIONS(2655), - [anon_sym_static] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(2655), - [anon_sym_trait] = ACTIONS(2655), - [anon_sym_type] = ACTIONS(2655), - [anon_sym_union] = ACTIONS(2655), - [anon_sym_unsafe] = ACTIONS(2655), - [anon_sym_use] = ACTIONS(2655), - [anon_sym_while] = ACTIONS(2655), - [anon_sym_extern] = ACTIONS(2655), - [anon_sym_yield] = ACTIONS(2655), - [anon_sym_move] = ACTIONS(2655), - [anon_sym_try] = ACTIONS(2655), - [sym_integer_literal] = ACTIONS(2653), - [aux_sym_string_literal_token1] = ACTIONS(2653), - [sym_char_literal] = ACTIONS(2653), - [anon_sym_true] = ACTIONS(2655), - [anon_sym_false] = ACTIONS(2655), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2655), - [sym_super] = ACTIONS(2655), - [sym_crate] = ACTIONS(2655), - [sym_metavariable] = ACTIONS(2653), - [sym__raw_string_literal_start] = ACTIONS(2653), - [sym_float_literal] = ACTIONS(2653), + [ts_builtin_sym_end] = ACTIONS(2735), + [sym_identifier] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2735), + [anon_sym_macro_rules_BANG] = ACTIONS(2735), + [anon_sym_LPAREN] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_RBRACE] = ACTIONS(2735), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_u8] = ACTIONS(2737), + [anon_sym_i8] = ACTIONS(2737), + [anon_sym_u16] = ACTIONS(2737), + [anon_sym_i16] = ACTIONS(2737), + [anon_sym_u32] = ACTIONS(2737), + [anon_sym_i32] = ACTIONS(2737), + [anon_sym_u64] = ACTIONS(2737), + [anon_sym_i64] = ACTIONS(2737), + [anon_sym_u128] = ACTIONS(2737), + [anon_sym_i128] = ACTIONS(2737), + [anon_sym_isize] = ACTIONS(2737), + [anon_sym_usize] = ACTIONS(2737), + [anon_sym_f32] = ACTIONS(2737), + [anon_sym_f64] = ACTIONS(2737), + [anon_sym_bool] = ACTIONS(2737), + [anon_sym_str] = ACTIONS(2737), + [anon_sym_char] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2735), + [anon_sym_PIPE] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_DOT_DOT] = ACTIONS(2735), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_POUND] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2737), + [anon_sym_async] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_fn] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_gen] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_impl] = ACTIONS(2737), + [anon_sym_let] = ACTIONS(2737), + [anon_sym_loop] = ACTIONS(2737), + [anon_sym_match] = ACTIONS(2737), + [anon_sym_mod] = ACTIONS(2737), + [anon_sym_pub] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_trait] = ACTIONS(2737), + [anon_sym_type] = ACTIONS(2737), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_unsafe] = ACTIONS(2737), + [anon_sym_use] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_extern] = ACTIONS(2737), + [anon_sym_yield] = ACTIONS(2737), + [anon_sym_move] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [sym_integer_literal] = ACTIONS(2735), + [aux_sym_string_literal_token1] = ACTIONS(2735), + [sym_char_literal] = ACTIONS(2735), + [anon_sym_true] = ACTIONS(2737), + [anon_sym_false] = ACTIONS(2737), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2737), + [sym_super] = ACTIONS(2737), + [sym_crate] = ACTIONS(2737), + [sym_metavariable] = ACTIONS(2735), + [sym__raw_string_literal_start] = ACTIONS(2735), + [sym_float_literal] = ACTIONS(2735), }, [STATE(704)] = { [sym_line_comment] = STATE(704), [sym_block_comment] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(2657), - [sym_identifier] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym_macro_rules_BANG] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2657), - [anon_sym_LBRACE] = ACTIONS(2657), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_STAR] = ACTIONS(2657), - [anon_sym_u8] = ACTIONS(2659), - [anon_sym_i8] = ACTIONS(2659), - [anon_sym_u16] = ACTIONS(2659), - [anon_sym_i16] = ACTIONS(2659), - [anon_sym_u32] = ACTIONS(2659), - [anon_sym_i32] = ACTIONS(2659), - [anon_sym_u64] = ACTIONS(2659), - [anon_sym_i64] = ACTIONS(2659), - [anon_sym_u128] = ACTIONS(2659), - [anon_sym_i128] = ACTIONS(2659), - [anon_sym_isize] = ACTIONS(2659), - [anon_sym_usize] = ACTIONS(2659), - [anon_sym_f32] = ACTIONS(2659), - [anon_sym_f64] = ACTIONS(2659), - [anon_sym_bool] = ACTIONS(2659), - [anon_sym_str] = ACTIONS(2659), - [anon_sym_char] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2657), - [anon_sym_BANG] = ACTIONS(2657), - [anon_sym_AMP] = ACTIONS(2657), - [anon_sym_PIPE] = ACTIONS(2657), - [anon_sym_LT] = ACTIONS(2657), - [anon_sym_DOT_DOT] = ACTIONS(2657), - [anon_sym_COLON_COLON] = ACTIONS(2657), - [anon_sym_POUND] = ACTIONS(2657), - [anon_sym_SQUOTE] = ACTIONS(2659), - [anon_sym_async] = ACTIONS(2659), - [anon_sym_break] = ACTIONS(2659), - [anon_sym_const] = ACTIONS(2659), - [anon_sym_continue] = ACTIONS(2659), - [anon_sym_default] = ACTIONS(2659), - [anon_sym_enum] = ACTIONS(2659), - [anon_sym_fn] = ACTIONS(2659), - [anon_sym_for] = ACTIONS(2659), - [anon_sym_gen] = ACTIONS(2659), - [anon_sym_if] = ACTIONS(2659), - [anon_sym_impl] = ACTIONS(2659), - [anon_sym_let] = ACTIONS(2659), - [anon_sym_loop] = ACTIONS(2659), - [anon_sym_match] = ACTIONS(2659), - [anon_sym_mod] = ACTIONS(2659), - [anon_sym_pub] = ACTIONS(2659), - [anon_sym_return] = ACTIONS(2659), - [anon_sym_static] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(2659), - [anon_sym_trait] = ACTIONS(2659), - [anon_sym_type] = ACTIONS(2659), - [anon_sym_union] = ACTIONS(2659), - [anon_sym_unsafe] = ACTIONS(2659), - [anon_sym_use] = ACTIONS(2659), - [anon_sym_while] = ACTIONS(2659), - [anon_sym_extern] = ACTIONS(2659), - [anon_sym_yield] = ACTIONS(2659), - [anon_sym_move] = ACTIONS(2659), - [anon_sym_try] = ACTIONS(2659), - [sym_integer_literal] = ACTIONS(2657), - [aux_sym_string_literal_token1] = ACTIONS(2657), - [sym_char_literal] = ACTIONS(2657), - [anon_sym_true] = ACTIONS(2659), - [anon_sym_false] = ACTIONS(2659), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2659), - [sym_super] = ACTIONS(2659), - [sym_crate] = ACTIONS(2659), - [sym_metavariable] = ACTIONS(2657), - [sym__raw_string_literal_start] = ACTIONS(2657), - [sym_float_literal] = ACTIONS(2657), + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_macro_rules_BANG] = ACTIONS(2739), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_RBRACE] = ACTIONS(2739), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_u8] = ACTIONS(2741), + [anon_sym_i8] = ACTIONS(2741), + [anon_sym_u16] = ACTIONS(2741), + [anon_sym_i16] = ACTIONS(2741), + [anon_sym_u32] = ACTIONS(2741), + [anon_sym_i32] = ACTIONS(2741), + [anon_sym_u64] = ACTIONS(2741), + [anon_sym_i64] = ACTIONS(2741), + [anon_sym_u128] = ACTIONS(2741), + [anon_sym_i128] = ACTIONS(2741), + [anon_sym_isize] = ACTIONS(2741), + [anon_sym_usize] = ACTIONS(2741), + [anon_sym_f32] = ACTIONS(2741), + [anon_sym_f64] = ACTIONS(2741), + [anon_sym_bool] = ACTIONS(2741), + [anon_sym_str] = ACTIONS(2741), + [anon_sym_char] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2739), + [anon_sym_PIPE] = ACTIONS(2739), + [anon_sym_LT] = ACTIONS(2739), + [anon_sym_DOT_DOT] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_POUND] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_async] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_gen] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_impl] = ACTIONS(2741), + [anon_sym_let] = ACTIONS(2741), + [anon_sym_loop] = ACTIONS(2741), + [anon_sym_match] = ACTIONS(2741), + [anon_sym_mod] = ACTIONS(2741), + [anon_sym_pub] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_trait] = ACTIONS(2741), + [anon_sym_type] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_unsafe] = ACTIONS(2741), + [anon_sym_use] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_extern] = ACTIONS(2741), + [anon_sym_yield] = ACTIONS(2741), + [anon_sym_move] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [sym_integer_literal] = ACTIONS(2739), + [aux_sym_string_literal_token1] = ACTIONS(2739), + [sym_char_literal] = ACTIONS(2739), + [anon_sym_true] = ACTIONS(2741), + [anon_sym_false] = ACTIONS(2741), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2741), + [sym_super] = ACTIONS(2741), + [sym_crate] = ACTIONS(2741), + [sym_metavariable] = ACTIONS(2739), + [sym__raw_string_literal_start] = ACTIONS(2739), + [sym_float_literal] = ACTIONS(2739), }, [STATE(705)] = { [sym_line_comment] = STATE(705), [sym_block_comment] = STATE(705), - [ts_builtin_sym_end] = ACTIONS(2661), - [sym_identifier] = ACTIONS(2663), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_macro_rules_BANG] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_LBRACK] = ACTIONS(2661), - [anon_sym_LBRACE] = ACTIONS(2661), - [anon_sym_RBRACE] = ACTIONS(2661), - [anon_sym_STAR] = ACTIONS(2661), - [anon_sym_u8] = ACTIONS(2663), - [anon_sym_i8] = ACTIONS(2663), - [anon_sym_u16] = ACTIONS(2663), - [anon_sym_i16] = ACTIONS(2663), - [anon_sym_u32] = ACTIONS(2663), - [anon_sym_i32] = ACTIONS(2663), - [anon_sym_u64] = ACTIONS(2663), - [anon_sym_i64] = ACTIONS(2663), - [anon_sym_u128] = ACTIONS(2663), - [anon_sym_i128] = ACTIONS(2663), - [anon_sym_isize] = ACTIONS(2663), - [anon_sym_usize] = ACTIONS(2663), - [anon_sym_f32] = ACTIONS(2663), - [anon_sym_f64] = ACTIONS(2663), - [anon_sym_bool] = ACTIONS(2663), - [anon_sym_str] = ACTIONS(2663), - [anon_sym_char] = ACTIONS(2663), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_BANG] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2661), - [anon_sym_PIPE] = ACTIONS(2661), - [anon_sym_LT] = ACTIONS(2661), - [anon_sym_DOT_DOT] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2661), - [anon_sym_POUND] = ACTIONS(2661), - [anon_sym_SQUOTE] = ACTIONS(2663), - [anon_sym_async] = ACTIONS(2663), - [anon_sym_break] = ACTIONS(2663), - [anon_sym_const] = ACTIONS(2663), - [anon_sym_continue] = ACTIONS(2663), - [anon_sym_default] = ACTIONS(2663), - [anon_sym_enum] = ACTIONS(2663), - [anon_sym_fn] = ACTIONS(2663), - [anon_sym_for] = ACTIONS(2663), - [anon_sym_gen] = ACTIONS(2663), - [anon_sym_if] = ACTIONS(2663), - [anon_sym_impl] = ACTIONS(2663), - [anon_sym_let] = ACTIONS(2663), - [anon_sym_loop] = ACTIONS(2663), - [anon_sym_match] = ACTIONS(2663), - [anon_sym_mod] = ACTIONS(2663), - [anon_sym_pub] = ACTIONS(2663), - [anon_sym_return] = ACTIONS(2663), - [anon_sym_static] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(2663), - [anon_sym_trait] = ACTIONS(2663), - [anon_sym_type] = ACTIONS(2663), - [anon_sym_union] = ACTIONS(2663), - [anon_sym_unsafe] = ACTIONS(2663), - [anon_sym_use] = ACTIONS(2663), - [anon_sym_while] = ACTIONS(2663), - [anon_sym_extern] = ACTIONS(2663), - [anon_sym_yield] = ACTIONS(2663), - [anon_sym_move] = ACTIONS(2663), - [anon_sym_try] = ACTIONS(2663), - [sym_integer_literal] = ACTIONS(2661), - [aux_sym_string_literal_token1] = ACTIONS(2661), - [sym_char_literal] = ACTIONS(2661), - [anon_sym_true] = ACTIONS(2663), - [anon_sym_false] = ACTIONS(2663), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2663), - [sym_super] = ACTIONS(2663), - [sym_crate] = ACTIONS(2663), - [sym_metavariable] = ACTIONS(2661), - [sym__raw_string_literal_start] = ACTIONS(2661), - [sym_float_literal] = ACTIONS(2661), + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_macro_rules_BANG] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_u8] = ACTIONS(2745), + [anon_sym_i8] = ACTIONS(2745), + [anon_sym_u16] = ACTIONS(2745), + [anon_sym_i16] = ACTIONS(2745), + [anon_sym_u32] = ACTIONS(2745), + [anon_sym_i32] = ACTIONS(2745), + [anon_sym_u64] = ACTIONS(2745), + [anon_sym_i64] = ACTIONS(2745), + [anon_sym_u128] = ACTIONS(2745), + [anon_sym_i128] = ACTIONS(2745), + [anon_sym_isize] = ACTIONS(2745), + [anon_sym_usize] = ACTIONS(2745), + [anon_sym_f32] = ACTIONS(2745), + [anon_sym_f64] = ACTIONS(2745), + [anon_sym_bool] = ACTIONS(2745), + [anon_sym_str] = ACTIONS(2745), + [anon_sym_char] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_DOT_DOT] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2743), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_async] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_default] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_gen] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_impl] = ACTIONS(2745), + [anon_sym_let] = ACTIONS(2745), + [anon_sym_loop] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_mod] = ACTIONS(2745), + [anon_sym_pub] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_trait] = ACTIONS(2745), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_unsafe] = ACTIONS(2745), + [anon_sym_use] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_extern] = ACTIONS(2745), + [anon_sym_yield] = ACTIONS(2745), + [anon_sym_move] = ACTIONS(2745), + [anon_sym_try] = ACTIONS(2745), + [sym_integer_literal] = ACTIONS(2743), + [aux_sym_string_literal_token1] = ACTIONS(2743), + [sym_char_literal] = ACTIONS(2743), + [anon_sym_true] = ACTIONS(2745), + [anon_sym_false] = ACTIONS(2745), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2745), + [sym_super] = ACTIONS(2745), + [sym_crate] = ACTIONS(2745), + [sym_metavariable] = ACTIONS(2743), + [sym__raw_string_literal_start] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(2743), }, [STATE(706)] = { [sym_line_comment] = STATE(706), [sym_block_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(2665), - [sym_identifier] = ACTIONS(2667), - [anon_sym_SEMI] = ACTIONS(2665), - [anon_sym_macro_rules_BANG] = ACTIONS(2665), - [anon_sym_LPAREN] = ACTIONS(2665), - [anon_sym_LBRACK] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_RBRACE] = ACTIONS(2665), - [anon_sym_STAR] = ACTIONS(2665), - [anon_sym_u8] = ACTIONS(2667), - [anon_sym_i8] = ACTIONS(2667), - [anon_sym_u16] = ACTIONS(2667), - [anon_sym_i16] = ACTIONS(2667), - [anon_sym_u32] = ACTIONS(2667), - [anon_sym_i32] = ACTIONS(2667), - [anon_sym_u64] = ACTIONS(2667), - [anon_sym_i64] = ACTIONS(2667), - [anon_sym_u128] = ACTIONS(2667), - [anon_sym_i128] = ACTIONS(2667), - [anon_sym_isize] = ACTIONS(2667), - [anon_sym_usize] = ACTIONS(2667), - [anon_sym_f32] = ACTIONS(2667), - [anon_sym_f64] = ACTIONS(2667), - [anon_sym_bool] = ACTIONS(2667), - [anon_sym_str] = ACTIONS(2667), - [anon_sym_char] = ACTIONS(2667), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_BANG] = ACTIONS(2665), - [anon_sym_AMP] = ACTIONS(2665), - [anon_sym_PIPE] = ACTIONS(2665), - [anon_sym_LT] = ACTIONS(2665), - [anon_sym_DOT_DOT] = ACTIONS(2665), - [anon_sym_COLON_COLON] = ACTIONS(2665), - [anon_sym_POUND] = ACTIONS(2665), - [anon_sym_SQUOTE] = ACTIONS(2667), - [anon_sym_async] = ACTIONS(2667), - [anon_sym_break] = ACTIONS(2667), - [anon_sym_const] = ACTIONS(2667), - [anon_sym_continue] = ACTIONS(2667), - [anon_sym_default] = ACTIONS(2667), - [anon_sym_enum] = ACTIONS(2667), - [anon_sym_fn] = ACTIONS(2667), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_gen] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2667), - [anon_sym_impl] = ACTIONS(2667), - [anon_sym_let] = ACTIONS(2667), - [anon_sym_loop] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2667), - [anon_sym_mod] = ACTIONS(2667), - [anon_sym_pub] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2667), - [anon_sym_static] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2667), - [anon_sym_trait] = ACTIONS(2667), - [anon_sym_type] = ACTIONS(2667), - [anon_sym_union] = ACTIONS(2667), - [anon_sym_unsafe] = ACTIONS(2667), - [anon_sym_use] = ACTIONS(2667), - [anon_sym_while] = ACTIONS(2667), - [anon_sym_extern] = ACTIONS(2667), - [anon_sym_yield] = ACTIONS(2667), - [anon_sym_move] = ACTIONS(2667), - [anon_sym_try] = ACTIONS(2667), - [sym_integer_literal] = ACTIONS(2665), - [aux_sym_string_literal_token1] = ACTIONS(2665), - [sym_char_literal] = ACTIONS(2665), - [anon_sym_true] = ACTIONS(2667), - [anon_sym_false] = ACTIONS(2667), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2667), - [sym_super] = ACTIONS(2667), - [sym_crate] = ACTIONS(2667), - [sym_metavariable] = ACTIONS(2665), - [sym__raw_string_literal_start] = ACTIONS(2665), - [sym_float_literal] = ACTIONS(2665), + [ts_builtin_sym_end] = ACTIONS(2747), + [sym_identifier] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2747), + [anon_sym_macro_rules_BANG] = ACTIONS(2747), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_RBRACE] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_u8] = ACTIONS(2749), + [anon_sym_i8] = ACTIONS(2749), + [anon_sym_u16] = ACTIONS(2749), + [anon_sym_i16] = ACTIONS(2749), + [anon_sym_u32] = ACTIONS(2749), + [anon_sym_i32] = ACTIONS(2749), + [anon_sym_u64] = ACTIONS(2749), + [anon_sym_i64] = ACTIONS(2749), + [anon_sym_u128] = ACTIONS(2749), + [anon_sym_i128] = ACTIONS(2749), + [anon_sym_isize] = ACTIONS(2749), + [anon_sym_usize] = ACTIONS(2749), + [anon_sym_f32] = ACTIONS(2749), + [anon_sym_f64] = ACTIONS(2749), + [anon_sym_bool] = ACTIONS(2749), + [anon_sym_str] = ACTIONS(2749), + [anon_sym_char] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2747), + [anon_sym_LT] = ACTIONS(2747), + [anon_sym_DOT_DOT] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_POUND] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_async] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_fn] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_gen] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_impl] = ACTIONS(2749), + [anon_sym_let] = ACTIONS(2749), + [anon_sym_loop] = ACTIONS(2749), + [anon_sym_match] = ACTIONS(2749), + [anon_sym_mod] = ACTIONS(2749), + [anon_sym_pub] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_trait] = ACTIONS(2749), + [anon_sym_type] = ACTIONS(2749), + [anon_sym_union] = ACTIONS(2749), + [anon_sym_unsafe] = ACTIONS(2749), + [anon_sym_use] = ACTIONS(2749), + [anon_sym_while] = ACTIONS(2749), + [anon_sym_extern] = ACTIONS(2749), + [anon_sym_yield] = ACTIONS(2749), + [anon_sym_move] = ACTIONS(2749), + [anon_sym_try] = ACTIONS(2749), + [sym_integer_literal] = ACTIONS(2747), + [aux_sym_string_literal_token1] = ACTIONS(2747), + [sym_char_literal] = ACTIONS(2747), + [anon_sym_true] = ACTIONS(2749), + [anon_sym_false] = ACTIONS(2749), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2749), + [sym_super] = ACTIONS(2749), + [sym_crate] = ACTIONS(2749), + [sym_metavariable] = ACTIONS(2747), + [sym__raw_string_literal_start] = ACTIONS(2747), + [sym_float_literal] = ACTIONS(2747), }, [STATE(707)] = { [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [ts_builtin_sym_end] = ACTIONS(2669), - [sym_identifier] = ACTIONS(2671), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym_macro_rules_BANG] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_u8] = ACTIONS(2671), - [anon_sym_i8] = ACTIONS(2671), - [anon_sym_u16] = ACTIONS(2671), - [anon_sym_i16] = ACTIONS(2671), - [anon_sym_u32] = ACTIONS(2671), - [anon_sym_i32] = ACTIONS(2671), - [anon_sym_u64] = ACTIONS(2671), - [anon_sym_i64] = ACTIONS(2671), - [anon_sym_u128] = ACTIONS(2671), - [anon_sym_i128] = ACTIONS(2671), - [anon_sym_isize] = ACTIONS(2671), - [anon_sym_usize] = ACTIONS(2671), - [anon_sym_f32] = ACTIONS(2671), - [anon_sym_f64] = ACTIONS(2671), - [anon_sym_bool] = ACTIONS(2671), - [anon_sym_str] = ACTIONS(2671), - [anon_sym_char] = ACTIONS(2671), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_DOT_DOT] = ACTIONS(2669), - [anon_sym_COLON_COLON] = ACTIONS(2669), - [anon_sym_POUND] = ACTIONS(2669), - [anon_sym_SQUOTE] = ACTIONS(2671), - [anon_sym_async] = ACTIONS(2671), - [anon_sym_break] = ACTIONS(2671), - [anon_sym_const] = ACTIONS(2671), - [anon_sym_continue] = ACTIONS(2671), - [anon_sym_default] = ACTIONS(2671), - [anon_sym_enum] = ACTIONS(2671), - [anon_sym_fn] = ACTIONS(2671), - [anon_sym_for] = ACTIONS(2671), - [anon_sym_gen] = ACTIONS(2671), - [anon_sym_if] = ACTIONS(2671), - [anon_sym_impl] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2671), - [anon_sym_loop] = ACTIONS(2671), - [anon_sym_match] = ACTIONS(2671), - [anon_sym_mod] = ACTIONS(2671), - [anon_sym_pub] = ACTIONS(2671), - [anon_sym_return] = ACTIONS(2671), - [anon_sym_static] = ACTIONS(2671), - [anon_sym_struct] = ACTIONS(2671), - [anon_sym_trait] = ACTIONS(2671), - [anon_sym_type] = ACTIONS(2671), - [anon_sym_union] = ACTIONS(2671), - [anon_sym_unsafe] = ACTIONS(2671), - [anon_sym_use] = ACTIONS(2671), - [anon_sym_while] = ACTIONS(2671), - [anon_sym_extern] = ACTIONS(2671), - [anon_sym_yield] = ACTIONS(2671), - [anon_sym_move] = ACTIONS(2671), - [anon_sym_try] = ACTIONS(2671), - [sym_integer_literal] = ACTIONS(2669), - [aux_sym_string_literal_token1] = ACTIONS(2669), - [sym_char_literal] = ACTIONS(2669), - [anon_sym_true] = ACTIONS(2671), - [anon_sym_false] = ACTIONS(2671), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2671), - [sym_super] = ACTIONS(2671), - [sym_crate] = ACTIONS(2671), - [sym_metavariable] = ACTIONS(2669), - [sym__raw_string_literal_start] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2669), + [ts_builtin_sym_end] = ACTIONS(2751), + [sym_identifier] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_macro_rules_BANG] = ACTIONS(2751), + [anon_sym_LPAREN] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_u8] = ACTIONS(2753), + [anon_sym_i8] = ACTIONS(2753), + [anon_sym_u16] = ACTIONS(2753), + [anon_sym_i16] = ACTIONS(2753), + [anon_sym_u32] = ACTIONS(2753), + [anon_sym_i32] = ACTIONS(2753), + [anon_sym_u64] = ACTIONS(2753), + [anon_sym_i64] = ACTIONS(2753), + [anon_sym_u128] = ACTIONS(2753), + [anon_sym_i128] = ACTIONS(2753), + [anon_sym_isize] = ACTIONS(2753), + [anon_sym_usize] = ACTIONS(2753), + [anon_sym_f32] = ACTIONS(2753), + [anon_sym_f64] = ACTIONS(2753), + [anon_sym_bool] = ACTIONS(2753), + [anon_sym_str] = ACTIONS(2753), + [anon_sym_char] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2751), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_DOT_DOT] = ACTIONS(2751), + [anon_sym_COLON_COLON] = ACTIONS(2751), + [anon_sym_POUND] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_const] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), + [anon_sym_fn] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_gen] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_impl] = ACTIONS(2753), + [anon_sym_let] = ACTIONS(2753), + [anon_sym_loop] = ACTIONS(2753), + [anon_sym_match] = ACTIONS(2753), + [anon_sym_mod] = ACTIONS(2753), + [anon_sym_pub] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2753), + [anon_sym_trait] = ACTIONS(2753), + [anon_sym_type] = ACTIONS(2753), + [anon_sym_union] = ACTIONS(2753), + [anon_sym_unsafe] = ACTIONS(2753), + [anon_sym_use] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_extern] = ACTIONS(2753), + [anon_sym_yield] = ACTIONS(2753), + [anon_sym_move] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [sym_integer_literal] = ACTIONS(2751), + [aux_sym_string_literal_token1] = ACTIONS(2751), + [sym_char_literal] = ACTIONS(2751), + [anon_sym_true] = ACTIONS(2753), + [anon_sym_false] = ACTIONS(2753), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2753), + [sym_super] = ACTIONS(2753), + [sym_crate] = ACTIONS(2753), + [sym_metavariable] = ACTIONS(2751), + [sym__raw_string_literal_start] = ACTIONS(2751), + [sym_float_literal] = ACTIONS(2751), }, [STATE(708)] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(2673), - [sym_identifier] = ACTIONS(2675), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym_macro_rules_BANG] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(2673), - [anon_sym_LBRACK] = ACTIONS(2673), - [anon_sym_LBRACE] = ACTIONS(2673), - [anon_sym_RBRACE] = ACTIONS(2673), - [anon_sym_STAR] = ACTIONS(2673), - [anon_sym_u8] = ACTIONS(2675), - [anon_sym_i8] = ACTIONS(2675), - [anon_sym_u16] = ACTIONS(2675), - [anon_sym_i16] = ACTIONS(2675), - [anon_sym_u32] = ACTIONS(2675), - [anon_sym_i32] = ACTIONS(2675), - [anon_sym_u64] = ACTIONS(2675), - [anon_sym_i64] = ACTIONS(2675), - [anon_sym_u128] = ACTIONS(2675), - [anon_sym_i128] = ACTIONS(2675), - [anon_sym_isize] = ACTIONS(2675), - [anon_sym_usize] = ACTIONS(2675), - [anon_sym_f32] = ACTIONS(2675), - [anon_sym_f64] = ACTIONS(2675), - [anon_sym_bool] = ACTIONS(2675), - [anon_sym_str] = ACTIONS(2675), - [anon_sym_char] = ACTIONS(2675), - [anon_sym_DASH] = ACTIONS(2673), - [anon_sym_BANG] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2673), - [anon_sym_PIPE] = ACTIONS(2673), - [anon_sym_LT] = ACTIONS(2673), - [anon_sym_DOT_DOT] = ACTIONS(2673), - [anon_sym_COLON_COLON] = ACTIONS(2673), - [anon_sym_POUND] = ACTIONS(2673), - [anon_sym_SQUOTE] = ACTIONS(2675), - [anon_sym_async] = ACTIONS(2675), - [anon_sym_break] = ACTIONS(2675), - [anon_sym_const] = ACTIONS(2675), - [anon_sym_continue] = ACTIONS(2675), - [anon_sym_default] = ACTIONS(2675), - [anon_sym_enum] = ACTIONS(2675), - [anon_sym_fn] = ACTIONS(2675), - [anon_sym_for] = ACTIONS(2675), - [anon_sym_gen] = ACTIONS(2675), - [anon_sym_if] = ACTIONS(2675), - [anon_sym_impl] = ACTIONS(2675), - [anon_sym_let] = ACTIONS(2675), - [anon_sym_loop] = ACTIONS(2675), - [anon_sym_match] = ACTIONS(2675), - [anon_sym_mod] = ACTIONS(2675), - [anon_sym_pub] = ACTIONS(2675), - [anon_sym_return] = ACTIONS(2675), - [anon_sym_static] = ACTIONS(2675), - [anon_sym_struct] = ACTIONS(2675), - [anon_sym_trait] = ACTIONS(2675), - [anon_sym_type] = ACTIONS(2675), - [anon_sym_union] = ACTIONS(2675), - [anon_sym_unsafe] = ACTIONS(2675), - [anon_sym_use] = ACTIONS(2675), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_extern] = ACTIONS(2675), - [anon_sym_yield] = ACTIONS(2675), - [anon_sym_move] = ACTIONS(2675), - [anon_sym_try] = ACTIONS(2675), - [sym_integer_literal] = ACTIONS(2673), - [aux_sym_string_literal_token1] = ACTIONS(2673), - [sym_char_literal] = ACTIONS(2673), - [anon_sym_true] = ACTIONS(2675), - [anon_sym_false] = ACTIONS(2675), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2675), - [sym_super] = ACTIONS(2675), - [sym_crate] = ACTIONS(2675), - [sym_metavariable] = ACTIONS(2673), - [sym__raw_string_literal_start] = ACTIONS(2673), - [sym_float_literal] = ACTIONS(2673), + [ts_builtin_sym_end] = ACTIONS(2755), + [sym_identifier] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2755), + [anon_sym_macro_rules_BANG] = ACTIONS(2755), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_RBRACE] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_u8] = ACTIONS(2757), + [anon_sym_i8] = ACTIONS(2757), + [anon_sym_u16] = ACTIONS(2757), + [anon_sym_i16] = ACTIONS(2757), + [anon_sym_u32] = ACTIONS(2757), + [anon_sym_i32] = ACTIONS(2757), + [anon_sym_u64] = ACTIONS(2757), + [anon_sym_i64] = ACTIONS(2757), + [anon_sym_u128] = ACTIONS(2757), + [anon_sym_i128] = ACTIONS(2757), + [anon_sym_isize] = ACTIONS(2757), + [anon_sym_usize] = ACTIONS(2757), + [anon_sym_f32] = ACTIONS(2757), + [anon_sym_f64] = ACTIONS(2757), + [anon_sym_bool] = ACTIONS(2757), + [anon_sym_str] = ACTIONS(2757), + [anon_sym_char] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_PIPE] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(2755), + [anon_sym_DOT_DOT] = ACTIONS(2755), + [anon_sym_COLON_COLON] = ACTIONS(2755), + [anon_sym_POUND] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2757), + [anon_sym_async] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_default] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_fn] = ACTIONS(2757), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_gen] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_impl] = ACTIONS(2757), + [anon_sym_let] = ACTIONS(2757), + [anon_sym_loop] = ACTIONS(2757), + [anon_sym_match] = ACTIONS(2757), + [anon_sym_mod] = ACTIONS(2757), + [anon_sym_pub] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_trait] = ACTIONS(2757), + [anon_sym_type] = ACTIONS(2757), + [anon_sym_union] = ACTIONS(2757), + [anon_sym_unsafe] = ACTIONS(2757), + [anon_sym_use] = ACTIONS(2757), + [anon_sym_while] = ACTIONS(2757), + [anon_sym_extern] = ACTIONS(2757), + [anon_sym_yield] = ACTIONS(2757), + [anon_sym_move] = ACTIONS(2757), + [anon_sym_try] = ACTIONS(2757), + [sym_integer_literal] = ACTIONS(2755), + [aux_sym_string_literal_token1] = ACTIONS(2755), + [sym_char_literal] = ACTIONS(2755), + [anon_sym_true] = ACTIONS(2757), + [anon_sym_false] = ACTIONS(2757), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2757), + [sym_super] = ACTIONS(2757), + [sym_crate] = ACTIONS(2757), + [sym_metavariable] = ACTIONS(2755), + [sym__raw_string_literal_start] = ACTIONS(2755), + [sym_float_literal] = ACTIONS(2755), }, [STATE(709)] = { + [sym_empty_statement] = STATE(1201), + [sym_macro_definition] = STATE(1201), + [sym_attribute_item] = STATE(1201), + [sym_inner_attribute_item] = STATE(1201), + [sym_mod_item] = STATE(1201), + [sym_foreign_mod_item] = STATE(1201), + [sym_struct_item] = STATE(1201), + [sym_union_item] = STATE(1201), + [sym_enum_item] = STATE(1201), + [sym_extern_crate_declaration] = STATE(1201), + [sym_const_item] = STATE(1201), + [sym_static_item] = STATE(1201), + [sym_type_item] = STATE(1201), + [sym_function_item] = STATE(1201), + [sym_function_signature_item] = STATE(1201), + [sym_function_modifiers] = STATE(3599), + [sym_impl_item] = STATE(1201), + [sym_trait_item] = STATE(1201), + [sym_associated_type] = STATE(1201), + [sym_let_declaration] = STATE(1201), + [sym_use_declaration] = STATE(1201), + [sym_extern_modifier] = STATE(2148), + [sym_visibility_modifier] = STATE(1952), + [sym_bracketed_type] = STATE(3328), + [sym_generic_type_with_turbofish] = STATE(3354), + [sym_macro_invocation] = STATE(1201), + [sym_scoped_identifier] = STATE(3119), [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [ts_builtin_sym_end] = ACTIONS(2677), - [sym_identifier] = ACTIONS(2679), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_macro_rules_BANG] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(2677), - [anon_sym_LBRACK] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2677), - [anon_sym_RBRACE] = ACTIONS(2677), - [anon_sym_STAR] = ACTIONS(2677), - [anon_sym_u8] = ACTIONS(2679), - [anon_sym_i8] = ACTIONS(2679), - [anon_sym_u16] = ACTIONS(2679), - [anon_sym_i16] = ACTIONS(2679), - [anon_sym_u32] = ACTIONS(2679), - [anon_sym_i32] = ACTIONS(2679), - [anon_sym_u64] = ACTIONS(2679), - [anon_sym_i64] = ACTIONS(2679), - [anon_sym_u128] = ACTIONS(2679), - [anon_sym_i128] = ACTIONS(2679), - [anon_sym_isize] = ACTIONS(2679), - [anon_sym_usize] = ACTIONS(2679), - [anon_sym_f32] = ACTIONS(2679), - [anon_sym_f64] = ACTIONS(2679), - [anon_sym_bool] = ACTIONS(2679), - [anon_sym_str] = ACTIONS(2679), - [anon_sym_char] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2677), - [anon_sym_BANG] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(2677), - [anon_sym_DOT_DOT] = ACTIONS(2677), - [anon_sym_COLON_COLON] = ACTIONS(2677), - [anon_sym_POUND] = ACTIONS(2677), - [anon_sym_SQUOTE] = ACTIONS(2679), - [anon_sym_async] = ACTIONS(2679), - [anon_sym_break] = ACTIONS(2679), - [anon_sym_const] = ACTIONS(2679), - [anon_sym_continue] = ACTIONS(2679), - [anon_sym_default] = ACTIONS(2679), - [anon_sym_enum] = ACTIONS(2679), - [anon_sym_fn] = ACTIONS(2679), - [anon_sym_for] = ACTIONS(2679), - [anon_sym_gen] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2679), - [anon_sym_impl] = ACTIONS(2679), - [anon_sym_let] = ACTIONS(2679), - [anon_sym_loop] = ACTIONS(2679), - [anon_sym_match] = ACTIONS(2679), - [anon_sym_mod] = ACTIONS(2679), - [anon_sym_pub] = ACTIONS(2679), - [anon_sym_return] = ACTIONS(2679), - [anon_sym_static] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2679), - [anon_sym_trait] = ACTIONS(2679), - [anon_sym_type] = ACTIONS(2679), - [anon_sym_union] = ACTIONS(2679), - [anon_sym_unsafe] = ACTIONS(2679), - [anon_sym_use] = ACTIONS(2679), - [anon_sym_while] = ACTIONS(2679), - [anon_sym_extern] = ACTIONS(2679), - [anon_sym_yield] = ACTIONS(2679), - [anon_sym_move] = ACTIONS(2679), - [anon_sym_try] = ACTIONS(2679), - [sym_integer_literal] = ACTIONS(2677), - [aux_sym_string_literal_token1] = ACTIONS(2677), - [sym_char_literal] = ACTIONS(2677), - [anon_sym_true] = ACTIONS(2679), - [anon_sym_false] = ACTIONS(2679), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2679), - [sym_super] = ACTIONS(2679), - [sym_crate] = ACTIONS(2679), - [sym_metavariable] = ACTIONS(2677), - [sym__raw_string_literal_start] = ACTIONS(2677), - [sym_float_literal] = ACTIONS(2677), + [aux_sym_declaration_list_repeat1] = STATE(622), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(2427), + [anon_sym_SEMI] = ACTIONS(2429), + [anon_sym_macro_rules_BANG] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_u8] = ACTIONS(2435), + [anon_sym_i8] = ACTIONS(2435), + [anon_sym_u16] = ACTIONS(2435), + [anon_sym_i16] = ACTIONS(2435), + [anon_sym_u32] = ACTIONS(2435), + [anon_sym_i32] = ACTIONS(2435), + [anon_sym_u64] = ACTIONS(2435), + [anon_sym_i64] = ACTIONS(2435), + [anon_sym_u128] = ACTIONS(2435), + [anon_sym_i128] = ACTIONS(2435), + [anon_sym_isize] = ACTIONS(2435), + [anon_sym_usize] = ACTIONS(2435), + [anon_sym_f32] = ACTIONS(2435), + [anon_sym_f64] = ACTIONS(2435), + [anon_sym_bool] = ACTIONS(2435), + [anon_sym_str] = ACTIONS(2435), + [anon_sym_char] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2437), + [anon_sym_POUND] = ACTIONS(2439), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_enum] = ACTIONS(2445), + [anon_sym_fn] = ACTIONS(2447), + [anon_sym_gen] = ACTIONS(2449), + [anon_sym_impl] = ACTIONS(2451), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_mod] = ACTIONS(2455), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(2459), + [anon_sym_trait] = ACTIONS(2461), + [anon_sym_type] = ACTIONS(2463), + [anon_sym_union] = ACTIONS(2465), + [anon_sym_unsafe] = ACTIONS(2467), + [anon_sym_use] = ACTIONS(2469), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2473), + [sym_super] = ACTIONS(2473), + [sym_crate] = ACTIONS(2475), + [sym_metavariable] = ACTIONS(2477), }, [STATE(710)] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [ts_builtin_sym_end] = ACTIONS(2681), - [sym_identifier] = ACTIONS(2683), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_macro_rules_BANG] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_RBRACE] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_u8] = ACTIONS(2683), - [anon_sym_i8] = ACTIONS(2683), - [anon_sym_u16] = ACTIONS(2683), - [anon_sym_i16] = ACTIONS(2683), - [anon_sym_u32] = ACTIONS(2683), - [anon_sym_i32] = ACTIONS(2683), - [anon_sym_u64] = ACTIONS(2683), - [anon_sym_i64] = ACTIONS(2683), - [anon_sym_u128] = ACTIONS(2683), - [anon_sym_i128] = ACTIONS(2683), - [anon_sym_isize] = ACTIONS(2683), - [anon_sym_usize] = ACTIONS(2683), - [anon_sym_f32] = ACTIONS(2683), - [anon_sym_f64] = ACTIONS(2683), - [anon_sym_bool] = ACTIONS(2683), - [anon_sym_str] = ACTIONS(2683), - [anon_sym_char] = ACTIONS(2683), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_DOT_DOT] = ACTIONS(2681), - [anon_sym_COLON_COLON] = ACTIONS(2681), - [anon_sym_POUND] = ACTIONS(2681), - [anon_sym_SQUOTE] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2683), - [anon_sym_break] = ACTIONS(2683), - [anon_sym_const] = ACTIONS(2683), - [anon_sym_continue] = ACTIONS(2683), - [anon_sym_default] = ACTIONS(2683), - [anon_sym_enum] = ACTIONS(2683), - [anon_sym_fn] = ACTIONS(2683), - [anon_sym_for] = ACTIONS(2683), - [anon_sym_gen] = ACTIONS(2683), - [anon_sym_if] = ACTIONS(2683), - [anon_sym_impl] = ACTIONS(2683), - [anon_sym_let] = ACTIONS(2683), - [anon_sym_loop] = ACTIONS(2683), - [anon_sym_match] = ACTIONS(2683), - [anon_sym_mod] = ACTIONS(2683), - [anon_sym_pub] = ACTIONS(2683), - [anon_sym_return] = ACTIONS(2683), - [anon_sym_static] = ACTIONS(2683), - [anon_sym_struct] = ACTIONS(2683), - [anon_sym_trait] = ACTIONS(2683), - [anon_sym_type] = ACTIONS(2683), - [anon_sym_union] = ACTIONS(2683), - [anon_sym_unsafe] = ACTIONS(2683), - [anon_sym_use] = ACTIONS(2683), - [anon_sym_while] = ACTIONS(2683), - [anon_sym_extern] = ACTIONS(2683), - [anon_sym_yield] = ACTIONS(2683), - [anon_sym_move] = ACTIONS(2683), - [anon_sym_try] = ACTIONS(2683), - [sym_integer_literal] = ACTIONS(2681), - [aux_sym_string_literal_token1] = ACTIONS(2681), - [sym_char_literal] = ACTIONS(2681), - [anon_sym_true] = ACTIONS(2683), - [anon_sym_false] = ACTIONS(2683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2683), - [sym_super] = ACTIONS(2683), - [sym_crate] = ACTIONS(2683), - [sym_metavariable] = ACTIONS(2681), - [sym__raw_string_literal_start] = ACTIONS(2681), - [sym_float_literal] = ACTIONS(2681), - }, - [STATE(711)] = { - [sym_line_comment] = STATE(711), - [sym_block_comment] = STATE(711), - [ts_builtin_sym_end] = ACTIONS(2685), - [sym_identifier] = ACTIONS(2687), - [anon_sym_SEMI] = ACTIONS(2685), - [anon_sym_macro_rules_BANG] = ACTIONS(2685), - [anon_sym_LPAREN] = ACTIONS(2685), - [anon_sym_LBRACK] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_RBRACE] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2685), - [anon_sym_u8] = ACTIONS(2687), - [anon_sym_i8] = ACTIONS(2687), - [anon_sym_u16] = ACTIONS(2687), - [anon_sym_i16] = ACTIONS(2687), - [anon_sym_u32] = ACTIONS(2687), - [anon_sym_i32] = ACTIONS(2687), - [anon_sym_u64] = ACTIONS(2687), - [anon_sym_i64] = ACTIONS(2687), - [anon_sym_u128] = ACTIONS(2687), - [anon_sym_i128] = ACTIONS(2687), - [anon_sym_isize] = ACTIONS(2687), - [anon_sym_usize] = ACTIONS(2687), - [anon_sym_f32] = ACTIONS(2687), - [anon_sym_f64] = ACTIONS(2687), - [anon_sym_bool] = ACTIONS(2687), - [anon_sym_str] = ACTIONS(2687), - [anon_sym_char] = ACTIONS(2687), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_BANG] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2685), - [anon_sym_PIPE] = ACTIONS(2685), - [anon_sym_LT] = ACTIONS(2685), - [anon_sym_DOT_DOT] = ACTIONS(2685), - [anon_sym_COLON_COLON] = ACTIONS(2685), - [anon_sym_POUND] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_async] = ACTIONS(2687), - [anon_sym_break] = ACTIONS(2687), - [anon_sym_const] = ACTIONS(2687), - [anon_sym_continue] = ACTIONS(2687), - [anon_sym_default] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2687), - [anon_sym_fn] = ACTIONS(2687), - [anon_sym_for] = ACTIONS(2687), - [anon_sym_gen] = ACTIONS(2687), - [anon_sym_if] = ACTIONS(2687), - [anon_sym_impl] = ACTIONS(2687), - [anon_sym_let] = ACTIONS(2687), - [anon_sym_loop] = ACTIONS(2687), - [anon_sym_match] = ACTIONS(2687), - [anon_sym_mod] = ACTIONS(2687), - [anon_sym_pub] = ACTIONS(2687), - [anon_sym_return] = ACTIONS(2687), - [anon_sym_static] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(2687), - [anon_sym_trait] = ACTIONS(2687), - [anon_sym_type] = ACTIONS(2687), - [anon_sym_union] = ACTIONS(2687), - [anon_sym_unsafe] = ACTIONS(2687), - [anon_sym_use] = ACTIONS(2687), - [anon_sym_while] = ACTIONS(2687), - [anon_sym_extern] = ACTIONS(2687), - [anon_sym_yield] = ACTIONS(2687), - [anon_sym_move] = ACTIONS(2687), - [anon_sym_try] = ACTIONS(2687), - [sym_integer_literal] = ACTIONS(2685), - [aux_sym_string_literal_token1] = ACTIONS(2685), - [sym_char_literal] = ACTIONS(2685), - [anon_sym_true] = ACTIONS(2687), - [anon_sym_false] = ACTIONS(2687), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2687), - [sym_super] = ACTIONS(2687), - [sym_crate] = ACTIONS(2687), - [sym_metavariable] = ACTIONS(2685), - [sym__raw_string_literal_start] = ACTIONS(2685), - [sym_float_literal] = ACTIONS(2685), - }, - [STATE(712)] = { - [sym_line_comment] = STATE(712), - [sym_block_comment] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(2689), - [sym_identifier] = ACTIONS(2691), - [anon_sym_SEMI] = ACTIONS(2689), - [anon_sym_macro_rules_BANG] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(2689), - [anon_sym_LBRACK] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(2689), - [anon_sym_RBRACE] = ACTIONS(2689), - [anon_sym_STAR] = ACTIONS(2689), - [anon_sym_u8] = ACTIONS(2691), - [anon_sym_i8] = ACTIONS(2691), - [anon_sym_u16] = ACTIONS(2691), - [anon_sym_i16] = ACTIONS(2691), - [anon_sym_u32] = ACTIONS(2691), - [anon_sym_i32] = ACTIONS(2691), - [anon_sym_u64] = ACTIONS(2691), - [anon_sym_i64] = ACTIONS(2691), - [anon_sym_u128] = ACTIONS(2691), - [anon_sym_i128] = ACTIONS(2691), - [anon_sym_isize] = ACTIONS(2691), - [anon_sym_usize] = ACTIONS(2691), - [anon_sym_f32] = ACTIONS(2691), - [anon_sym_f64] = ACTIONS(2691), - [anon_sym_bool] = ACTIONS(2691), - [anon_sym_str] = ACTIONS(2691), - [anon_sym_char] = ACTIONS(2691), - [anon_sym_DASH] = ACTIONS(2689), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_AMP] = ACTIONS(2689), - [anon_sym_PIPE] = ACTIONS(2689), - [anon_sym_LT] = ACTIONS(2689), - [anon_sym_DOT_DOT] = ACTIONS(2689), - [anon_sym_COLON_COLON] = ACTIONS(2689), - [anon_sym_POUND] = ACTIONS(2689), - [anon_sym_SQUOTE] = ACTIONS(2691), - [anon_sym_async] = ACTIONS(2691), - [anon_sym_break] = ACTIONS(2691), - [anon_sym_const] = ACTIONS(2691), - [anon_sym_continue] = ACTIONS(2691), - [anon_sym_default] = ACTIONS(2691), - [anon_sym_enum] = ACTIONS(2691), - [anon_sym_fn] = ACTIONS(2691), - [anon_sym_for] = ACTIONS(2691), - [anon_sym_gen] = ACTIONS(2691), - [anon_sym_if] = ACTIONS(2691), - [anon_sym_impl] = ACTIONS(2691), - [anon_sym_let] = ACTIONS(2691), - [anon_sym_loop] = ACTIONS(2691), - [anon_sym_match] = ACTIONS(2691), - [anon_sym_mod] = ACTIONS(2691), - [anon_sym_pub] = ACTIONS(2691), - [anon_sym_return] = ACTIONS(2691), - [anon_sym_static] = ACTIONS(2691), - [anon_sym_struct] = ACTIONS(2691), - [anon_sym_trait] = ACTIONS(2691), - [anon_sym_type] = ACTIONS(2691), - [anon_sym_union] = ACTIONS(2691), - [anon_sym_unsafe] = ACTIONS(2691), - [anon_sym_use] = ACTIONS(2691), - [anon_sym_while] = ACTIONS(2691), - [anon_sym_extern] = ACTIONS(2691), - [anon_sym_yield] = ACTIONS(2691), - [anon_sym_move] = ACTIONS(2691), - [anon_sym_try] = ACTIONS(2691), - [sym_integer_literal] = ACTIONS(2689), - [aux_sym_string_literal_token1] = ACTIONS(2689), - [sym_char_literal] = ACTIONS(2689), - [anon_sym_true] = ACTIONS(2691), - [anon_sym_false] = ACTIONS(2691), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2691), - [sym_super] = ACTIONS(2691), - [sym_crate] = ACTIONS(2691), - [sym_metavariable] = ACTIONS(2689), - [sym__raw_string_literal_start] = ACTIONS(2689), - [sym_float_literal] = ACTIONS(2689), - }, - [STATE(713)] = { - [sym_line_comment] = STATE(713), - [sym_block_comment] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(2693), - [sym_identifier] = ACTIONS(2695), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_macro_rules_BANG] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2693), - [anon_sym_LBRACE] = ACTIONS(2693), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_STAR] = ACTIONS(2693), - [anon_sym_u8] = ACTIONS(2695), - [anon_sym_i8] = ACTIONS(2695), - [anon_sym_u16] = ACTIONS(2695), - [anon_sym_i16] = ACTIONS(2695), - [anon_sym_u32] = ACTIONS(2695), - [anon_sym_i32] = ACTIONS(2695), - [anon_sym_u64] = ACTIONS(2695), - [anon_sym_i64] = ACTIONS(2695), - [anon_sym_u128] = ACTIONS(2695), - [anon_sym_i128] = ACTIONS(2695), - [anon_sym_isize] = ACTIONS(2695), - [anon_sym_usize] = ACTIONS(2695), - [anon_sym_f32] = ACTIONS(2695), - [anon_sym_f64] = ACTIONS(2695), - [anon_sym_bool] = ACTIONS(2695), - [anon_sym_str] = ACTIONS(2695), - [anon_sym_char] = ACTIONS(2695), - [anon_sym_DASH] = ACTIONS(2693), - [anon_sym_BANG] = ACTIONS(2693), - [anon_sym_AMP] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_DOT_DOT] = ACTIONS(2693), - [anon_sym_COLON_COLON] = ACTIONS(2693), - [anon_sym_POUND] = ACTIONS(2693), - [anon_sym_SQUOTE] = ACTIONS(2695), - [anon_sym_async] = ACTIONS(2695), - [anon_sym_break] = ACTIONS(2695), - [anon_sym_const] = ACTIONS(2695), - [anon_sym_continue] = ACTIONS(2695), - [anon_sym_default] = ACTIONS(2695), - [anon_sym_enum] = ACTIONS(2695), - [anon_sym_fn] = ACTIONS(2695), - [anon_sym_for] = ACTIONS(2695), - [anon_sym_gen] = ACTIONS(2695), - [anon_sym_if] = ACTIONS(2695), - [anon_sym_impl] = ACTIONS(2695), - [anon_sym_let] = ACTIONS(2695), - [anon_sym_loop] = ACTIONS(2695), - [anon_sym_match] = ACTIONS(2695), - [anon_sym_mod] = ACTIONS(2695), - [anon_sym_pub] = ACTIONS(2695), - [anon_sym_return] = ACTIONS(2695), - [anon_sym_static] = ACTIONS(2695), - [anon_sym_struct] = ACTIONS(2695), - [anon_sym_trait] = ACTIONS(2695), - [anon_sym_type] = ACTIONS(2695), - [anon_sym_union] = ACTIONS(2695), - [anon_sym_unsafe] = ACTIONS(2695), - [anon_sym_use] = ACTIONS(2695), - [anon_sym_while] = ACTIONS(2695), - [anon_sym_extern] = ACTIONS(2695), - [anon_sym_yield] = ACTIONS(2695), - [anon_sym_move] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [sym_integer_literal] = ACTIONS(2693), - [aux_sym_string_literal_token1] = ACTIONS(2693), - [sym_char_literal] = ACTIONS(2693), - [anon_sym_true] = ACTIONS(2695), - [anon_sym_false] = ACTIONS(2695), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2695), - [sym_super] = ACTIONS(2695), - [sym_crate] = ACTIONS(2695), - [sym_metavariable] = ACTIONS(2693), - [sym__raw_string_literal_start] = ACTIONS(2693), - [sym_float_literal] = ACTIONS(2693), - }, - [STATE(714)] = { - [sym_line_comment] = STATE(714), - [sym_block_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(2697), - [sym_identifier] = ACTIONS(2699), - [anon_sym_SEMI] = ACTIONS(2697), - [anon_sym_macro_rules_BANG] = ACTIONS(2697), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2697), - [anon_sym_RBRACE] = ACTIONS(2697), - [anon_sym_STAR] = ACTIONS(2697), - [anon_sym_u8] = ACTIONS(2699), - [anon_sym_i8] = ACTIONS(2699), - [anon_sym_u16] = ACTIONS(2699), - [anon_sym_i16] = ACTIONS(2699), - [anon_sym_u32] = ACTIONS(2699), - [anon_sym_i32] = ACTIONS(2699), - [anon_sym_u64] = ACTIONS(2699), - [anon_sym_i64] = ACTIONS(2699), - [anon_sym_u128] = ACTIONS(2699), - [anon_sym_i128] = ACTIONS(2699), - [anon_sym_isize] = ACTIONS(2699), - [anon_sym_usize] = ACTIONS(2699), - [anon_sym_f32] = ACTIONS(2699), - [anon_sym_f64] = ACTIONS(2699), - [anon_sym_bool] = ACTIONS(2699), - [anon_sym_str] = ACTIONS(2699), - [anon_sym_char] = ACTIONS(2699), - [anon_sym_DASH] = ACTIONS(2697), - [anon_sym_BANG] = ACTIONS(2697), - [anon_sym_AMP] = ACTIONS(2697), - [anon_sym_PIPE] = ACTIONS(2697), - [anon_sym_LT] = ACTIONS(2697), - [anon_sym_DOT_DOT] = ACTIONS(2697), - [anon_sym_COLON_COLON] = ACTIONS(2697), - [anon_sym_POUND] = ACTIONS(2697), - [anon_sym_SQUOTE] = ACTIONS(2699), - [anon_sym_async] = ACTIONS(2699), - [anon_sym_break] = ACTIONS(2699), - [anon_sym_const] = ACTIONS(2699), - [anon_sym_continue] = ACTIONS(2699), - [anon_sym_default] = ACTIONS(2699), - [anon_sym_enum] = ACTIONS(2699), - [anon_sym_fn] = ACTIONS(2699), - [anon_sym_for] = ACTIONS(2699), - [anon_sym_gen] = ACTIONS(2699), - [anon_sym_if] = ACTIONS(2699), - [anon_sym_impl] = ACTIONS(2699), - [anon_sym_let] = ACTIONS(2699), - [anon_sym_loop] = ACTIONS(2699), - [anon_sym_match] = ACTIONS(2699), - [anon_sym_mod] = ACTIONS(2699), - [anon_sym_pub] = ACTIONS(2699), - [anon_sym_return] = ACTIONS(2699), - [anon_sym_static] = ACTIONS(2699), - [anon_sym_struct] = ACTIONS(2699), - [anon_sym_trait] = ACTIONS(2699), - [anon_sym_type] = ACTIONS(2699), - [anon_sym_union] = ACTIONS(2699), - [anon_sym_unsafe] = ACTIONS(2699), - [anon_sym_use] = ACTIONS(2699), - [anon_sym_while] = ACTIONS(2699), - [anon_sym_extern] = ACTIONS(2699), - [anon_sym_yield] = ACTIONS(2699), - [anon_sym_move] = ACTIONS(2699), - [anon_sym_try] = ACTIONS(2699), - [sym_integer_literal] = ACTIONS(2697), - [aux_sym_string_literal_token1] = ACTIONS(2697), - [sym_char_literal] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2699), - [anon_sym_false] = ACTIONS(2699), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2699), - [sym_super] = ACTIONS(2699), - [sym_crate] = ACTIONS(2699), - [sym_metavariable] = ACTIONS(2697), - [sym__raw_string_literal_start] = ACTIONS(2697), - [sym_float_literal] = ACTIONS(2697), - }, - [STATE(715)] = { - [sym_line_comment] = STATE(715), - [sym_block_comment] = STATE(715), - [ts_builtin_sym_end] = ACTIONS(2701), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym_macro_rules_BANG] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2701), - [anon_sym_RBRACE] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_u8] = ACTIONS(2703), - [anon_sym_i8] = ACTIONS(2703), - [anon_sym_u16] = ACTIONS(2703), - [anon_sym_i16] = ACTIONS(2703), - [anon_sym_u32] = ACTIONS(2703), - [anon_sym_i32] = ACTIONS(2703), - [anon_sym_u64] = ACTIONS(2703), - [anon_sym_i64] = ACTIONS(2703), - [anon_sym_u128] = ACTIONS(2703), - [anon_sym_i128] = ACTIONS(2703), - [anon_sym_isize] = ACTIONS(2703), - [anon_sym_usize] = ACTIONS(2703), - [anon_sym_f32] = ACTIONS(2703), - [anon_sym_f64] = ACTIONS(2703), - [anon_sym_bool] = ACTIONS(2703), - [anon_sym_str] = ACTIONS(2703), - [anon_sym_char] = ACTIONS(2703), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_PIPE] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2701), - [anon_sym_DOT_DOT] = ACTIONS(2701), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_async] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_fn] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_gen] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_impl] = ACTIONS(2703), - [anon_sym_let] = ACTIONS(2703), - [anon_sym_loop] = ACTIONS(2703), - [anon_sym_match] = ACTIONS(2703), - [anon_sym_mod] = ACTIONS(2703), - [anon_sym_pub] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_trait] = ACTIONS(2703), - [anon_sym_type] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2703), - [anon_sym_move] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [sym_integer_literal] = ACTIONS(2701), - [aux_sym_string_literal_token1] = ACTIONS(2701), - [sym_char_literal] = ACTIONS(2701), - [anon_sym_true] = ACTIONS(2703), - [anon_sym_false] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2703), - [sym_super] = ACTIONS(2703), - [sym_crate] = ACTIONS(2703), - [sym_metavariable] = ACTIONS(2701), - [sym__raw_string_literal_start] = ACTIONS(2701), - [sym_float_literal] = ACTIONS(2701), - }, - [STATE(716)] = { - [sym_line_comment] = STATE(716), - [sym_block_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(2705), - [sym_identifier] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym_macro_rules_BANG] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_RBRACE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_u8] = ACTIONS(2707), - [anon_sym_i8] = ACTIONS(2707), - [anon_sym_u16] = ACTIONS(2707), - [anon_sym_i16] = ACTIONS(2707), - [anon_sym_u32] = ACTIONS(2707), - [anon_sym_i32] = ACTIONS(2707), - [anon_sym_u64] = ACTIONS(2707), - [anon_sym_i64] = ACTIONS(2707), - [anon_sym_u128] = ACTIONS(2707), - [anon_sym_i128] = ACTIONS(2707), - [anon_sym_isize] = ACTIONS(2707), - [anon_sym_usize] = ACTIONS(2707), - [anon_sym_f32] = ACTIONS(2707), - [anon_sym_f64] = ACTIONS(2707), - [anon_sym_bool] = ACTIONS(2707), - [anon_sym_str] = ACTIONS(2707), - [anon_sym_char] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_PIPE] = ACTIONS(2705), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(2705), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_POUND] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_async] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_default] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_fn] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_gen] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_impl] = ACTIONS(2707), - [anon_sym_let] = ACTIONS(2707), - [anon_sym_loop] = ACTIONS(2707), - [anon_sym_match] = ACTIONS(2707), - [anon_sym_mod] = ACTIONS(2707), - [anon_sym_pub] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_trait] = ACTIONS(2707), - [anon_sym_type] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_unsafe] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(2707), - [anon_sym_move] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [sym_integer_literal] = ACTIONS(2705), - [aux_sym_string_literal_token1] = ACTIONS(2705), - [sym_char_literal] = ACTIONS(2705), - [anon_sym_true] = ACTIONS(2707), - [anon_sym_false] = ACTIONS(2707), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2707), - [sym_super] = ACTIONS(2707), - [sym_crate] = ACTIONS(2707), - [sym_metavariable] = ACTIONS(2705), - [sym__raw_string_literal_start] = ACTIONS(2705), - [sym_float_literal] = ACTIONS(2705), - }, - [STATE(717)] = { - [sym_line_comment] = STATE(717), - [sym_block_comment] = STATE(717), - [ts_builtin_sym_end] = ACTIONS(2709), - [sym_identifier] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_macro_rules_BANG] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_u8] = ACTIONS(2711), - [anon_sym_i8] = ACTIONS(2711), - [anon_sym_u16] = ACTIONS(2711), - [anon_sym_i16] = ACTIONS(2711), - [anon_sym_u32] = ACTIONS(2711), - [anon_sym_i32] = ACTIONS(2711), - [anon_sym_u64] = ACTIONS(2711), - [anon_sym_i64] = ACTIONS(2711), - [anon_sym_u128] = ACTIONS(2711), - [anon_sym_i128] = ACTIONS(2711), - [anon_sym_isize] = ACTIONS(2711), - [anon_sym_usize] = ACTIONS(2711), - [anon_sym_f32] = ACTIONS(2711), - [anon_sym_f64] = ACTIONS(2711), - [anon_sym_bool] = ACTIONS(2711), - [anon_sym_str] = ACTIONS(2711), - [anon_sym_char] = ACTIONS(2711), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2709), - [anon_sym_DOT_DOT] = ACTIONS(2709), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_POUND] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_async] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_default] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_fn] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_gen] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_impl] = ACTIONS(2711), - [anon_sym_let] = ACTIONS(2711), - [anon_sym_loop] = ACTIONS(2711), - [anon_sym_match] = ACTIONS(2711), - [anon_sym_mod] = ACTIONS(2711), - [anon_sym_pub] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_trait] = ACTIONS(2711), - [anon_sym_type] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_unsafe] = ACTIONS(2711), - [anon_sym_use] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym_yield] = ACTIONS(2711), - [anon_sym_move] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [sym_integer_literal] = ACTIONS(2709), - [aux_sym_string_literal_token1] = ACTIONS(2709), - [sym_char_literal] = ACTIONS(2709), - [anon_sym_true] = ACTIONS(2711), - [anon_sym_false] = ACTIONS(2711), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2711), - [sym_super] = ACTIONS(2711), - [sym_crate] = ACTIONS(2711), - [sym_metavariable] = ACTIONS(2709), - [sym__raw_string_literal_start] = ACTIONS(2709), - [sym_float_literal] = ACTIONS(2709), - }, - [STATE(718)] = { - [sym_line_comment] = STATE(718), - [sym_block_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(2713), - [sym_identifier] = ACTIONS(2715), - [anon_sym_SEMI] = ACTIONS(2713), - [anon_sym_macro_rules_BANG] = ACTIONS(2713), - [anon_sym_LPAREN] = ACTIONS(2713), - [anon_sym_LBRACK] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_STAR] = ACTIONS(2713), - [anon_sym_u8] = ACTIONS(2715), - [anon_sym_i8] = ACTIONS(2715), - [anon_sym_u16] = ACTIONS(2715), - [anon_sym_i16] = ACTIONS(2715), - [anon_sym_u32] = ACTIONS(2715), - [anon_sym_i32] = ACTIONS(2715), - [anon_sym_u64] = ACTIONS(2715), - [anon_sym_i64] = ACTIONS(2715), - [anon_sym_u128] = ACTIONS(2715), - [anon_sym_i128] = ACTIONS(2715), - [anon_sym_isize] = ACTIONS(2715), - [anon_sym_usize] = ACTIONS(2715), - [anon_sym_f32] = ACTIONS(2715), - [anon_sym_f64] = ACTIONS(2715), - [anon_sym_bool] = ACTIONS(2715), - [anon_sym_str] = ACTIONS(2715), - [anon_sym_char] = ACTIONS(2715), - [anon_sym_DASH] = ACTIONS(2713), - [anon_sym_BANG] = ACTIONS(2713), - [anon_sym_AMP] = ACTIONS(2713), - [anon_sym_PIPE] = ACTIONS(2713), - [anon_sym_LT] = ACTIONS(2713), - [anon_sym_DOT_DOT] = ACTIONS(2713), - [anon_sym_COLON_COLON] = ACTIONS(2713), - [anon_sym_POUND] = ACTIONS(2713), - [anon_sym_SQUOTE] = ACTIONS(2715), - [anon_sym_async] = ACTIONS(2715), - [anon_sym_break] = ACTIONS(2715), - [anon_sym_const] = ACTIONS(2715), - [anon_sym_continue] = ACTIONS(2715), - [anon_sym_default] = ACTIONS(2715), - [anon_sym_enum] = ACTIONS(2715), - [anon_sym_fn] = ACTIONS(2715), - [anon_sym_for] = ACTIONS(2715), - [anon_sym_gen] = ACTIONS(2715), - [anon_sym_if] = ACTIONS(2715), - [anon_sym_impl] = ACTIONS(2715), - [anon_sym_let] = ACTIONS(2715), - [anon_sym_loop] = ACTIONS(2715), - [anon_sym_match] = ACTIONS(2715), - [anon_sym_mod] = ACTIONS(2715), - [anon_sym_pub] = ACTIONS(2715), - [anon_sym_return] = ACTIONS(2715), - [anon_sym_static] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(2715), - [anon_sym_trait] = ACTIONS(2715), - [anon_sym_type] = ACTIONS(2715), - [anon_sym_union] = ACTIONS(2715), - [anon_sym_unsafe] = ACTIONS(2715), - [anon_sym_use] = ACTIONS(2715), - [anon_sym_while] = ACTIONS(2715), - [anon_sym_extern] = ACTIONS(2715), - [anon_sym_yield] = ACTIONS(2715), - [anon_sym_move] = ACTIONS(2715), - [anon_sym_try] = ACTIONS(2715), - [sym_integer_literal] = ACTIONS(2713), - [aux_sym_string_literal_token1] = ACTIONS(2713), - [sym_char_literal] = ACTIONS(2713), - [anon_sym_true] = ACTIONS(2715), - [anon_sym_false] = ACTIONS(2715), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2715), - [sym_super] = ACTIONS(2715), - [sym_crate] = ACTIONS(2715), - [sym_metavariable] = ACTIONS(2713), - [sym__raw_string_literal_start] = ACTIONS(2713), - [sym_float_literal] = ACTIONS(2713), - }, - [STATE(719)] = { - [sym_line_comment] = STATE(719), - [sym_block_comment] = STATE(719), - [ts_builtin_sym_end] = ACTIONS(2717), - [sym_identifier] = ACTIONS(2719), - [anon_sym_SEMI] = ACTIONS(2717), - [anon_sym_macro_rules_BANG] = ACTIONS(2717), - [anon_sym_LPAREN] = ACTIONS(2717), - [anon_sym_LBRACK] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2717), - [anon_sym_RBRACE] = ACTIONS(2717), - [anon_sym_STAR] = ACTIONS(2717), - [anon_sym_u8] = ACTIONS(2719), - [anon_sym_i8] = ACTIONS(2719), - [anon_sym_u16] = ACTIONS(2719), - [anon_sym_i16] = ACTIONS(2719), - [anon_sym_u32] = ACTIONS(2719), - [anon_sym_i32] = ACTIONS(2719), - [anon_sym_u64] = ACTIONS(2719), - [anon_sym_i64] = ACTIONS(2719), - [anon_sym_u128] = ACTIONS(2719), - [anon_sym_i128] = ACTIONS(2719), - [anon_sym_isize] = ACTIONS(2719), - [anon_sym_usize] = ACTIONS(2719), - [anon_sym_f32] = ACTIONS(2719), - [anon_sym_f64] = ACTIONS(2719), - [anon_sym_bool] = ACTIONS(2719), - [anon_sym_str] = ACTIONS(2719), - [anon_sym_char] = ACTIONS(2719), - [anon_sym_DASH] = ACTIONS(2717), - [anon_sym_BANG] = ACTIONS(2717), - [anon_sym_AMP] = ACTIONS(2717), - [anon_sym_PIPE] = ACTIONS(2717), - [anon_sym_LT] = ACTIONS(2717), - [anon_sym_DOT_DOT] = ACTIONS(2717), - [anon_sym_COLON_COLON] = ACTIONS(2717), - [anon_sym_POUND] = ACTIONS(2717), - [anon_sym_SQUOTE] = ACTIONS(2719), - [anon_sym_async] = ACTIONS(2719), - [anon_sym_break] = ACTIONS(2719), - [anon_sym_const] = ACTIONS(2719), - [anon_sym_continue] = ACTIONS(2719), - [anon_sym_default] = ACTIONS(2719), - [anon_sym_enum] = ACTIONS(2719), - [anon_sym_fn] = ACTIONS(2719), - [anon_sym_for] = ACTIONS(2719), - [anon_sym_gen] = ACTIONS(2719), - [anon_sym_if] = ACTIONS(2719), - [anon_sym_impl] = ACTIONS(2719), - [anon_sym_let] = ACTIONS(2719), - [anon_sym_loop] = ACTIONS(2719), - [anon_sym_match] = ACTIONS(2719), - [anon_sym_mod] = ACTIONS(2719), - [anon_sym_pub] = ACTIONS(2719), - [anon_sym_return] = ACTIONS(2719), - [anon_sym_static] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(2719), - [anon_sym_trait] = ACTIONS(2719), - [anon_sym_type] = ACTIONS(2719), - [anon_sym_union] = ACTIONS(2719), - [anon_sym_unsafe] = ACTIONS(2719), - [anon_sym_use] = ACTIONS(2719), - [anon_sym_while] = ACTIONS(2719), - [anon_sym_extern] = ACTIONS(2719), - [anon_sym_yield] = ACTIONS(2719), - [anon_sym_move] = ACTIONS(2719), - [anon_sym_try] = ACTIONS(2719), - [sym_integer_literal] = ACTIONS(2717), - [aux_sym_string_literal_token1] = ACTIONS(2717), - [sym_char_literal] = ACTIONS(2717), - [anon_sym_true] = ACTIONS(2719), - [anon_sym_false] = ACTIONS(2719), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2719), - [sym_super] = ACTIONS(2719), - [sym_crate] = ACTIONS(2719), - [sym_metavariable] = ACTIONS(2717), - [sym__raw_string_literal_start] = ACTIONS(2717), - [sym_float_literal] = ACTIONS(2717), - }, - [STATE(720)] = { - [sym_line_comment] = STATE(720), - [sym_block_comment] = STATE(720), - [ts_builtin_sym_end] = ACTIONS(2721), - [sym_identifier] = ACTIONS(2723), - [anon_sym_SEMI] = ACTIONS(2721), - [anon_sym_macro_rules_BANG] = ACTIONS(2721), - [anon_sym_LPAREN] = ACTIONS(2721), - [anon_sym_LBRACK] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2721), - [anon_sym_RBRACE] = ACTIONS(2721), - [anon_sym_STAR] = ACTIONS(2721), - [anon_sym_u8] = ACTIONS(2723), - [anon_sym_i8] = ACTIONS(2723), - [anon_sym_u16] = ACTIONS(2723), - [anon_sym_i16] = ACTIONS(2723), - [anon_sym_u32] = ACTIONS(2723), - [anon_sym_i32] = ACTIONS(2723), - [anon_sym_u64] = ACTIONS(2723), - [anon_sym_i64] = ACTIONS(2723), - [anon_sym_u128] = ACTIONS(2723), - [anon_sym_i128] = ACTIONS(2723), - [anon_sym_isize] = ACTIONS(2723), - [anon_sym_usize] = ACTIONS(2723), - [anon_sym_f32] = ACTIONS(2723), - [anon_sym_f64] = ACTIONS(2723), - [anon_sym_bool] = ACTIONS(2723), - [anon_sym_str] = ACTIONS(2723), - [anon_sym_char] = ACTIONS(2723), - [anon_sym_DASH] = ACTIONS(2721), - [anon_sym_BANG] = ACTIONS(2721), - [anon_sym_AMP] = ACTIONS(2721), - [anon_sym_PIPE] = ACTIONS(2721), - [anon_sym_LT] = ACTIONS(2721), - [anon_sym_DOT_DOT] = ACTIONS(2721), - [anon_sym_COLON_COLON] = ACTIONS(2721), - [anon_sym_POUND] = ACTIONS(2721), - [anon_sym_SQUOTE] = ACTIONS(2723), - [anon_sym_async] = ACTIONS(2723), - [anon_sym_break] = ACTIONS(2723), - [anon_sym_const] = ACTIONS(2723), - [anon_sym_continue] = ACTIONS(2723), - [anon_sym_default] = ACTIONS(2723), - [anon_sym_enum] = ACTIONS(2723), - [anon_sym_fn] = ACTIONS(2723), - [anon_sym_for] = ACTIONS(2723), - [anon_sym_gen] = ACTIONS(2723), - [anon_sym_if] = ACTIONS(2723), - [anon_sym_impl] = ACTIONS(2723), - [anon_sym_let] = ACTIONS(2723), - [anon_sym_loop] = ACTIONS(2723), - [anon_sym_match] = ACTIONS(2723), - [anon_sym_mod] = ACTIONS(2723), - [anon_sym_pub] = ACTIONS(2723), - [anon_sym_return] = ACTIONS(2723), - [anon_sym_static] = ACTIONS(2723), - [anon_sym_struct] = ACTIONS(2723), - [anon_sym_trait] = ACTIONS(2723), - [anon_sym_type] = ACTIONS(2723), - [anon_sym_union] = ACTIONS(2723), - [anon_sym_unsafe] = ACTIONS(2723), - [anon_sym_use] = ACTIONS(2723), - [anon_sym_while] = ACTIONS(2723), - [anon_sym_extern] = ACTIONS(2723), - [anon_sym_yield] = ACTIONS(2723), - [anon_sym_move] = ACTIONS(2723), - [anon_sym_try] = ACTIONS(2723), - [sym_integer_literal] = ACTIONS(2721), - [aux_sym_string_literal_token1] = ACTIONS(2721), - [sym_char_literal] = ACTIONS(2721), - [anon_sym_true] = ACTIONS(2723), - [anon_sym_false] = ACTIONS(2723), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2723), - [sym_super] = ACTIONS(2723), - [sym_crate] = ACTIONS(2723), - [sym_metavariable] = ACTIONS(2721), - [sym__raw_string_literal_start] = ACTIONS(2721), - [sym_float_literal] = ACTIONS(2721), - }, - [STATE(721)] = { - [sym_line_comment] = STATE(721), - [sym_block_comment] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(2725), - [sym_identifier] = ACTIONS(2727), - [anon_sym_SEMI] = ACTIONS(2725), - [anon_sym_macro_rules_BANG] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(2725), - [anon_sym_LBRACK] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_RBRACE] = ACTIONS(2725), - [anon_sym_STAR] = ACTIONS(2725), - [anon_sym_u8] = ACTIONS(2727), - [anon_sym_i8] = ACTIONS(2727), - [anon_sym_u16] = ACTIONS(2727), - [anon_sym_i16] = ACTIONS(2727), - [anon_sym_u32] = ACTIONS(2727), - [anon_sym_i32] = ACTIONS(2727), - [anon_sym_u64] = ACTIONS(2727), - [anon_sym_i64] = ACTIONS(2727), - [anon_sym_u128] = ACTIONS(2727), - [anon_sym_i128] = ACTIONS(2727), - [anon_sym_isize] = ACTIONS(2727), - [anon_sym_usize] = ACTIONS(2727), - [anon_sym_f32] = ACTIONS(2727), - [anon_sym_f64] = ACTIONS(2727), - [anon_sym_bool] = ACTIONS(2727), - [anon_sym_str] = ACTIONS(2727), - [anon_sym_char] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2725), - [anon_sym_BANG] = ACTIONS(2725), - [anon_sym_AMP] = ACTIONS(2725), - [anon_sym_PIPE] = ACTIONS(2725), - [anon_sym_LT] = ACTIONS(2725), - [anon_sym_DOT_DOT] = ACTIONS(2725), - [anon_sym_COLON_COLON] = ACTIONS(2725), - [anon_sym_POUND] = ACTIONS(2725), - [anon_sym_SQUOTE] = ACTIONS(2727), - [anon_sym_async] = ACTIONS(2727), - [anon_sym_break] = ACTIONS(2727), - [anon_sym_const] = ACTIONS(2727), - [anon_sym_continue] = ACTIONS(2727), - [anon_sym_default] = ACTIONS(2727), - [anon_sym_enum] = ACTIONS(2727), - [anon_sym_fn] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2727), - [anon_sym_gen] = ACTIONS(2727), - [anon_sym_if] = ACTIONS(2727), - [anon_sym_impl] = ACTIONS(2727), - [anon_sym_let] = ACTIONS(2727), - [anon_sym_loop] = ACTIONS(2727), - [anon_sym_match] = ACTIONS(2727), - [anon_sym_mod] = ACTIONS(2727), - [anon_sym_pub] = ACTIONS(2727), - [anon_sym_return] = ACTIONS(2727), - [anon_sym_static] = ACTIONS(2727), - [anon_sym_struct] = ACTIONS(2727), - [anon_sym_trait] = ACTIONS(2727), - [anon_sym_type] = ACTIONS(2727), - [anon_sym_union] = ACTIONS(2727), - [anon_sym_unsafe] = ACTIONS(2727), - [anon_sym_use] = ACTIONS(2727), - [anon_sym_while] = ACTIONS(2727), - [anon_sym_extern] = ACTIONS(2727), - [anon_sym_yield] = ACTIONS(2727), - [anon_sym_move] = ACTIONS(2727), - [anon_sym_try] = ACTIONS(2727), - [sym_integer_literal] = ACTIONS(2725), - [aux_sym_string_literal_token1] = ACTIONS(2725), - [sym_char_literal] = ACTIONS(2725), - [anon_sym_true] = ACTIONS(2727), - [anon_sym_false] = ACTIONS(2727), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2727), - [sym_super] = ACTIONS(2727), - [sym_crate] = ACTIONS(2727), - [sym_metavariable] = ACTIONS(2725), - [sym__raw_string_literal_start] = ACTIONS(2725), - [sym_float_literal] = ACTIONS(2725), - }, - [STATE(722)] = { - [sym_line_comment] = STATE(722), - [sym_block_comment] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(2729), - [sym_identifier] = ACTIONS(2731), - [anon_sym_SEMI] = ACTIONS(2729), - [anon_sym_macro_rules_BANG] = ACTIONS(2729), - [anon_sym_LPAREN] = ACTIONS(2729), - [anon_sym_LBRACK] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2729), - [anon_sym_RBRACE] = ACTIONS(2729), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_u8] = ACTIONS(2731), - [anon_sym_i8] = ACTIONS(2731), - [anon_sym_u16] = ACTIONS(2731), - [anon_sym_i16] = ACTIONS(2731), - [anon_sym_u32] = ACTIONS(2731), - [anon_sym_i32] = ACTIONS(2731), - [anon_sym_u64] = ACTIONS(2731), - [anon_sym_i64] = ACTIONS(2731), - [anon_sym_u128] = ACTIONS(2731), - [anon_sym_i128] = ACTIONS(2731), - [anon_sym_isize] = ACTIONS(2731), - [anon_sym_usize] = ACTIONS(2731), - [anon_sym_f32] = ACTIONS(2731), - [anon_sym_f64] = ACTIONS(2731), - [anon_sym_bool] = ACTIONS(2731), - [anon_sym_str] = ACTIONS(2731), - [anon_sym_char] = ACTIONS(2731), - [anon_sym_DASH] = ACTIONS(2729), - [anon_sym_BANG] = ACTIONS(2729), - [anon_sym_AMP] = ACTIONS(2729), - [anon_sym_PIPE] = ACTIONS(2729), - [anon_sym_LT] = ACTIONS(2729), - [anon_sym_DOT_DOT] = ACTIONS(2729), - [anon_sym_COLON_COLON] = ACTIONS(2729), - [anon_sym_POUND] = ACTIONS(2729), - [anon_sym_SQUOTE] = ACTIONS(2731), - [anon_sym_async] = ACTIONS(2731), - [anon_sym_break] = ACTIONS(2731), - [anon_sym_const] = ACTIONS(2731), - [anon_sym_continue] = ACTIONS(2731), - [anon_sym_default] = ACTIONS(2731), - [anon_sym_enum] = ACTIONS(2731), - [anon_sym_fn] = ACTIONS(2731), - [anon_sym_for] = ACTIONS(2731), - [anon_sym_gen] = ACTIONS(2731), - [anon_sym_if] = ACTIONS(2731), - [anon_sym_impl] = ACTIONS(2731), - [anon_sym_let] = ACTIONS(2731), - [anon_sym_loop] = ACTIONS(2731), - [anon_sym_match] = ACTIONS(2731), - [anon_sym_mod] = ACTIONS(2731), - [anon_sym_pub] = ACTIONS(2731), - [anon_sym_return] = ACTIONS(2731), - [anon_sym_static] = ACTIONS(2731), - [anon_sym_struct] = ACTIONS(2731), - [anon_sym_trait] = ACTIONS(2731), - [anon_sym_type] = ACTIONS(2731), - [anon_sym_union] = ACTIONS(2731), - [anon_sym_unsafe] = ACTIONS(2731), - [anon_sym_use] = ACTIONS(2731), - [anon_sym_while] = ACTIONS(2731), - [anon_sym_extern] = ACTIONS(2731), - [anon_sym_yield] = ACTIONS(2731), - [anon_sym_move] = ACTIONS(2731), - [anon_sym_try] = ACTIONS(2731), - [sym_integer_literal] = ACTIONS(2729), - [aux_sym_string_literal_token1] = ACTIONS(2729), - [sym_char_literal] = ACTIONS(2729), - [anon_sym_true] = ACTIONS(2731), - [anon_sym_false] = ACTIONS(2731), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2731), - [sym_super] = ACTIONS(2731), - [sym_crate] = ACTIONS(2731), - [sym_metavariable] = ACTIONS(2729), - [sym__raw_string_literal_start] = ACTIONS(2729), - [sym_float_literal] = ACTIONS(2729), - }, - [STATE(723)] = { - [sym_line_comment] = STATE(723), - [sym_block_comment] = STATE(723), - [ts_builtin_sym_end] = ACTIONS(2733), - [sym_identifier] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2733), - [anon_sym_macro_rules_BANG] = ACTIONS(2733), - [anon_sym_LPAREN] = ACTIONS(2733), - [anon_sym_LBRACK] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2733), - [anon_sym_RBRACE] = ACTIONS(2733), - [anon_sym_STAR] = ACTIONS(2733), - [anon_sym_u8] = ACTIONS(2735), - [anon_sym_i8] = ACTIONS(2735), - [anon_sym_u16] = ACTIONS(2735), - [anon_sym_i16] = ACTIONS(2735), - [anon_sym_u32] = ACTIONS(2735), - [anon_sym_i32] = ACTIONS(2735), - [anon_sym_u64] = ACTIONS(2735), - [anon_sym_i64] = ACTIONS(2735), - [anon_sym_u128] = ACTIONS(2735), - [anon_sym_i128] = ACTIONS(2735), - [anon_sym_isize] = ACTIONS(2735), - [anon_sym_usize] = ACTIONS(2735), - [anon_sym_f32] = ACTIONS(2735), - [anon_sym_f64] = ACTIONS(2735), - [anon_sym_bool] = ACTIONS(2735), - [anon_sym_str] = ACTIONS(2735), - [anon_sym_char] = ACTIONS(2735), - [anon_sym_DASH] = ACTIONS(2733), - [anon_sym_BANG] = ACTIONS(2733), - [anon_sym_AMP] = ACTIONS(2733), - [anon_sym_PIPE] = ACTIONS(2733), - [anon_sym_LT] = ACTIONS(2733), - [anon_sym_DOT_DOT] = ACTIONS(2733), - [anon_sym_COLON_COLON] = ACTIONS(2733), - [anon_sym_POUND] = ACTIONS(2733), - [anon_sym_SQUOTE] = ACTIONS(2735), - [anon_sym_async] = ACTIONS(2735), - [anon_sym_break] = ACTIONS(2735), - [anon_sym_const] = ACTIONS(2735), - [anon_sym_continue] = ACTIONS(2735), - [anon_sym_default] = ACTIONS(2735), - [anon_sym_enum] = ACTIONS(2735), - [anon_sym_fn] = ACTIONS(2735), - [anon_sym_for] = ACTIONS(2735), - [anon_sym_gen] = ACTIONS(2735), - [anon_sym_if] = ACTIONS(2735), - [anon_sym_impl] = ACTIONS(2735), - [anon_sym_let] = ACTIONS(2735), - [anon_sym_loop] = ACTIONS(2735), - [anon_sym_match] = ACTIONS(2735), - [anon_sym_mod] = ACTIONS(2735), - [anon_sym_pub] = ACTIONS(2735), - [anon_sym_return] = ACTIONS(2735), - [anon_sym_static] = ACTIONS(2735), - [anon_sym_struct] = ACTIONS(2735), - [anon_sym_trait] = ACTIONS(2735), - [anon_sym_type] = ACTIONS(2735), - [anon_sym_union] = ACTIONS(2735), - [anon_sym_unsafe] = ACTIONS(2735), - [anon_sym_use] = ACTIONS(2735), - [anon_sym_while] = ACTIONS(2735), - [anon_sym_extern] = ACTIONS(2735), - [anon_sym_yield] = ACTIONS(2735), - [anon_sym_move] = ACTIONS(2735), - [anon_sym_try] = ACTIONS(2735), - [sym_integer_literal] = ACTIONS(2733), - [aux_sym_string_literal_token1] = ACTIONS(2733), - [sym_char_literal] = ACTIONS(2733), - [anon_sym_true] = ACTIONS(2735), - [anon_sym_false] = ACTIONS(2735), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2735), - [sym_super] = ACTIONS(2735), - [sym_crate] = ACTIONS(2735), - [sym_metavariable] = ACTIONS(2733), - [sym__raw_string_literal_start] = ACTIONS(2733), - [sym_float_literal] = ACTIONS(2733), - }, - [STATE(724)] = { - [sym_line_comment] = STATE(724), - [sym_block_comment] = STATE(724), - [ts_builtin_sym_end] = ACTIONS(2737), - [sym_identifier] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2737), - [anon_sym_macro_rules_BANG] = ACTIONS(2737), - [anon_sym_LPAREN] = ACTIONS(2737), - [anon_sym_LBRACK] = ACTIONS(2737), - [anon_sym_LBRACE] = ACTIONS(2737), - [anon_sym_RBRACE] = ACTIONS(2737), - [anon_sym_STAR] = ACTIONS(2737), - [anon_sym_u8] = ACTIONS(2739), - [anon_sym_i8] = ACTIONS(2739), - [anon_sym_u16] = ACTIONS(2739), - [anon_sym_i16] = ACTIONS(2739), - [anon_sym_u32] = ACTIONS(2739), - [anon_sym_i32] = ACTIONS(2739), - [anon_sym_u64] = ACTIONS(2739), - [anon_sym_i64] = ACTIONS(2739), - [anon_sym_u128] = ACTIONS(2739), - [anon_sym_i128] = ACTIONS(2739), - [anon_sym_isize] = ACTIONS(2739), - [anon_sym_usize] = ACTIONS(2739), - [anon_sym_f32] = ACTIONS(2739), - [anon_sym_f64] = ACTIONS(2739), - [anon_sym_bool] = ACTIONS(2739), - [anon_sym_str] = ACTIONS(2739), - [anon_sym_char] = ACTIONS(2739), - [anon_sym_DASH] = ACTIONS(2737), - [anon_sym_BANG] = ACTIONS(2737), - [anon_sym_AMP] = ACTIONS(2737), - [anon_sym_PIPE] = ACTIONS(2737), - [anon_sym_LT] = ACTIONS(2737), - [anon_sym_DOT_DOT] = ACTIONS(2737), - [anon_sym_COLON_COLON] = ACTIONS(2737), - [anon_sym_POUND] = ACTIONS(2737), - [anon_sym_SQUOTE] = ACTIONS(2739), - [anon_sym_async] = ACTIONS(2739), - [anon_sym_break] = ACTIONS(2739), - [anon_sym_const] = ACTIONS(2739), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_default] = ACTIONS(2739), - [anon_sym_enum] = ACTIONS(2739), - [anon_sym_fn] = ACTIONS(2739), - [anon_sym_for] = ACTIONS(2739), - [anon_sym_gen] = ACTIONS(2739), - [anon_sym_if] = ACTIONS(2739), - [anon_sym_impl] = ACTIONS(2739), - [anon_sym_let] = ACTIONS(2739), - [anon_sym_loop] = ACTIONS(2739), - [anon_sym_match] = ACTIONS(2739), - [anon_sym_mod] = ACTIONS(2739), - [anon_sym_pub] = ACTIONS(2739), - [anon_sym_return] = ACTIONS(2739), - [anon_sym_static] = ACTIONS(2739), - [anon_sym_struct] = ACTIONS(2739), - [anon_sym_trait] = ACTIONS(2739), - [anon_sym_type] = ACTIONS(2739), - [anon_sym_union] = ACTIONS(2739), - [anon_sym_unsafe] = ACTIONS(2739), - [anon_sym_use] = ACTIONS(2739), - [anon_sym_while] = ACTIONS(2739), - [anon_sym_extern] = ACTIONS(2739), - [anon_sym_yield] = ACTIONS(2739), - [anon_sym_move] = ACTIONS(2739), - [anon_sym_try] = ACTIONS(2739), - [sym_integer_literal] = ACTIONS(2737), - [aux_sym_string_literal_token1] = ACTIONS(2737), - [sym_char_literal] = ACTIONS(2737), - [anon_sym_true] = ACTIONS(2739), - [anon_sym_false] = ACTIONS(2739), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2739), - [sym_super] = ACTIONS(2739), - [sym_crate] = ACTIONS(2739), - [sym_metavariable] = ACTIONS(2737), - [sym__raw_string_literal_start] = ACTIONS(2737), - [sym_float_literal] = ACTIONS(2737), - }, - [STATE(725)] = { - [sym_line_comment] = STATE(725), - [sym_block_comment] = STATE(725), - [ts_builtin_sym_end] = ACTIONS(2741), - [sym_identifier] = ACTIONS(2743), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym_macro_rules_BANG] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_u8] = ACTIONS(2743), - [anon_sym_i8] = ACTIONS(2743), - [anon_sym_u16] = ACTIONS(2743), - [anon_sym_i16] = ACTIONS(2743), - [anon_sym_u32] = ACTIONS(2743), - [anon_sym_i32] = ACTIONS(2743), - [anon_sym_u64] = ACTIONS(2743), - [anon_sym_i64] = ACTIONS(2743), - [anon_sym_u128] = ACTIONS(2743), - [anon_sym_i128] = ACTIONS(2743), - [anon_sym_isize] = ACTIONS(2743), - [anon_sym_usize] = ACTIONS(2743), - [anon_sym_f32] = ACTIONS(2743), - [anon_sym_f64] = ACTIONS(2743), - [anon_sym_bool] = ACTIONS(2743), - [anon_sym_str] = ACTIONS(2743), - [anon_sym_char] = ACTIONS(2743), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_DOT_DOT] = ACTIONS(2741), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_POUND] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2743), - [anon_sym_async] = ACTIONS(2743), - [anon_sym_break] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2743), - [anon_sym_continue] = ACTIONS(2743), - [anon_sym_default] = ACTIONS(2743), - [anon_sym_enum] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2743), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_gen] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2743), - [anon_sym_impl] = ACTIONS(2743), - [anon_sym_let] = ACTIONS(2743), - [anon_sym_loop] = ACTIONS(2743), - [anon_sym_match] = ACTIONS(2743), - [anon_sym_mod] = ACTIONS(2743), - [anon_sym_pub] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2743), - [anon_sym_trait] = ACTIONS(2743), - [anon_sym_type] = ACTIONS(2743), - [anon_sym_union] = ACTIONS(2743), - [anon_sym_unsafe] = ACTIONS(2743), - [anon_sym_use] = ACTIONS(2743), - [anon_sym_while] = ACTIONS(2743), - [anon_sym_extern] = ACTIONS(2743), - [anon_sym_yield] = ACTIONS(2743), - [anon_sym_move] = ACTIONS(2743), - [anon_sym_try] = ACTIONS(2743), - [sym_integer_literal] = ACTIONS(2741), - [aux_sym_string_literal_token1] = ACTIONS(2741), - [sym_char_literal] = ACTIONS(2741), - [anon_sym_true] = ACTIONS(2743), - [anon_sym_false] = ACTIONS(2743), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2743), - [sym_super] = ACTIONS(2743), - [sym_crate] = ACTIONS(2743), - [sym_metavariable] = ACTIONS(2741), - [sym__raw_string_literal_start] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2741), - }, - [STATE(726)] = { - [sym_line_comment] = STATE(726), - [sym_block_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(2745), - [sym_identifier] = ACTIONS(2747), - [anon_sym_SEMI] = ACTIONS(2745), - [anon_sym_macro_rules_BANG] = ACTIONS(2745), - [anon_sym_LPAREN] = ACTIONS(2745), - [anon_sym_LBRACK] = ACTIONS(2745), - [anon_sym_LBRACE] = ACTIONS(2745), - [anon_sym_RBRACE] = ACTIONS(2745), - [anon_sym_STAR] = ACTIONS(2745), - [anon_sym_u8] = ACTIONS(2747), - [anon_sym_i8] = ACTIONS(2747), - [anon_sym_u16] = ACTIONS(2747), - [anon_sym_i16] = ACTIONS(2747), - [anon_sym_u32] = ACTIONS(2747), - [anon_sym_i32] = ACTIONS(2747), - [anon_sym_u64] = ACTIONS(2747), - [anon_sym_i64] = ACTIONS(2747), - [anon_sym_u128] = ACTIONS(2747), - [anon_sym_i128] = ACTIONS(2747), - [anon_sym_isize] = ACTIONS(2747), - [anon_sym_usize] = ACTIONS(2747), - [anon_sym_f32] = ACTIONS(2747), - [anon_sym_f64] = ACTIONS(2747), - [anon_sym_bool] = ACTIONS(2747), - [anon_sym_str] = ACTIONS(2747), - [anon_sym_char] = ACTIONS(2747), - [anon_sym_DASH] = ACTIONS(2745), - [anon_sym_BANG] = ACTIONS(2745), - [anon_sym_AMP] = ACTIONS(2745), - [anon_sym_PIPE] = ACTIONS(2745), - [anon_sym_LT] = ACTIONS(2745), - [anon_sym_DOT_DOT] = ACTIONS(2745), - [anon_sym_COLON_COLON] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(2745), - [anon_sym_SQUOTE] = ACTIONS(2747), - [anon_sym_async] = ACTIONS(2747), - [anon_sym_break] = ACTIONS(2747), - [anon_sym_const] = ACTIONS(2747), - [anon_sym_continue] = ACTIONS(2747), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_enum] = ACTIONS(2747), - [anon_sym_fn] = ACTIONS(2747), - [anon_sym_for] = ACTIONS(2747), - [anon_sym_gen] = ACTIONS(2747), - [anon_sym_if] = ACTIONS(2747), - [anon_sym_impl] = ACTIONS(2747), - [anon_sym_let] = ACTIONS(2747), - [anon_sym_loop] = ACTIONS(2747), - [anon_sym_match] = ACTIONS(2747), - [anon_sym_mod] = ACTIONS(2747), - [anon_sym_pub] = ACTIONS(2747), - [anon_sym_return] = ACTIONS(2747), - [anon_sym_static] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(2747), - [anon_sym_trait] = ACTIONS(2747), - [anon_sym_type] = ACTIONS(2747), - [anon_sym_union] = ACTIONS(2747), - [anon_sym_unsafe] = ACTIONS(2747), - [anon_sym_use] = ACTIONS(2747), - [anon_sym_while] = ACTIONS(2747), - [anon_sym_extern] = ACTIONS(2747), - [anon_sym_yield] = ACTIONS(2747), - [anon_sym_move] = ACTIONS(2747), - [anon_sym_try] = ACTIONS(2747), - [sym_integer_literal] = ACTIONS(2745), - [aux_sym_string_literal_token1] = ACTIONS(2745), - [sym_char_literal] = ACTIONS(2745), - [anon_sym_true] = ACTIONS(2747), - [anon_sym_false] = ACTIONS(2747), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2747), - [sym_super] = ACTIONS(2747), - [sym_crate] = ACTIONS(2747), - [sym_metavariable] = ACTIONS(2745), - [sym__raw_string_literal_start] = ACTIONS(2745), - [sym_float_literal] = ACTIONS(2745), - }, - [STATE(727)] = { - [sym_line_comment] = STATE(727), - [sym_block_comment] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(2749), - [sym_identifier] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym_macro_rules_BANG] = ACTIONS(2749), - [anon_sym_LPAREN] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2749), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_u8] = ACTIONS(2751), - [anon_sym_i8] = ACTIONS(2751), - [anon_sym_u16] = ACTIONS(2751), - [anon_sym_i16] = ACTIONS(2751), - [anon_sym_u32] = ACTIONS(2751), - [anon_sym_i32] = ACTIONS(2751), - [anon_sym_u64] = ACTIONS(2751), - [anon_sym_i64] = ACTIONS(2751), - [anon_sym_u128] = ACTIONS(2751), - [anon_sym_i128] = ACTIONS(2751), - [anon_sym_isize] = ACTIONS(2751), - [anon_sym_usize] = ACTIONS(2751), - [anon_sym_f32] = ACTIONS(2751), - [anon_sym_f64] = ACTIONS(2751), - [anon_sym_bool] = ACTIONS(2751), - [anon_sym_str] = ACTIONS(2751), - [anon_sym_char] = ACTIONS(2751), - [anon_sym_DASH] = ACTIONS(2749), - [anon_sym_BANG] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_DOT_DOT] = ACTIONS(2749), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_POUND] = ACTIONS(2749), - [anon_sym_SQUOTE] = ACTIONS(2751), - [anon_sym_async] = ACTIONS(2751), - [anon_sym_break] = ACTIONS(2751), - [anon_sym_const] = ACTIONS(2751), - [anon_sym_continue] = ACTIONS(2751), - [anon_sym_default] = ACTIONS(2751), - [anon_sym_enum] = ACTIONS(2751), - [anon_sym_fn] = ACTIONS(2751), - [anon_sym_for] = ACTIONS(2751), - [anon_sym_gen] = ACTIONS(2751), - [anon_sym_if] = ACTIONS(2751), - [anon_sym_impl] = ACTIONS(2751), - [anon_sym_let] = ACTIONS(2751), - [anon_sym_loop] = ACTIONS(2751), - [anon_sym_match] = ACTIONS(2751), - [anon_sym_mod] = ACTIONS(2751), - [anon_sym_pub] = ACTIONS(2751), - [anon_sym_return] = ACTIONS(2751), - [anon_sym_static] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(2751), - [anon_sym_trait] = ACTIONS(2751), - [anon_sym_type] = ACTIONS(2751), - [anon_sym_union] = ACTIONS(2751), - [anon_sym_unsafe] = ACTIONS(2751), - [anon_sym_use] = ACTIONS(2751), - [anon_sym_while] = ACTIONS(2751), - [anon_sym_extern] = ACTIONS(2751), - [anon_sym_yield] = ACTIONS(2751), - [anon_sym_move] = ACTIONS(2751), - [anon_sym_try] = ACTIONS(2751), - [sym_integer_literal] = ACTIONS(2749), - [aux_sym_string_literal_token1] = ACTIONS(2749), - [sym_char_literal] = ACTIONS(2749), - [anon_sym_true] = ACTIONS(2751), - [anon_sym_false] = ACTIONS(2751), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2751), - [sym_super] = ACTIONS(2751), - [sym_crate] = ACTIONS(2751), - [sym_metavariable] = ACTIONS(2749), - [sym__raw_string_literal_start] = ACTIONS(2749), - [sym_float_literal] = ACTIONS(2749), - }, - [STATE(728)] = { - [sym_line_comment] = STATE(728), - [sym_block_comment] = STATE(728), - [ts_builtin_sym_end] = ACTIONS(2753), - [sym_identifier] = ACTIONS(2755), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym_macro_rules_BANG] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2753), - [anon_sym_LBRACK] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_RBRACE] = ACTIONS(2753), - [anon_sym_STAR] = ACTIONS(2753), - [anon_sym_u8] = ACTIONS(2755), - [anon_sym_i8] = ACTIONS(2755), - [anon_sym_u16] = ACTIONS(2755), - [anon_sym_i16] = ACTIONS(2755), - [anon_sym_u32] = ACTIONS(2755), - [anon_sym_i32] = ACTIONS(2755), - [anon_sym_u64] = ACTIONS(2755), - [anon_sym_i64] = ACTIONS(2755), - [anon_sym_u128] = ACTIONS(2755), - [anon_sym_i128] = ACTIONS(2755), - [anon_sym_isize] = ACTIONS(2755), - [anon_sym_usize] = ACTIONS(2755), - [anon_sym_f32] = ACTIONS(2755), - [anon_sym_f64] = ACTIONS(2755), - [anon_sym_bool] = ACTIONS(2755), - [anon_sym_str] = ACTIONS(2755), - [anon_sym_char] = ACTIONS(2755), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2753), - [anon_sym_PIPE] = ACTIONS(2753), - [anon_sym_LT] = ACTIONS(2753), - [anon_sym_DOT_DOT] = ACTIONS(2753), - [anon_sym_COLON_COLON] = ACTIONS(2753), - [anon_sym_POUND] = ACTIONS(2753), - [anon_sym_SQUOTE] = ACTIONS(2755), - [anon_sym_async] = ACTIONS(2755), - [anon_sym_break] = ACTIONS(2755), - [anon_sym_const] = ACTIONS(2755), - [anon_sym_continue] = ACTIONS(2755), - [anon_sym_default] = ACTIONS(2755), - [anon_sym_enum] = ACTIONS(2755), - [anon_sym_fn] = ACTIONS(2755), - [anon_sym_for] = ACTIONS(2755), - [anon_sym_gen] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2755), - [anon_sym_impl] = ACTIONS(2755), - [anon_sym_let] = ACTIONS(2755), - [anon_sym_loop] = ACTIONS(2755), - [anon_sym_match] = ACTIONS(2755), - [anon_sym_mod] = ACTIONS(2755), - [anon_sym_pub] = ACTIONS(2755), - [anon_sym_return] = ACTIONS(2755), - [anon_sym_static] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2755), - [anon_sym_trait] = ACTIONS(2755), - [anon_sym_type] = ACTIONS(2755), - [anon_sym_union] = ACTIONS(2755), - [anon_sym_unsafe] = ACTIONS(2755), - [anon_sym_use] = ACTIONS(2755), - [anon_sym_while] = ACTIONS(2755), - [anon_sym_extern] = ACTIONS(2755), - [anon_sym_yield] = ACTIONS(2755), - [anon_sym_move] = ACTIONS(2755), - [anon_sym_try] = ACTIONS(2755), - [sym_integer_literal] = ACTIONS(2753), - [aux_sym_string_literal_token1] = ACTIONS(2753), - [sym_char_literal] = ACTIONS(2753), - [anon_sym_true] = ACTIONS(2755), - [anon_sym_false] = ACTIONS(2755), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2755), - [sym_super] = ACTIONS(2755), - [sym_crate] = ACTIONS(2755), - [sym_metavariable] = ACTIONS(2753), - [sym__raw_string_literal_start] = ACTIONS(2753), - [sym_float_literal] = ACTIONS(2753), - }, - [STATE(729)] = { - [sym_line_comment] = STATE(729), - [sym_block_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(2757), - [sym_identifier] = ACTIONS(2759), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym_macro_rules_BANG] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_RBRACE] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_u8] = ACTIONS(2759), - [anon_sym_i8] = ACTIONS(2759), - [anon_sym_u16] = ACTIONS(2759), - [anon_sym_i16] = ACTIONS(2759), - [anon_sym_u32] = ACTIONS(2759), - [anon_sym_i32] = ACTIONS(2759), - [anon_sym_u64] = ACTIONS(2759), - [anon_sym_i64] = ACTIONS(2759), - [anon_sym_u128] = ACTIONS(2759), - [anon_sym_i128] = ACTIONS(2759), - [anon_sym_isize] = ACTIONS(2759), - [anon_sym_usize] = ACTIONS(2759), - [anon_sym_f32] = ACTIONS(2759), - [anon_sym_f64] = ACTIONS(2759), - [anon_sym_bool] = ACTIONS(2759), - [anon_sym_str] = ACTIONS(2759), - [anon_sym_char] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_DOT_DOT] = ACTIONS(2757), - [anon_sym_COLON_COLON] = ACTIONS(2757), - [anon_sym_POUND] = ACTIONS(2757), - [anon_sym_SQUOTE] = ACTIONS(2759), - [anon_sym_async] = ACTIONS(2759), - [anon_sym_break] = ACTIONS(2759), - [anon_sym_const] = ACTIONS(2759), - [anon_sym_continue] = ACTIONS(2759), - [anon_sym_default] = ACTIONS(2759), - [anon_sym_enum] = ACTIONS(2759), - [anon_sym_fn] = ACTIONS(2759), - [anon_sym_for] = ACTIONS(2759), - [anon_sym_gen] = ACTIONS(2759), - [anon_sym_if] = ACTIONS(2759), - [anon_sym_impl] = ACTIONS(2759), - [anon_sym_let] = ACTIONS(2759), - [anon_sym_loop] = ACTIONS(2759), - [anon_sym_match] = ACTIONS(2759), - [anon_sym_mod] = ACTIONS(2759), - [anon_sym_pub] = ACTIONS(2759), - [anon_sym_return] = ACTIONS(2759), - [anon_sym_static] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2759), - [anon_sym_trait] = ACTIONS(2759), - [anon_sym_type] = ACTIONS(2759), - [anon_sym_union] = ACTIONS(2759), - [anon_sym_unsafe] = ACTIONS(2759), - [anon_sym_use] = ACTIONS(2759), - [anon_sym_while] = ACTIONS(2759), - [anon_sym_extern] = ACTIONS(2759), - [anon_sym_yield] = ACTIONS(2759), - [anon_sym_move] = ACTIONS(2759), - [anon_sym_try] = ACTIONS(2759), - [sym_integer_literal] = ACTIONS(2757), - [aux_sym_string_literal_token1] = ACTIONS(2757), - [sym_char_literal] = ACTIONS(2757), - [anon_sym_true] = ACTIONS(2759), - [anon_sym_false] = ACTIONS(2759), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2759), - [sym_super] = ACTIONS(2759), - [sym_crate] = ACTIONS(2759), - [sym_metavariable] = ACTIONS(2757), - [sym__raw_string_literal_start] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2757), - }, - [STATE(730)] = { - [sym_line_comment] = STATE(730), - [sym_block_comment] = STATE(730), [ts_builtin_sym_end] = ACTIONS(2761), [sym_identifier] = ACTIONS(2763), [anon_sym_SEMI] = ACTIONS(2761), @@ -90088,9 +88396,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2761), [sym_float_literal] = ACTIONS(2761), }, - [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(2765), [sym_identifier] = ACTIONS(2767), [anon_sym_SEMI] = ACTIONS(2765), @@ -90169,9 +88477,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2765), [sym_float_literal] = ACTIONS(2765), }, - [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(2769), [sym_identifier] = ACTIONS(2771), [anon_sym_SEMI] = ACTIONS(2769), @@ -90250,9 +88558,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2769), [sym_float_literal] = ACTIONS(2769), }, - [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(2773), [sym_identifier] = ACTIONS(2775), [anon_sym_SEMI] = ACTIONS(2773), @@ -90331,9 +88639,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2773), [sym_float_literal] = ACTIONS(2773), }, - [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(2777), [sym_identifier] = ACTIONS(2779), [anon_sym_SEMI] = ACTIONS(2777), @@ -90412,9 +88720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2777), [sym_float_literal] = ACTIONS(2777), }, - [STATE(735)] = { - [sym_line_comment] = STATE(735), - [sym_block_comment] = STATE(735), + [STATE(715)] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), [ts_builtin_sym_end] = ACTIONS(2781), [sym_identifier] = ACTIONS(2783), [anon_sym_SEMI] = ACTIONS(2781), @@ -90493,2030 +88801,3650 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2781), [sym_float_literal] = ACTIONS(2781), }, + [STATE(716)] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(2785), + [sym_identifier] = ACTIONS(2787), + [anon_sym_SEMI] = ACTIONS(2785), + [anon_sym_macro_rules_BANG] = ACTIONS(2785), + [anon_sym_LPAREN] = ACTIONS(2785), + [anon_sym_LBRACK] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2785), + [anon_sym_RBRACE] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2785), + [anon_sym_u8] = ACTIONS(2787), + [anon_sym_i8] = ACTIONS(2787), + [anon_sym_u16] = ACTIONS(2787), + [anon_sym_i16] = ACTIONS(2787), + [anon_sym_u32] = ACTIONS(2787), + [anon_sym_i32] = ACTIONS(2787), + [anon_sym_u64] = ACTIONS(2787), + [anon_sym_i64] = ACTIONS(2787), + [anon_sym_u128] = ACTIONS(2787), + [anon_sym_i128] = ACTIONS(2787), + [anon_sym_isize] = ACTIONS(2787), + [anon_sym_usize] = ACTIONS(2787), + [anon_sym_f32] = ACTIONS(2787), + [anon_sym_f64] = ACTIONS(2787), + [anon_sym_bool] = ACTIONS(2787), + [anon_sym_str] = ACTIONS(2787), + [anon_sym_char] = ACTIONS(2787), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2785), + [anon_sym_LT] = ACTIONS(2785), + [anon_sym_DOT_DOT] = ACTIONS(2785), + [anon_sym_COLON_COLON] = ACTIONS(2785), + [anon_sym_POUND] = ACTIONS(2785), + [anon_sym_SQUOTE] = ACTIONS(2787), + [anon_sym_async] = ACTIONS(2787), + [anon_sym_break] = ACTIONS(2787), + [anon_sym_const] = ACTIONS(2787), + [anon_sym_continue] = ACTIONS(2787), + [anon_sym_default] = ACTIONS(2787), + [anon_sym_enum] = ACTIONS(2787), + [anon_sym_fn] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2787), + [anon_sym_gen] = ACTIONS(2787), + [anon_sym_if] = ACTIONS(2787), + [anon_sym_impl] = ACTIONS(2787), + [anon_sym_let] = ACTIONS(2787), + [anon_sym_loop] = ACTIONS(2787), + [anon_sym_match] = ACTIONS(2787), + [anon_sym_mod] = ACTIONS(2787), + [anon_sym_pub] = ACTIONS(2787), + [anon_sym_return] = ACTIONS(2787), + [anon_sym_static] = ACTIONS(2787), + [anon_sym_struct] = ACTIONS(2787), + [anon_sym_trait] = ACTIONS(2787), + [anon_sym_type] = ACTIONS(2787), + [anon_sym_union] = ACTIONS(2787), + [anon_sym_unsafe] = ACTIONS(2787), + [anon_sym_use] = ACTIONS(2787), + [anon_sym_while] = ACTIONS(2787), + [anon_sym_extern] = ACTIONS(2787), + [anon_sym_yield] = ACTIONS(2787), + [anon_sym_move] = ACTIONS(2787), + [anon_sym_try] = ACTIONS(2787), + [sym_integer_literal] = ACTIONS(2785), + [aux_sym_string_literal_token1] = ACTIONS(2785), + [sym_char_literal] = ACTIONS(2785), + [anon_sym_true] = ACTIONS(2787), + [anon_sym_false] = ACTIONS(2787), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2787), + [sym_super] = ACTIONS(2787), + [sym_crate] = ACTIONS(2787), + [sym_metavariable] = ACTIONS(2785), + [sym__raw_string_literal_start] = ACTIONS(2785), + [sym_float_literal] = ACTIONS(2785), + }, + [STATE(717)] = { + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), + [ts_builtin_sym_end] = ACTIONS(2789), + [sym_identifier] = ACTIONS(2791), + [anon_sym_SEMI] = ACTIONS(2789), + [anon_sym_macro_rules_BANG] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2789), + [anon_sym_RBRACE] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2789), + [anon_sym_u8] = ACTIONS(2791), + [anon_sym_i8] = ACTIONS(2791), + [anon_sym_u16] = ACTIONS(2791), + [anon_sym_i16] = ACTIONS(2791), + [anon_sym_u32] = ACTIONS(2791), + [anon_sym_i32] = ACTIONS(2791), + [anon_sym_u64] = ACTIONS(2791), + [anon_sym_i64] = ACTIONS(2791), + [anon_sym_u128] = ACTIONS(2791), + [anon_sym_i128] = ACTIONS(2791), + [anon_sym_isize] = ACTIONS(2791), + [anon_sym_usize] = ACTIONS(2791), + [anon_sym_f32] = ACTIONS(2791), + [anon_sym_f64] = ACTIONS(2791), + [anon_sym_bool] = ACTIONS(2791), + [anon_sym_str] = ACTIONS(2791), + [anon_sym_char] = ACTIONS(2791), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_BANG] = ACTIONS(2789), + [anon_sym_AMP] = ACTIONS(2789), + [anon_sym_PIPE] = ACTIONS(2789), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_DOT_DOT] = ACTIONS(2789), + [anon_sym_COLON_COLON] = ACTIONS(2789), + [anon_sym_POUND] = ACTIONS(2789), + [anon_sym_SQUOTE] = ACTIONS(2791), + [anon_sym_async] = ACTIONS(2791), + [anon_sym_break] = ACTIONS(2791), + [anon_sym_const] = ACTIONS(2791), + [anon_sym_continue] = ACTIONS(2791), + [anon_sym_default] = ACTIONS(2791), + [anon_sym_enum] = ACTIONS(2791), + [anon_sym_fn] = ACTIONS(2791), + [anon_sym_for] = ACTIONS(2791), + [anon_sym_gen] = ACTIONS(2791), + [anon_sym_if] = ACTIONS(2791), + [anon_sym_impl] = ACTIONS(2791), + [anon_sym_let] = ACTIONS(2791), + [anon_sym_loop] = ACTIONS(2791), + [anon_sym_match] = ACTIONS(2791), + [anon_sym_mod] = ACTIONS(2791), + [anon_sym_pub] = ACTIONS(2791), + [anon_sym_return] = ACTIONS(2791), + [anon_sym_static] = ACTIONS(2791), + [anon_sym_struct] = ACTIONS(2791), + [anon_sym_trait] = ACTIONS(2791), + [anon_sym_type] = ACTIONS(2791), + [anon_sym_union] = ACTIONS(2791), + [anon_sym_unsafe] = ACTIONS(2791), + [anon_sym_use] = ACTIONS(2791), + [anon_sym_while] = ACTIONS(2791), + [anon_sym_extern] = ACTIONS(2791), + [anon_sym_yield] = ACTIONS(2791), + [anon_sym_move] = ACTIONS(2791), + [anon_sym_try] = ACTIONS(2791), + [sym_integer_literal] = ACTIONS(2789), + [aux_sym_string_literal_token1] = ACTIONS(2789), + [sym_char_literal] = ACTIONS(2789), + [anon_sym_true] = ACTIONS(2791), + [anon_sym_false] = ACTIONS(2791), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2791), + [sym_super] = ACTIONS(2791), + [sym_crate] = ACTIONS(2791), + [sym_metavariable] = ACTIONS(2789), + [sym__raw_string_literal_start] = ACTIONS(2789), + [sym_float_literal] = ACTIONS(2789), + }, + [STATE(718)] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), + [ts_builtin_sym_end] = ACTIONS(2793), + [sym_identifier] = ACTIONS(2795), + [anon_sym_SEMI] = ACTIONS(2793), + [anon_sym_macro_rules_BANG] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2793), + [anon_sym_RBRACE] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2793), + [anon_sym_u8] = ACTIONS(2795), + [anon_sym_i8] = ACTIONS(2795), + [anon_sym_u16] = ACTIONS(2795), + [anon_sym_i16] = ACTIONS(2795), + [anon_sym_u32] = ACTIONS(2795), + [anon_sym_i32] = ACTIONS(2795), + [anon_sym_u64] = ACTIONS(2795), + [anon_sym_i64] = ACTIONS(2795), + [anon_sym_u128] = ACTIONS(2795), + [anon_sym_i128] = ACTIONS(2795), + [anon_sym_isize] = ACTIONS(2795), + [anon_sym_usize] = ACTIONS(2795), + [anon_sym_f32] = ACTIONS(2795), + [anon_sym_f64] = ACTIONS(2795), + [anon_sym_bool] = ACTIONS(2795), + [anon_sym_str] = ACTIONS(2795), + [anon_sym_char] = ACTIONS(2795), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(2793), + [anon_sym_LT] = ACTIONS(2793), + [anon_sym_DOT_DOT] = ACTIONS(2793), + [anon_sym_COLON_COLON] = ACTIONS(2793), + [anon_sym_POUND] = ACTIONS(2793), + [anon_sym_SQUOTE] = ACTIONS(2795), + [anon_sym_async] = ACTIONS(2795), + [anon_sym_break] = ACTIONS(2795), + [anon_sym_const] = ACTIONS(2795), + [anon_sym_continue] = ACTIONS(2795), + [anon_sym_default] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2795), + [anon_sym_fn] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2795), + [anon_sym_gen] = ACTIONS(2795), + [anon_sym_if] = ACTIONS(2795), + [anon_sym_impl] = ACTIONS(2795), + [anon_sym_let] = ACTIONS(2795), + [anon_sym_loop] = ACTIONS(2795), + [anon_sym_match] = ACTIONS(2795), + [anon_sym_mod] = ACTIONS(2795), + [anon_sym_pub] = ACTIONS(2795), + [anon_sym_return] = ACTIONS(2795), + [anon_sym_static] = ACTIONS(2795), + [anon_sym_struct] = ACTIONS(2795), + [anon_sym_trait] = ACTIONS(2795), + [anon_sym_type] = ACTIONS(2795), + [anon_sym_union] = ACTIONS(2795), + [anon_sym_unsafe] = ACTIONS(2795), + [anon_sym_use] = ACTIONS(2795), + [anon_sym_while] = ACTIONS(2795), + [anon_sym_extern] = ACTIONS(2795), + [anon_sym_yield] = ACTIONS(2795), + [anon_sym_move] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2795), + [sym_integer_literal] = ACTIONS(2793), + [aux_sym_string_literal_token1] = ACTIONS(2793), + [sym_char_literal] = ACTIONS(2793), + [anon_sym_true] = ACTIONS(2795), + [anon_sym_false] = ACTIONS(2795), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2795), + [sym_super] = ACTIONS(2795), + [sym_crate] = ACTIONS(2795), + [sym_metavariable] = ACTIONS(2793), + [sym__raw_string_literal_start] = ACTIONS(2793), + [sym_float_literal] = ACTIONS(2793), + }, + [STATE(719)] = { + [sym_line_comment] = STATE(719), + [sym_block_comment] = STATE(719), + [ts_builtin_sym_end] = ACTIONS(2797), + [sym_identifier] = ACTIONS(2799), + [anon_sym_SEMI] = ACTIONS(2797), + [anon_sym_macro_rules_BANG] = ACTIONS(2797), + [anon_sym_LPAREN] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2797), + [anon_sym_RBRACE] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2797), + [anon_sym_u8] = ACTIONS(2799), + [anon_sym_i8] = ACTIONS(2799), + [anon_sym_u16] = ACTIONS(2799), + [anon_sym_i16] = ACTIONS(2799), + [anon_sym_u32] = ACTIONS(2799), + [anon_sym_i32] = ACTIONS(2799), + [anon_sym_u64] = ACTIONS(2799), + [anon_sym_i64] = ACTIONS(2799), + [anon_sym_u128] = ACTIONS(2799), + [anon_sym_i128] = ACTIONS(2799), + [anon_sym_isize] = ACTIONS(2799), + [anon_sym_usize] = ACTIONS(2799), + [anon_sym_f32] = ACTIONS(2799), + [anon_sym_f64] = ACTIONS(2799), + [anon_sym_bool] = ACTIONS(2799), + [anon_sym_str] = ACTIONS(2799), + [anon_sym_char] = ACTIONS(2799), + [anon_sym_DASH] = ACTIONS(2797), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2797), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_DOT_DOT] = ACTIONS(2797), + [anon_sym_COLON_COLON] = ACTIONS(2797), + [anon_sym_POUND] = ACTIONS(2797), + [anon_sym_SQUOTE] = ACTIONS(2799), + [anon_sym_async] = ACTIONS(2799), + [anon_sym_break] = ACTIONS(2799), + [anon_sym_const] = ACTIONS(2799), + [anon_sym_continue] = ACTIONS(2799), + [anon_sym_default] = ACTIONS(2799), + [anon_sym_enum] = ACTIONS(2799), + [anon_sym_fn] = ACTIONS(2799), + [anon_sym_for] = ACTIONS(2799), + [anon_sym_gen] = ACTIONS(2799), + [anon_sym_if] = ACTIONS(2799), + [anon_sym_impl] = ACTIONS(2799), + [anon_sym_let] = ACTIONS(2799), + [anon_sym_loop] = ACTIONS(2799), + [anon_sym_match] = ACTIONS(2799), + [anon_sym_mod] = ACTIONS(2799), + [anon_sym_pub] = ACTIONS(2799), + [anon_sym_return] = ACTIONS(2799), + [anon_sym_static] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(2799), + [anon_sym_trait] = ACTIONS(2799), + [anon_sym_type] = ACTIONS(2799), + [anon_sym_union] = ACTIONS(2799), + [anon_sym_unsafe] = ACTIONS(2799), + [anon_sym_use] = ACTIONS(2799), + [anon_sym_while] = ACTIONS(2799), + [anon_sym_extern] = ACTIONS(2799), + [anon_sym_yield] = ACTIONS(2799), + [anon_sym_move] = ACTIONS(2799), + [anon_sym_try] = ACTIONS(2799), + [sym_integer_literal] = ACTIONS(2797), + [aux_sym_string_literal_token1] = ACTIONS(2797), + [sym_char_literal] = ACTIONS(2797), + [anon_sym_true] = ACTIONS(2799), + [anon_sym_false] = ACTIONS(2799), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2799), + [sym_super] = ACTIONS(2799), + [sym_crate] = ACTIONS(2799), + [sym_metavariable] = ACTIONS(2797), + [sym__raw_string_literal_start] = ACTIONS(2797), + [sym_float_literal] = ACTIONS(2797), + }, + [STATE(720)] = { + [sym_line_comment] = STATE(720), + [sym_block_comment] = STATE(720), + [ts_builtin_sym_end] = ACTIONS(2801), + [sym_identifier] = ACTIONS(2803), + [anon_sym_SEMI] = ACTIONS(2801), + [anon_sym_macro_rules_BANG] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_u8] = ACTIONS(2803), + [anon_sym_i8] = ACTIONS(2803), + [anon_sym_u16] = ACTIONS(2803), + [anon_sym_i16] = ACTIONS(2803), + [anon_sym_u32] = ACTIONS(2803), + [anon_sym_i32] = ACTIONS(2803), + [anon_sym_u64] = ACTIONS(2803), + [anon_sym_i64] = ACTIONS(2803), + [anon_sym_u128] = ACTIONS(2803), + [anon_sym_i128] = ACTIONS(2803), + [anon_sym_isize] = ACTIONS(2803), + [anon_sym_usize] = ACTIONS(2803), + [anon_sym_f32] = ACTIONS(2803), + [anon_sym_f64] = ACTIONS(2803), + [anon_sym_bool] = ACTIONS(2803), + [anon_sym_str] = ACTIONS(2803), + [anon_sym_char] = ACTIONS(2803), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2801), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_DOT_DOT] = ACTIONS(2801), + [anon_sym_COLON_COLON] = ACTIONS(2801), + [anon_sym_POUND] = ACTIONS(2801), + [anon_sym_SQUOTE] = ACTIONS(2803), + [anon_sym_async] = ACTIONS(2803), + [anon_sym_break] = ACTIONS(2803), + [anon_sym_const] = ACTIONS(2803), + [anon_sym_continue] = ACTIONS(2803), + [anon_sym_default] = ACTIONS(2803), + [anon_sym_enum] = ACTIONS(2803), + [anon_sym_fn] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2803), + [anon_sym_gen] = ACTIONS(2803), + [anon_sym_if] = ACTIONS(2803), + [anon_sym_impl] = ACTIONS(2803), + [anon_sym_let] = ACTIONS(2803), + [anon_sym_loop] = ACTIONS(2803), + [anon_sym_match] = ACTIONS(2803), + [anon_sym_mod] = ACTIONS(2803), + [anon_sym_pub] = ACTIONS(2803), + [anon_sym_return] = ACTIONS(2803), + [anon_sym_static] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(2803), + [anon_sym_trait] = ACTIONS(2803), + [anon_sym_type] = ACTIONS(2803), + [anon_sym_union] = ACTIONS(2803), + [anon_sym_unsafe] = ACTIONS(2803), + [anon_sym_use] = ACTIONS(2803), + [anon_sym_while] = ACTIONS(2803), + [anon_sym_extern] = ACTIONS(2803), + [anon_sym_yield] = ACTIONS(2803), + [anon_sym_move] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2803), + [sym_integer_literal] = ACTIONS(2801), + [aux_sym_string_literal_token1] = ACTIONS(2801), + [sym_char_literal] = ACTIONS(2801), + [anon_sym_true] = ACTIONS(2803), + [anon_sym_false] = ACTIONS(2803), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2803), + [sym_super] = ACTIONS(2803), + [sym_crate] = ACTIONS(2803), + [sym_metavariable] = ACTIONS(2801), + [sym__raw_string_literal_start] = ACTIONS(2801), + [sym_float_literal] = ACTIONS(2801), + }, + [STATE(721)] = { + [sym_line_comment] = STATE(721), + [sym_block_comment] = STATE(721), + [ts_builtin_sym_end] = ACTIONS(2805), + [sym_identifier] = ACTIONS(2807), + [anon_sym_SEMI] = ACTIONS(2805), + [anon_sym_macro_rules_BANG] = ACTIONS(2805), + [anon_sym_LPAREN] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2805), + [anon_sym_RBRACE] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2805), + [anon_sym_u8] = ACTIONS(2807), + [anon_sym_i8] = ACTIONS(2807), + [anon_sym_u16] = ACTIONS(2807), + [anon_sym_i16] = ACTIONS(2807), + [anon_sym_u32] = ACTIONS(2807), + [anon_sym_i32] = ACTIONS(2807), + [anon_sym_u64] = ACTIONS(2807), + [anon_sym_i64] = ACTIONS(2807), + [anon_sym_u128] = ACTIONS(2807), + [anon_sym_i128] = ACTIONS(2807), + [anon_sym_isize] = ACTIONS(2807), + [anon_sym_usize] = ACTIONS(2807), + [anon_sym_f32] = ACTIONS(2807), + [anon_sym_f64] = ACTIONS(2807), + [anon_sym_bool] = ACTIONS(2807), + [anon_sym_str] = ACTIONS(2807), + [anon_sym_char] = ACTIONS(2807), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_PIPE] = ACTIONS(2805), + [anon_sym_LT] = ACTIONS(2805), + [anon_sym_DOT_DOT] = ACTIONS(2805), + [anon_sym_COLON_COLON] = ACTIONS(2805), + [anon_sym_POUND] = ACTIONS(2805), + [anon_sym_SQUOTE] = ACTIONS(2807), + [anon_sym_async] = ACTIONS(2807), + [anon_sym_break] = ACTIONS(2807), + [anon_sym_const] = ACTIONS(2807), + [anon_sym_continue] = ACTIONS(2807), + [anon_sym_default] = ACTIONS(2807), + [anon_sym_enum] = ACTIONS(2807), + [anon_sym_fn] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2807), + [anon_sym_gen] = ACTIONS(2807), + [anon_sym_if] = ACTIONS(2807), + [anon_sym_impl] = ACTIONS(2807), + [anon_sym_let] = ACTIONS(2807), + [anon_sym_loop] = ACTIONS(2807), + [anon_sym_match] = ACTIONS(2807), + [anon_sym_mod] = ACTIONS(2807), + [anon_sym_pub] = ACTIONS(2807), + [anon_sym_return] = ACTIONS(2807), + [anon_sym_static] = ACTIONS(2807), + [anon_sym_struct] = ACTIONS(2807), + [anon_sym_trait] = ACTIONS(2807), + [anon_sym_type] = ACTIONS(2807), + [anon_sym_union] = ACTIONS(2807), + [anon_sym_unsafe] = ACTIONS(2807), + [anon_sym_use] = ACTIONS(2807), + [anon_sym_while] = ACTIONS(2807), + [anon_sym_extern] = ACTIONS(2807), + [anon_sym_yield] = ACTIONS(2807), + [anon_sym_move] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2807), + [sym_integer_literal] = ACTIONS(2805), + [aux_sym_string_literal_token1] = ACTIONS(2805), + [sym_char_literal] = ACTIONS(2805), + [anon_sym_true] = ACTIONS(2807), + [anon_sym_false] = ACTIONS(2807), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2807), + [sym_super] = ACTIONS(2807), + [sym_crate] = ACTIONS(2807), + [sym_metavariable] = ACTIONS(2805), + [sym__raw_string_literal_start] = ACTIONS(2805), + [sym_float_literal] = ACTIONS(2805), + }, + [STATE(722)] = { + [sym_line_comment] = STATE(722), + [sym_block_comment] = STATE(722), + [ts_builtin_sym_end] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2811), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym_macro_rules_BANG] = ACTIONS(2809), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2809), + [anon_sym_RBRACE] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_u8] = ACTIONS(2811), + [anon_sym_i8] = ACTIONS(2811), + [anon_sym_u16] = ACTIONS(2811), + [anon_sym_i16] = ACTIONS(2811), + [anon_sym_u32] = ACTIONS(2811), + [anon_sym_i32] = ACTIONS(2811), + [anon_sym_u64] = ACTIONS(2811), + [anon_sym_i64] = ACTIONS(2811), + [anon_sym_u128] = ACTIONS(2811), + [anon_sym_i128] = ACTIONS(2811), + [anon_sym_isize] = ACTIONS(2811), + [anon_sym_usize] = ACTIONS(2811), + [anon_sym_f32] = ACTIONS(2811), + [anon_sym_f64] = ACTIONS(2811), + [anon_sym_bool] = ACTIONS(2811), + [anon_sym_str] = ACTIONS(2811), + [anon_sym_char] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_PIPE] = ACTIONS(2809), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_DOT_DOT] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_POUND] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2811), + [anon_sym_async] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), + [anon_sym_fn] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_gen] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_impl] = ACTIONS(2811), + [anon_sym_let] = ACTIONS(2811), + [anon_sym_loop] = ACTIONS(2811), + [anon_sym_match] = ACTIONS(2811), + [anon_sym_mod] = ACTIONS(2811), + [anon_sym_pub] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2811), + [anon_sym_trait] = ACTIONS(2811), + [anon_sym_type] = ACTIONS(2811), + [anon_sym_union] = ACTIONS(2811), + [anon_sym_unsafe] = ACTIONS(2811), + [anon_sym_use] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_extern] = ACTIONS(2811), + [anon_sym_yield] = ACTIONS(2811), + [anon_sym_move] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [sym_integer_literal] = ACTIONS(2809), + [aux_sym_string_literal_token1] = ACTIONS(2809), + [sym_char_literal] = ACTIONS(2809), + [anon_sym_true] = ACTIONS(2811), + [anon_sym_false] = ACTIONS(2811), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2811), + [sym_super] = ACTIONS(2811), + [sym_crate] = ACTIONS(2811), + [sym_metavariable] = ACTIONS(2809), + [sym__raw_string_literal_start] = ACTIONS(2809), + [sym_float_literal] = ACTIONS(2809), + }, + [STATE(723)] = { + [sym_line_comment] = STATE(723), + [sym_block_comment] = STATE(723), + [ts_builtin_sym_end] = ACTIONS(2813), + [sym_identifier] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym_macro_rules_BANG] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_RBRACE] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_u8] = ACTIONS(2815), + [anon_sym_i8] = ACTIONS(2815), + [anon_sym_u16] = ACTIONS(2815), + [anon_sym_i16] = ACTIONS(2815), + [anon_sym_u32] = ACTIONS(2815), + [anon_sym_i32] = ACTIONS(2815), + [anon_sym_u64] = ACTIONS(2815), + [anon_sym_i64] = ACTIONS(2815), + [anon_sym_u128] = ACTIONS(2815), + [anon_sym_i128] = ACTIONS(2815), + [anon_sym_isize] = ACTIONS(2815), + [anon_sym_usize] = ACTIONS(2815), + [anon_sym_f32] = ACTIONS(2815), + [anon_sym_f64] = ACTIONS(2815), + [anon_sym_bool] = ACTIONS(2815), + [anon_sym_str] = ACTIONS(2815), + [anon_sym_char] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_PIPE] = ACTIONS(2813), + [anon_sym_LT] = ACTIONS(2813), + [anon_sym_DOT_DOT] = ACTIONS(2813), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_POUND] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2815), + [anon_sym_async] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_fn] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_gen] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_impl] = ACTIONS(2815), + [anon_sym_let] = ACTIONS(2815), + [anon_sym_loop] = ACTIONS(2815), + [anon_sym_match] = ACTIONS(2815), + [anon_sym_mod] = ACTIONS(2815), + [anon_sym_pub] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_trait] = ACTIONS(2815), + [anon_sym_type] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [anon_sym_unsafe] = ACTIONS(2815), + [anon_sym_use] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym_yield] = ACTIONS(2815), + [anon_sym_move] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [sym_integer_literal] = ACTIONS(2813), + [aux_sym_string_literal_token1] = ACTIONS(2813), + [sym_char_literal] = ACTIONS(2813), + [anon_sym_true] = ACTIONS(2815), + [anon_sym_false] = ACTIONS(2815), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2815), + [sym_super] = ACTIONS(2815), + [sym_crate] = ACTIONS(2815), + [sym_metavariable] = ACTIONS(2813), + [sym__raw_string_literal_start] = ACTIONS(2813), + [sym_float_literal] = ACTIONS(2813), + }, + [STATE(724)] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), + [ts_builtin_sym_end] = ACTIONS(2817), + [sym_identifier] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym_macro_rules_BANG] = ACTIONS(2817), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_RBRACE] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_u8] = ACTIONS(2819), + [anon_sym_i8] = ACTIONS(2819), + [anon_sym_u16] = ACTIONS(2819), + [anon_sym_i16] = ACTIONS(2819), + [anon_sym_u32] = ACTIONS(2819), + [anon_sym_i32] = ACTIONS(2819), + [anon_sym_u64] = ACTIONS(2819), + [anon_sym_i64] = ACTIONS(2819), + [anon_sym_u128] = ACTIONS(2819), + [anon_sym_i128] = ACTIONS(2819), + [anon_sym_isize] = ACTIONS(2819), + [anon_sym_usize] = ACTIONS(2819), + [anon_sym_f32] = ACTIONS(2819), + [anon_sym_f64] = ACTIONS(2819), + [anon_sym_bool] = ACTIONS(2819), + [anon_sym_str] = ACTIONS(2819), + [anon_sym_char] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2817), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_DOT_DOT] = ACTIONS(2817), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_POUND] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_default] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), + [anon_sym_fn] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_gen] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_impl] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2819), + [anon_sym_loop] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_mod] = ACTIONS(2819), + [anon_sym_pub] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_trait] = ACTIONS(2819), + [anon_sym_type] = ACTIONS(2819), + [anon_sym_union] = ACTIONS(2819), + [anon_sym_unsafe] = ACTIONS(2819), + [anon_sym_use] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2819), + [anon_sym_extern] = ACTIONS(2819), + [anon_sym_yield] = ACTIONS(2819), + [anon_sym_move] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2819), + [sym_integer_literal] = ACTIONS(2817), + [aux_sym_string_literal_token1] = ACTIONS(2817), + [sym_char_literal] = ACTIONS(2817), + [anon_sym_true] = ACTIONS(2819), + [anon_sym_false] = ACTIONS(2819), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2819), + [sym_super] = ACTIONS(2819), + [sym_crate] = ACTIONS(2819), + [sym_metavariable] = ACTIONS(2817), + [sym__raw_string_literal_start] = ACTIONS(2817), + [sym_float_literal] = ACTIONS(2817), + }, + [STATE(725)] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), + [ts_builtin_sym_end] = ACTIONS(2821), + [sym_identifier] = ACTIONS(2823), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym_macro_rules_BANG] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_u8] = ACTIONS(2823), + [anon_sym_i8] = ACTIONS(2823), + [anon_sym_u16] = ACTIONS(2823), + [anon_sym_i16] = ACTIONS(2823), + [anon_sym_u32] = ACTIONS(2823), + [anon_sym_i32] = ACTIONS(2823), + [anon_sym_u64] = ACTIONS(2823), + [anon_sym_i64] = ACTIONS(2823), + [anon_sym_u128] = ACTIONS(2823), + [anon_sym_i128] = ACTIONS(2823), + [anon_sym_isize] = ACTIONS(2823), + [anon_sym_usize] = ACTIONS(2823), + [anon_sym_f32] = ACTIONS(2823), + [anon_sym_f64] = ACTIONS(2823), + [anon_sym_bool] = ACTIONS(2823), + [anon_sym_str] = ACTIONS(2823), + [anon_sym_char] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_DOT_DOT] = ACTIONS(2821), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_POUND] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_async] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_const] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_default] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_fn] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_gen] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_impl] = ACTIONS(2823), + [anon_sym_let] = ACTIONS(2823), + [anon_sym_loop] = ACTIONS(2823), + [anon_sym_match] = ACTIONS(2823), + [anon_sym_mod] = ACTIONS(2823), + [anon_sym_pub] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_static] = ACTIONS(2823), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_trait] = ACTIONS(2823), + [anon_sym_type] = ACTIONS(2823), + [anon_sym_union] = ACTIONS(2823), + [anon_sym_unsafe] = ACTIONS(2823), + [anon_sym_use] = ACTIONS(2823), + [anon_sym_while] = ACTIONS(2823), + [anon_sym_extern] = ACTIONS(2823), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_move] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2823), + [sym_integer_literal] = ACTIONS(2821), + [aux_sym_string_literal_token1] = ACTIONS(2821), + [sym_char_literal] = ACTIONS(2821), + [anon_sym_true] = ACTIONS(2823), + [anon_sym_false] = ACTIONS(2823), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2823), + [sym_super] = ACTIONS(2823), + [sym_crate] = ACTIONS(2823), + [sym_metavariable] = ACTIONS(2821), + [sym__raw_string_literal_start] = ACTIONS(2821), + [sym_float_literal] = ACTIONS(2821), + }, + [STATE(726)] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), + [ts_builtin_sym_end] = ACTIONS(2825), + [sym_identifier] = ACTIONS(2827), + [anon_sym_SEMI] = ACTIONS(2825), + [anon_sym_macro_rules_BANG] = ACTIONS(2825), + [anon_sym_LPAREN] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2825), + [anon_sym_RBRACE] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2825), + [anon_sym_u8] = ACTIONS(2827), + [anon_sym_i8] = ACTIONS(2827), + [anon_sym_u16] = ACTIONS(2827), + [anon_sym_i16] = ACTIONS(2827), + [anon_sym_u32] = ACTIONS(2827), + [anon_sym_i32] = ACTIONS(2827), + [anon_sym_u64] = ACTIONS(2827), + [anon_sym_i64] = ACTIONS(2827), + [anon_sym_u128] = ACTIONS(2827), + [anon_sym_i128] = ACTIONS(2827), + [anon_sym_isize] = ACTIONS(2827), + [anon_sym_usize] = ACTIONS(2827), + [anon_sym_f32] = ACTIONS(2827), + [anon_sym_f64] = ACTIONS(2827), + [anon_sym_bool] = ACTIONS(2827), + [anon_sym_str] = ACTIONS(2827), + [anon_sym_char] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_AMP] = ACTIONS(2825), + [anon_sym_PIPE] = ACTIONS(2825), + [anon_sym_LT] = ACTIONS(2825), + [anon_sym_DOT_DOT] = ACTIONS(2825), + [anon_sym_COLON_COLON] = ACTIONS(2825), + [anon_sym_POUND] = ACTIONS(2825), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_async] = ACTIONS(2827), + [anon_sym_break] = ACTIONS(2827), + [anon_sym_const] = ACTIONS(2827), + [anon_sym_continue] = ACTIONS(2827), + [anon_sym_default] = ACTIONS(2827), + [anon_sym_enum] = ACTIONS(2827), + [anon_sym_fn] = ACTIONS(2827), + [anon_sym_for] = ACTIONS(2827), + [anon_sym_gen] = ACTIONS(2827), + [anon_sym_if] = ACTIONS(2827), + [anon_sym_impl] = ACTIONS(2827), + [anon_sym_let] = ACTIONS(2827), + [anon_sym_loop] = ACTIONS(2827), + [anon_sym_match] = ACTIONS(2827), + [anon_sym_mod] = ACTIONS(2827), + [anon_sym_pub] = ACTIONS(2827), + [anon_sym_return] = ACTIONS(2827), + [anon_sym_static] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_trait] = ACTIONS(2827), + [anon_sym_type] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2827), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_use] = ACTIONS(2827), + [anon_sym_while] = ACTIONS(2827), + [anon_sym_extern] = ACTIONS(2827), + [anon_sym_yield] = ACTIONS(2827), + [anon_sym_move] = ACTIONS(2827), + [anon_sym_try] = ACTIONS(2827), + [sym_integer_literal] = ACTIONS(2825), + [aux_sym_string_literal_token1] = ACTIONS(2825), + [sym_char_literal] = ACTIONS(2825), + [anon_sym_true] = ACTIONS(2827), + [anon_sym_false] = ACTIONS(2827), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2827), + [sym_super] = ACTIONS(2827), + [sym_crate] = ACTIONS(2827), + [sym_metavariable] = ACTIONS(2825), + [sym__raw_string_literal_start] = ACTIONS(2825), + [sym_float_literal] = ACTIONS(2825), + }, + [STATE(727)] = { + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), + [ts_builtin_sym_end] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), + [anon_sym_SEMI] = ACTIONS(2829), + [anon_sym_macro_rules_BANG] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_RBRACE] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2829), + [anon_sym_u8] = ACTIONS(2831), + [anon_sym_i8] = ACTIONS(2831), + [anon_sym_u16] = ACTIONS(2831), + [anon_sym_i16] = ACTIONS(2831), + [anon_sym_u32] = ACTIONS(2831), + [anon_sym_i32] = ACTIONS(2831), + [anon_sym_u64] = ACTIONS(2831), + [anon_sym_i64] = ACTIONS(2831), + [anon_sym_u128] = ACTIONS(2831), + [anon_sym_i128] = ACTIONS(2831), + [anon_sym_isize] = ACTIONS(2831), + [anon_sym_usize] = ACTIONS(2831), + [anon_sym_f32] = ACTIONS(2831), + [anon_sym_f64] = ACTIONS(2831), + [anon_sym_bool] = ACTIONS(2831), + [anon_sym_str] = ACTIONS(2831), + [anon_sym_char] = ACTIONS(2831), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_DOT_DOT] = ACTIONS(2829), + [anon_sym_COLON_COLON] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2829), + [anon_sym_SQUOTE] = ACTIONS(2831), + [anon_sym_async] = ACTIONS(2831), + [anon_sym_break] = ACTIONS(2831), + [anon_sym_const] = ACTIONS(2831), + [anon_sym_continue] = ACTIONS(2831), + [anon_sym_default] = ACTIONS(2831), + [anon_sym_enum] = ACTIONS(2831), + [anon_sym_fn] = ACTIONS(2831), + [anon_sym_for] = ACTIONS(2831), + [anon_sym_gen] = ACTIONS(2831), + [anon_sym_if] = ACTIONS(2831), + [anon_sym_impl] = ACTIONS(2831), + [anon_sym_let] = ACTIONS(2831), + [anon_sym_loop] = ACTIONS(2831), + [anon_sym_match] = ACTIONS(2831), + [anon_sym_mod] = ACTIONS(2831), + [anon_sym_pub] = ACTIONS(2831), + [anon_sym_return] = ACTIONS(2831), + [anon_sym_static] = ACTIONS(2831), + [anon_sym_struct] = ACTIONS(2831), + [anon_sym_trait] = ACTIONS(2831), + [anon_sym_type] = ACTIONS(2831), + [anon_sym_union] = ACTIONS(2831), + [anon_sym_unsafe] = ACTIONS(2831), + [anon_sym_use] = ACTIONS(2831), + [anon_sym_while] = ACTIONS(2831), + [anon_sym_extern] = ACTIONS(2831), + [anon_sym_yield] = ACTIONS(2831), + [anon_sym_move] = ACTIONS(2831), + [anon_sym_try] = ACTIONS(2831), + [sym_integer_literal] = ACTIONS(2829), + [aux_sym_string_literal_token1] = ACTIONS(2829), + [sym_char_literal] = ACTIONS(2829), + [anon_sym_true] = ACTIONS(2831), + [anon_sym_false] = ACTIONS(2831), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2831), + [sym_super] = ACTIONS(2831), + [sym_crate] = ACTIONS(2831), + [sym_metavariable] = ACTIONS(2829), + [sym__raw_string_literal_start] = ACTIONS(2829), + [sym_float_literal] = ACTIONS(2829), + }, + [STATE(728)] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), + [ts_builtin_sym_end] = ACTIONS(2833), + [sym_identifier] = ACTIONS(2835), + [anon_sym_SEMI] = ACTIONS(2833), + [anon_sym_macro_rules_BANG] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2833), + [anon_sym_RBRACE] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_u8] = ACTIONS(2835), + [anon_sym_i8] = ACTIONS(2835), + [anon_sym_u16] = ACTIONS(2835), + [anon_sym_i16] = ACTIONS(2835), + [anon_sym_u32] = ACTIONS(2835), + [anon_sym_i32] = ACTIONS(2835), + [anon_sym_u64] = ACTIONS(2835), + [anon_sym_i64] = ACTIONS(2835), + [anon_sym_u128] = ACTIONS(2835), + [anon_sym_i128] = ACTIONS(2835), + [anon_sym_isize] = ACTIONS(2835), + [anon_sym_usize] = ACTIONS(2835), + [anon_sym_f32] = ACTIONS(2835), + [anon_sym_f64] = ACTIONS(2835), + [anon_sym_bool] = ACTIONS(2835), + [anon_sym_str] = ACTIONS(2835), + [anon_sym_char] = ACTIONS(2835), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_DOT_DOT] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2833), + [anon_sym_SQUOTE] = ACTIONS(2835), + [anon_sym_async] = ACTIONS(2835), + [anon_sym_break] = ACTIONS(2835), + [anon_sym_const] = ACTIONS(2835), + [anon_sym_continue] = ACTIONS(2835), + [anon_sym_default] = ACTIONS(2835), + [anon_sym_enum] = ACTIONS(2835), + [anon_sym_fn] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2835), + [anon_sym_gen] = ACTIONS(2835), + [anon_sym_if] = ACTIONS(2835), + [anon_sym_impl] = ACTIONS(2835), + [anon_sym_let] = ACTIONS(2835), + [anon_sym_loop] = ACTIONS(2835), + [anon_sym_match] = ACTIONS(2835), + [anon_sym_mod] = ACTIONS(2835), + [anon_sym_pub] = ACTIONS(2835), + [anon_sym_return] = ACTIONS(2835), + [anon_sym_static] = ACTIONS(2835), + [anon_sym_struct] = ACTIONS(2835), + [anon_sym_trait] = ACTIONS(2835), + [anon_sym_type] = ACTIONS(2835), + [anon_sym_union] = ACTIONS(2835), + [anon_sym_unsafe] = ACTIONS(2835), + [anon_sym_use] = ACTIONS(2835), + [anon_sym_while] = ACTIONS(2835), + [anon_sym_extern] = ACTIONS(2835), + [anon_sym_yield] = ACTIONS(2835), + [anon_sym_move] = ACTIONS(2835), + [anon_sym_try] = ACTIONS(2835), + [sym_integer_literal] = ACTIONS(2833), + [aux_sym_string_literal_token1] = ACTIONS(2833), + [sym_char_literal] = ACTIONS(2833), + [anon_sym_true] = ACTIONS(2835), + [anon_sym_false] = ACTIONS(2835), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2835), + [sym_super] = ACTIONS(2835), + [sym_crate] = ACTIONS(2835), + [sym_metavariable] = ACTIONS(2833), + [sym__raw_string_literal_start] = ACTIONS(2833), + [sym_float_literal] = ACTIONS(2833), + }, + [STATE(729)] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(2837), + [sym_identifier] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2837), + [anon_sym_macro_rules_BANG] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2837), + [anon_sym_RBRACE] = ACTIONS(2837), + [anon_sym_STAR] = 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_DASH] = ACTIONS(2837), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_DOT_DOT] = ACTIONS(2837), + [anon_sym_COLON_COLON] = ACTIONS(2837), + [anon_sym_POUND] = ACTIONS(2837), + [anon_sym_SQUOTE] = ACTIONS(2839), + [anon_sym_async] = ACTIONS(2839), + [anon_sym_break] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(2839), + [anon_sym_continue] = ACTIONS(2839), + [anon_sym_default] = ACTIONS(2839), + [anon_sym_enum] = ACTIONS(2839), + [anon_sym_fn] = ACTIONS(2839), + [anon_sym_for] = ACTIONS(2839), + [anon_sym_gen] = ACTIONS(2839), + [anon_sym_if] = ACTIONS(2839), + [anon_sym_impl] = ACTIONS(2839), + [anon_sym_let] = ACTIONS(2839), + [anon_sym_loop] = ACTIONS(2839), + [anon_sym_match] = ACTIONS(2839), + [anon_sym_mod] = ACTIONS(2839), + [anon_sym_pub] = ACTIONS(2839), + [anon_sym_return] = ACTIONS(2839), + [anon_sym_static] = ACTIONS(2839), + [anon_sym_struct] = ACTIONS(2839), + [anon_sym_trait] = ACTIONS(2839), + [anon_sym_type] = ACTIONS(2839), + [anon_sym_union] = ACTIONS(2839), + [anon_sym_unsafe] = ACTIONS(2839), + [anon_sym_use] = ACTIONS(2839), + [anon_sym_while] = ACTIONS(2839), + [anon_sym_extern] = ACTIONS(2839), + [anon_sym_yield] = ACTIONS(2839), + [anon_sym_move] = ACTIONS(2839), + [anon_sym_try] = ACTIONS(2839), + [sym_integer_literal] = ACTIONS(2837), + [aux_sym_string_literal_token1] = ACTIONS(2837), + [sym_char_literal] = ACTIONS(2837), + [anon_sym_true] = ACTIONS(2839), + [anon_sym_false] = ACTIONS(2839), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2839), + [sym_super] = ACTIONS(2839), + [sym_crate] = ACTIONS(2839), + [sym_metavariable] = ACTIONS(2837), + [sym__raw_string_literal_start] = ACTIONS(2837), + [sym_float_literal] = ACTIONS(2837), + }, + [STATE(730)] = { + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), + [ts_builtin_sym_end] = ACTIONS(2841), + [sym_identifier] = ACTIONS(2843), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_macro_rules_BANG] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_RBRACE] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_u8] = ACTIONS(2843), + [anon_sym_i8] = ACTIONS(2843), + [anon_sym_u16] = ACTIONS(2843), + [anon_sym_i16] = ACTIONS(2843), + [anon_sym_u32] = ACTIONS(2843), + [anon_sym_i32] = ACTIONS(2843), + [anon_sym_u64] = ACTIONS(2843), + [anon_sym_i64] = ACTIONS(2843), + [anon_sym_u128] = ACTIONS(2843), + [anon_sym_i128] = ACTIONS(2843), + [anon_sym_isize] = ACTIONS(2843), + [anon_sym_usize] = ACTIONS(2843), + [anon_sym_f32] = ACTIONS(2843), + [anon_sym_f64] = ACTIONS(2843), + [anon_sym_bool] = ACTIONS(2843), + [anon_sym_str] = ACTIONS(2843), + [anon_sym_char] = ACTIONS(2843), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_BANG] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_LT] = ACTIONS(2841), + [anon_sym_DOT_DOT] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2841), + [anon_sym_POUND] = ACTIONS(2841), + [anon_sym_SQUOTE] = ACTIONS(2843), + [anon_sym_async] = ACTIONS(2843), + [anon_sym_break] = ACTIONS(2843), + [anon_sym_const] = ACTIONS(2843), + [anon_sym_continue] = ACTIONS(2843), + [anon_sym_default] = ACTIONS(2843), + [anon_sym_enum] = ACTIONS(2843), + [anon_sym_fn] = ACTIONS(2843), + [anon_sym_for] = ACTIONS(2843), + [anon_sym_gen] = ACTIONS(2843), + [anon_sym_if] = ACTIONS(2843), + [anon_sym_impl] = ACTIONS(2843), + [anon_sym_let] = ACTIONS(2843), + [anon_sym_loop] = ACTIONS(2843), + [anon_sym_match] = ACTIONS(2843), + [anon_sym_mod] = ACTIONS(2843), + [anon_sym_pub] = ACTIONS(2843), + [anon_sym_return] = ACTIONS(2843), + [anon_sym_static] = ACTIONS(2843), + [anon_sym_struct] = ACTIONS(2843), + [anon_sym_trait] = ACTIONS(2843), + [anon_sym_type] = ACTIONS(2843), + [anon_sym_union] = ACTIONS(2843), + [anon_sym_unsafe] = ACTIONS(2843), + [anon_sym_use] = ACTIONS(2843), + [anon_sym_while] = ACTIONS(2843), + [anon_sym_extern] = ACTIONS(2843), + [anon_sym_yield] = ACTIONS(2843), + [anon_sym_move] = ACTIONS(2843), + [anon_sym_try] = ACTIONS(2843), + [sym_integer_literal] = ACTIONS(2841), + [aux_sym_string_literal_token1] = ACTIONS(2841), + [sym_char_literal] = ACTIONS(2841), + [anon_sym_true] = ACTIONS(2843), + [anon_sym_false] = ACTIONS(2843), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2843), + [sym_super] = ACTIONS(2843), + [sym_crate] = ACTIONS(2843), + [sym_metavariable] = ACTIONS(2841), + [sym__raw_string_literal_start] = ACTIONS(2841), + [sym_float_literal] = ACTIONS(2841), + }, + [STATE(731)] = { + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(2845), + [sym_identifier] = ACTIONS(2847), + [anon_sym_SEMI] = ACTIONS(2845), + [anon_sym_macro_rules_BANG] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_RBRACE] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2845), + [anon_sym_u8] = ACTIONS(2847), + [anon_sym_i8] = ACTIONS(2847), + [anon_sym_u16] = ACTIONS(2847), + [anon_sym_i16] = ACTIONS(2847), + [anon_sym_u32] = ACTIONS(2847), + [anon_sym_i32] = ACTIONS(2847), + [anon_sym_u64] = ACTIONS(2847), + [anon_sym_i64] = ACTIONS(2847), + [anon_sym_u128] = ACTIONS(2847), + [anon_sym_i128] = ACTIONS(2847), + [anon_sym_isize] = ACTIONS(2847), + [anon_sym_usize] = ACTIONS(2847), + [anon_sym_f32] = ACTIONS(2847), + [anon_sym_f64] = ACTIONS(2847), + [anon_sym_bool] = ACTIONS(2847), + [anon_sym_str] = ACTIONS(2847), + [anon_sym_char] = ACTIONS(2847), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_BANG] = ACTIONS(2845), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2845), + [anon_sym_LT] = ACTIONS(2845), + [anon_sym_DOT_DOT] = ACTIONS(2845), + [anon_sym_COLON_COLON] = ACTIONS(2845), + [anon_sym_POUND] = ACTIONS(2845), + [anon_sym_SQUOTE] = ACTIONS(2847), + [anon_sym_async] = ACTIONS(2847), + [anon_sym_break] = ACTIONS(2847), + [anon_sym_const] = ACTIONS(2847), + [anon_sym_continue] = ACTIONS(2847), + [anon_sym_default] = ACTIONS(2847), + [anon_sym_enum] = ACTIONS(2847), + [anon_sym_fn] = ACTIONS(2847), + [anon_sym_for] = ACTIONS(2847), + [anon_sym_gen] = ACTIONS(2847), + [anon_sym_if] = ACTIONS(2847), + [anon_sym_impl] = ACTIONS(2847), + [anon_sym_let] = ACTIONS(2847), + [anon_sym_loop] = ACTIONS(2847), + [anon_sym_match] = ACTIONS(2847), + [anon_sym_mod] = ACTIONS(2847), + [anon_sym_pub] = ACTIONS(2847), + [anon_sym_return] = ACTIONS(2847), + [anon_sym_static] = ACTIONS(2847), + [anon_sym_struct] = ACTIONS(2847), + [anon_sym_trait] = ACTIONS(2847), + [anon_sym_type] = ACTIONS(2847), + [anon_sym_union] = ACTIONS(2847), + [anon_sym_unsafe] = ACTIONS(2847), + [anon_sym_use] = ACTIONS(2847), + [anon_sym_while] = ACTIONS(2847), + [anon_sym_extern] = ACTIONS(2847), + [anon_sym_yield] = ACTIONS(2847), + [anon_sym_move] = ACTIONS(2847), + [anon_sym_try] = ACTIONS(2847), + [sym_integer_literal] = ACTIONS(2845), + [aux_sym_string_literal_token1] = ACTIONS(2845), + [sym_char_literal] = ACTIONS(2845), + [anon_sym_true] = ACTIONS(2847), + [anon_sym_false] = ACTIONS(2847), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2847), + [sym_super] = ACTIONS(2847), + [sym_crate] = ACTIONS(2847), + [sym_metavariable] = ACTIONS(2845), + [sym__raw_string_literal_start] = ACTIONS(2845), + [sym_float_literal] = ACTIONS(2845), + }, + [STATE(732)] = { + [sym_line_comment] = STATE(732), + [sym_block_comment] = STATE(732), + [ts_builtin_sym_end] = ACTIONS(2849), + [sym_identifier] = ACTIONS(2851), + [anon_sym_SEMI] = ACTIONS(2849), + [anon_sym_macro_rules_BANG] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2849), + [anon_sym_RBRACE] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2849), + [anon_sym_u8] = ACTIONS(2851), + [anon_sym_i8] = ACTIONS(2851), + [anon_sym_u16] = ACTIONS(2851), + [anon_sym_i16] = ACTIONS(2851), + [anon_sym_u32] = ACTIONS(2851), + [anon_sym_i32] = ACTIONS(2851), + [anon_sym_u64] = ACTIONS(2851), + [anon_sym_i64] = ACTIONS(2851), + [anon_sym_u128] = ACTIONS(2851), + [anon_sym_i128] = ACTIONS(2851), + [anon_sym_isize] = ACTIONS(2851), + [anon_sym_usize] = ACTIONS(2851), + [anon_sym_f32] = ACTIONS(2851), + [anon_sym_f64] = ACTIONS(2851), + [anon_sym_bool] = ACTIONS(2851), + [anon_sym_str] = ACTIONS(2851), + [anon_sym_char] = ACTIONS(2851), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_DOT_DOT] = ACTIONS(2849), + [anon_sym_COLON_COLON] = ACTIONS(2849), + [anon_sym_POUND] = ACTIONS(2849), + [anon_sym_SQUOTE] = ACTIONS(2851), + [anon_sym_async] = ACTIONS(2851), + [anon_sym_break] = ACTIONS(2851), + [anon_sym_const] = ACTIONS(2851), + [anon_sym_continue] = ACTIONS(2851), + [anon_sym_default] = ACTIONS(2851), + [anon_sym_enum] = ACTIONS(2851), + [anon_sym_fn] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2851), + [anon_sym_gen] = ACTIONS(2851), + [anon_sym_if] = ACTIONS(2851), + [anon_sym_impl] = ACTIONS(2851), + [anon_sym_let] = ACTIONS(2851), + [anon_sym_loop] = ACTIONS(2851), + [anon_sym_match] = ACTIONS(2851), + [anon_sym_mod] = ACTIONS(2851), + [anon_sym_pub] = ACTIONS(2851), + [anon_sym_return] = ACTIONS(2851), + [anon_sym_static] = ACTIONS(2851), + [anon_sym_struct] = ACTIONS(2851), + [anon_sym_trait] = ACTIONS(2851), + [anon_sym_type] = ACTIONS(2851), + [anon_sym_union] = ACTIONS(2851), + [anon_sym_unsafe] = ACTIONS(2851), + [anon_sym_use] = ACTIONS(2851), + [anon_sym_while] = ACTIONS(2851), + [anon_sym_extern] = ACTIONS(2851), + [anon_sym_yield] = ACTIONS(2851), + [anon_sym_move] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2851), + [sym_integer_literal] = ACTIONS(2849), + [aux_sym_string_literal_token1] = ACTIONS(2849), + [sym_char_literal] = ACTIONS(2849), + [anon_sym_true] = ACTIONS(2851), + [anon_sym_false] = ACTIONS(2851), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2851), + [sym_super] = ACTIONS(2851), + [sym_crate] = ACTIONS(2851), + [sym_metavariable] = ACTIONS(2849), + [sym__raw_string_literal_start] = ACTIONS(2849), + [sym_float_literal] = ACTIONS(2849), + }, + [STATE(733)] = { + [sym_line_comment] = STATE(733), + [sym_block_comment] = STATE(733), + [ts_builtin_sym_end] = ACTIONS(2853), + [sym_identifier] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(2853), + [anon_sym_macro_rules_BANG] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(2853), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2853), + [anon_sym_RBRACE] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2853), + [anon_sym_u8] = ACTIONS(2855), + [anon_sym_i8] = ACTIONS(2855), + [anon_sym_u16] = ACTIONS(2855), + [anon_sym_i16] = ACTIONS(2855), + [anon_sym_u32] = ACTIONS(2855), + [anon_sym_i32] = ACTIONS(2855), + [anon_sym_u64] = ACTIONS(2855), + [anon_sym_i64] = ACTIONS(2855), + [anon_sym_u128] = ACTIONS(2855), + [anon_sym_i128] = ACTIONS(2855), + [anon_sym_isize] = ACTIONS(2855), + [anon_sym_usize] = ACTIONS(2855), + [anon_sym_f32] = ACTIONS(2855), + [anon_sym_f64] = ACTIONS(2855), + [anon_sym_bool] = ACTIONS(2855), + [anon_sym_str] = ACTIONS(2855), + [anon_sym_char] = ACTIONS(2855), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_PIPE] = ACTIONS(2853), + [anon_sym_LT] = ACTIONS(2853), + [anon_sym_DOT_DOT] = ACTIONS(2853), + [anon_sym_COLON_COLON] = ACTIONS(2853), + [anon_sym_POUND] = ACTIONS(2853), + [anon_sym_SQUOTE] = ACTIONS(2855), + [anon_sym_async] = ACTIONS(2855), + [anon_sym_break] = ACTIONS(2855), + [anon_sym_const] = ACTIONS(2855), + [anon_sym_continue] = ACTIONS(2855), + [anon_sym_default] = ACTIONS(2855), + [anon_sym_enum] = ACTIONS(2855), + [anon_sym_fn] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2855), + [anon_sym_gen] = ACTIONS(2855), + [anon_sym_if] = ACTIONS(2855), + [anon_sym_impl] = ACTIONS(2855), + [anon_sym_let] = ACTIONS(2855), + [anon_sym_loop] = ACTIONS(2855), + [anon_sym_match] = ACTIONS(2855), + [anon_sym_mod] = ACTIONS(2855), + [anon_sym_pub] = ACTIONS(2855), + [anon_sym_return] = ACTIONS(2855), + [anon_sym_static] = ACTIONS(2855), + [anon_sym_struct] = ACTIONS(2855), + [anon_sym_trait] = ACTIONS(2855), + [anon_sym_type] = ACTIONS(2855), + [anon_sym_union] = ACTIONS(2855), + [anon_sym_unsafe] = ACTIONS(2855), + [anon_sym_use] = ACTIONS(2855), + [anon_sym_while] = ACTIONS(2855), + [anon_sym_extern] = ACTIONS(2855), + [anon_sym_yield] = ACTIONS(2855), + [anon_sym_move] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2855), + [sym_integer_literal] = ACTIONS(2853), + [aux_sym_string_literal_token1] = ACTIONS(2853), + [sym_char_literal] = ACTIONS(2853), + [anon_sym_true] = ACTIONS(2855), + [anon_sym_false] = ACTIONS(2855), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2855), + [sym_super] = ACTIONS(2855), + [sym_crate] = ACTIONS(2855), + [sym_metavariable] = ACTIONS(2853), + [sym__raw_string_literal_start] = ACTIONS(2853), + [sym_float_literal] = ACTIONS(2853), + }, + [STATE(734)] = { + [sym_line_comment] = STATE(734), + [sym_block_comment] = STATE(734), + [ts_builtin_sym_end] = ACTIONS(2857), + [sym_identifier] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2857), + [anon_sym_macro_rules_BANG] = ACTIONS(2857), + [anon_sym_LPAREN] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2857), + [anon_sym_RBRACE] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2857), + [anon_sym_u8] = ACTIONS(2859), + [anon_sym_i8] = ACTIONS(2859), + [anon_sym_u16] = ACTIONS(2859), + [anon_sym_i16] = ACTIONS(2859), + [anon_sym_u32] = ACTIONS(2859), + [anon_sym_i32] = ACTIONS(2859), + [anon_sym_u64] = ACTIONS(2859), + [anon_sym_i64] = ACTIONS(2859), + [anon_sym_u128] = ACTIONS(2859), + [anon_sym_i128] = ACTIONS(2859), + [anon_sym_isize] = ACTIONS(2859), + [anon_sym_usize] = ACTIONS(2859), + [anon_sym_f32] = ACTIONS(2859), + [anon_sym_f64] = ACTIONS(2859), + [anon_sym_bool] = ACTIONS(2859), + [anon_sym_str] = ACTIONS(2859), + [anon_sym_char] = ACTIONS(2859), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_DOT_DOT] = ACTIONS(2857), + [anon_sym_COLON_COLON] = ACTIONS(2857), + [anon_sym_POUND] = ACTIONS(2857), + [anon_sym_SQUOTE] = ACTIONS(2859), + [anon_sym_async] = ACTIONS(2859), + [anon_sym_break] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2859), + [anon_sym_continue] = ACTIONS(2859), + [anon_sym_default] = ACTIONS(2859), + [anon_sym_enum] = ACTIONS(2859), + [anon_sym_fn] = ACTIONS(2859), + [anon_sym_for] = ACTIONS(2859), + [anon_sym_gen] = ACTIONS(2859), + [anon_sym_if] = ACTIONS(2859), + [anon_sym_impl] = ACTIONS(2859), + [anon_sym_let] = ACTIONS(2859), + [anon_sym_loop] = ACTIONS(2859), + [anon_sym_match] = ACTIONS(2859), + [anon_sym_mod] = ACTIONS(2859), + [anon_sym_pub] = ACTIONS(2859), + [anon_sym_return] = ACTIONS(2859), + [anon_sym_static] = ACTIONS(2859), + [anon_sym_struct] = ACTIONS(2859), + [anon_sym_trait] = ACTIONS(2859), + [anon_sym_type] = ACTIONS(2859), + [anon_sym_union] = ACTIONS(2859), + [anon_sym_unsafe] = ACTIONS(2859), + [anon_sym_use] = ACTIONS(2859), + [anon_sym_while] = ACTIONS(2859), + [anon_sym_extern] = ACTIONS(2859), + [anon_sym_yield] = ACTIONS(2859), + [anon_sym_move] = ACTIONS(2859), + [anon_sym_try] = ACTIONS(2859), + [sym_integer_literal] = ACTIONS(2857), + [aux_sym_string_literal_token1] = ACTIONS(2857), + [sym_char_literal] = ACTIONS(2857), + [anon_sym_true] = ACTIONS(2859), + [anon_sym_false] = ACTIONS(2859), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2859), + [sym_super] = ACTIONS(2859), + [sym_crate] = ACTIONS(2859), + [sym_metavariable] = ACTIONS(2857), + [sym__raw_string_literal_start] = ACTIONS(2857), + [sym_float_literal] = ACTIONS(2857), + }, + [STATE(735)] = { + [sym_line_comment] = STATE(735), + [sym_block_comment] = STATE(735), + [ts_builtin_sym_end] = ACTIONS(2861), + [sym_identifier] = ACTIONS(2863), + [anon_sym_SEMI] = ACTIONS(2861), + [anon_sym_macro_rules_BANG] = ACTIONS(2861), + [anon_sym_LPAREN] = ACTIONS(2861), + [anon_sym_LBRACK] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2861), + [anon_sym_RBRACE] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(2861), + [anon_sym_u8] = ACTIONS(2863), + [anon_sym_i8] = ACTIONS(2863), + [anon_sym_u16] = ACTIONS(2863), + [anon_sym_i16] = ACTIONS(2863), + [anon_sym_u32] = ACTIONS(2863), + [anon_sym_i32] = ACTIONS(2863), + [anon_sym_u64] = ACTIONS(2863), + [anon_sym_i64] = ACTIONS(2863), + [anon_sym_u128] = ACTIONS(2863), + [anon_sym_i128] = ACTIONS(2863), + [anon_sym_isize] = ACTIONS(2863), + [anon_sym_usize] = ACTIONS(2863), + [anon_sym_f32] = ACTIONS(2863), + [anon_sym_f64] = ACTIONS(2863), + [anon_sym_bool] = ACTIONS(2863), + [anon_sym_str] = ACTIONS(2863), + [anon_sym_char] = ACTIONS(2863), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_BANG] = ACTIONS(2861), + [anon_sym_AMP] = ACTIONS(2861), + [anon_sym_PIPE] = ACTIONS(2861), + [anon_sym_LT] = ACTIONS(2861), + [anon_sym_DOT_DOT] = ACTIONS(2861), + [anon_sym_COLON_COLON] = ACTIONS(2861), + [anon_sym_POUND] = ACTIONS(2861), + [anon_sym_SQUOTE] = ACTIONS(2863), + [anon_sym_async] = ACTIONS(2863), + [anon_sym_break] = ACTIONS(2863), + [anon_sym_const] = ACTIONS(2863), + [anon_sym_continue] = ACTIONS(2863), + [anon_sym_default] = ACTIONS(2863), + [anon_sym_enum] = ACTIONS(2863), + [anon_sym_fn] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2863), + [anon_sym_gen] = ACTIONS(2863), + [anon_sym_if] = ACTIONS(2863), + [anon_sym_impl] = ACTIONS(2863), + [anon_sym_let] = ACTIONS(2863), + [anon_sym_loop] = ACTIONS(2863), + [anon_sym_match] = ACTIONS(2863), + [anon_sym_mod] = ACTIONS(2863), + [anon_sym_pub] = ACTIONS(2863), + [anon_sym_return] = ACTIONS(2863), + [anon_sym_static] = ACTIONS(2863), + [anon_sym_struct] = ACTIONS(2863), + [anon_sym_trait] = ACTIONS(2863), + [anon_sym_type] = ACTIONS(2863), + [anon_sym_union] = ACTIONS(2863), + [anon_sym_unsafe] = ACTIONS(2863), + [anon_sym_use] = ACTIONS(2863), + [anon_sym_while] = ACTIONS(2863), + [anon_sym_extern] = ACTIONS(2863), + [anon_sym_yield] = ACTIONS(2863), + [anon_sym_move] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2863), + [sym_integer_literal] = ACTIONS(2861), + [aux_sym_string_literal_token1] = ACTIONS(2861), + [sym_char_literal] = ACTIONS(2861), + [anon_sym_true] = ACTIONS(2863), + [anon_sym_false] = ACTIONS(2863), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2863), + [sym_super] = ACTIONS(2863), + [sym_crate] = ACTIONS(2863), + [sym_metavariable] = ACTIONS(2861), + [sym__raw_string_literal_start] = ACTIONS(2861), + [sym_float_literal] = ACTIONS(2861), + }, [STATE(736)] = { - [sym_empty_statement] = STATE(1314), - [sym_macro_definition] = STATE(1314), - [sym_attribute_item] = STATE(1314), - [sym_inner_attribute_item] = STATE(1314), - [sym_mod_item] = STATE(1314), - [sym_foreign_mod_item] = STATE(1314), - [sym_struct_item] = STATE(1314), - [sym_union_item] = STATE(1314), - [sym_enum_item] = STATE(1314), - [sym_extern_crate_declaration] = STATE(1314), - [sym_const_item] = STATE(1314), - [sym_static_item] = STATE(1314), - [sym_type_item] = STATE(1314), - [sym_function_item] = STATE(1314), - [sym_function_signature_item] = STATE(1314), - [sym_function_modifiers] = STATE(3640), - [sym_impl_item] = STATE(1314), - [sym_trait_item] = STATE(1314), - [sym_associated_type] = STATE(1314), - [sym_let_declaration] = STATE(1314), - [sym_use_declaration] = STATE(1314), - [sym_extern_modifier] = STATE(2199), - [sym_visibility_modifier] = STATE(1957), - [sym_bracketed_type] = STATE(3370), - [sym_generic_type_with_turbofish] = STATE(3395), - [sym_macro_invocation] = STATE(1314), - [sym_scoped_identifier] = STATE(3297), [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [aux_sym_declaration_list_repeat1] = STATE(760), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_macro_rules_BANG] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2785), - [anon_sym_u8] = ACTIONS(2241), - [anon_sym_i8] = ACTIONS(2241), - [anon_sym_u16] = ACTIONS(2241), - [anon_sym_i16] = ACTIONS(2241), - [anon_sym_u32] = ACTIONS(2241), - [anon_sym_i32] = ACTIONS(2241), - [anon_sym_u64] = ACTIONS(2241), - [anon_sym_i64] = ACTIONS(2241), - [anon_sym_u128] = ACTIONS(2241), - [anon_sym_i128] = ACTIONS(2241), - [anon_sym_isize] = ACTIONS(2241), - [anon_sym_usize] = ACTIONS(2241), - [anon_sym_f32] = ACTIONS(2241), - [anon_sym_f64] = ACTIONS(2241), - [anon_sym_bool] = ACTIONS(2241), - [anon_sym_str] = ACTIONS(2241), - [anon_sym_char] = ACTIONS(2241), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(2247), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2251), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_gen] = ACTIONS(2255), - [anon_sym_impl] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2259), - [anon_sym_mod] = ACTIONS(2261), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2263), - [anon_sym_struct] = ACTIONS(2265), - [anon_sym_trait] = ACTIONS(2267), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2271), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2275), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2279), - [sym_super] = ACTIONS(2279), - [sym_crate] = ACTIONS(2281), - [sym_metavariable] = ACTIONS(2283), + [ts_builtin_sym_end] = ACTIONS(2865), + [sym_identifier] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(2865), + [anon_sym_macro_rules_BANG] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2865), + [anon_sym_RBRACE] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2865), + [anon_sym_u8] = ACTIONS(2867), + [anon_sym_i8] = ACTIONS(2867), + [anon_sym_u16] = ACTIONS(2867), + [anon_sym_i16] = ACTIONS(2867), + [anon_sym_u32] = ACTIONS(2867), + [anon_sym_i32] = ACTIONS(2867), + [anon_sym_u64] = ACTIONS(2867), + [anon_sym_i64] = ACTIONS(2867), + [anon_sym_u128] = ACTIONS(2867), + [anon_sym_i128] = ACTIONS(2867), + [anon_sym_isize] = ACTIONS(2867), + [anon_sym_usize] = ACTIONS(2867), + [anon_sym_f32] = ACTIONS(2867), + [anon_sym_f64] = ACTIONS(2867), + [anon_sym_bool] = ACTIONS(2867), + [anon_sym_str] = ACTIONS(2867), + [anon_sym_char] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_PIPE] = ACTIONS(2865), + [anon_sym_LT] = ACTIONS(2865), + [anon_sym_DOT_DOT] = ACTIONS(2865), + [anon_sym_COLON_COLON] = ACTIONS(2865), + [anon_sym_POUND] = ACTIONS(2865), + [anon_sym_SQUOTE] = ACTIONS(2867), + [anon_sym_async] = ACTIONS(2867), + [anon_sym_break] = ACTIONS(2867), + [anon_sym_const] = ACTIONS(2867), + [anon_sym_continue] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2867), + [anon_sym_fn] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2867), + [anon_sym_gen] = ACTIONS(2867), + [anon_sym_if] = ACTIONS(2867), + [anon_sym_impl] = ACTIONS(2867), + [anon_sym_let] = ACTIONS(2867), + [anon_sym_loop] = ACTIONS(2867), + [anon_sym_match] = ACTIONS(2867), + [anon_sym_mod] = ACTIONS(2867), + [anon_sym_pub] = ACTIONS(2867), + [anon_sym_return] = ACTIONS(2867), + [anon_sym_static] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(2867), + [anon_sym_trait] = ACTIONS(2867), + [anon_sym_type] = ACTIONS(2867), + [anon_sym_union] = ACTIONS(2867), + [anon_sym_unsafe] = ACTIONS(2867), + [anon_sym_use] = ACTIONS(2867), + [anon_sym_while] = ACTIONS(2867), + [anon_sym_extern] = ACTIONS(2867), + [anon_sym_yield] = ACTIONS(2867), + [anon_sym_move] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2867), + [sym_integer_literal] = ACTIONS(2865), + [aux_sym_string_literal_token1] = ACTIONS(2865), + [sym_char_literal] = ACTIONS(2865), + [anon_sym_true] = ACTIONS(2867), + [anon_sym_false] = ACTIONS(2867), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2867), + [sym_super] = ACTIONS(2867), + [sym_crate] = ACTIONS(2867), + [sym_metavariable] = ACTIONS(2865), + [sym__raw_string_literal_start] = ACTIONS(2865), + [sym_float_literal] = ACTIONS(2865), }, [STATE(737)] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), - [ts_builtin_sym_end] = ACTIONS(2787), - [sym_identifier] = ACTIONS(2789), - [anon_sym_SEMI] = ACTIONS(2787), - [anon_sym_macro_rules_BANG] = ACTIONS(2787), - [anon_sym_LPAREN] = ACTIONS(2787), - [anon_sym_LBRACK] = ACTIONS(2787), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_RBRACE] = ACTIONS(2787), - [anon_sym_STAR] = ACTIONS(2787), - [anon_sym_u8] = ACTIONS(2789), - [anon_sym_i8] = ACTIONS(2789), - [anon_sym_u16] = ACTIONS(2789), - [anon_sym_i16] = ACTIONS(2789), - [anon_sym_u32] = ACTIONS(2789), - [anon_sym_i32] = ACTIONS(2789), - [anon_sym_u64] = ACTIONS(2789), - [anon_sym_i64] = ACTIONS(2789), - [anon_sym_u128] = ACTIONS(2789), - [anon_sym_i128] = ACTIONS(2789), - [anon_sym_isize] = ACTIONS(2789), - [anon_sym_usize] = ACTIONS(2789), - [anon_sym_f32] = ACTIONS(2789), - [anon_sym_f64] = ACTIONS(2789), - [anon_sym_bool] = ACTIONS(2789), - [anon_sym_str] = ACTIONS(2789), - [anon_sym_char] = ACTIONS(2789), - [anon_sym_DASH] = ACTIONS(2787), - [anon_sym_BANG] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2787), - [anon_sym_PIPE] = ACTIONS(2787), - [anon_sym_LT] = ACTIONS(2787), - [anon_sym_DOT_DOT] = ACTIONS(2787), - [anon_sym_COLON_COLON] = ACTIONS(2787), - [anon_sym_POUND] = ACTIONS(2787), - [anon_sym_SQUOTE] = ACTIONS(2789), - [anon_sym_async] = ACTIONS(2789), - [anon_sym_break] = ACTIONS(2789), - [anon_sym_const] = ACTIONS(2789), - [anon_sym_continue] = ACTIONS(2789), - [anon_sym_default] = ACTIONS(2789), - [anon_sym_enum] = ACTIONS(2789), - [anon_sym_fn] = ACTIONS(2789), - [anon_sym_for] = ACTIONS(2789), - [anon_sym_gen] = ACTIONS(2789), - [anon_sym_if] = ACTIONS(2789), - [anon_sym_impl] = ACTIONS(2789), - [anon_sym_let] = ACTIONS(2789), - [anon_sym_loop] = ACTIONS(2789), - [anon_sym_match] = ACTIONS(2789), - [anon_sym_mod] = ACTIONS(2789), - [anon_sym_pub] = ACTIONS(2789), - [anon_sym_return] = ACTIONS(2789), - [anon_sym_static] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(2789), - [anon_sym_trait] = ACTIONS(2789), - [anon_sym_type] = ACTIONS(2789), - [anon_sym_union] = ACTIONS(2789), - [anon_sym_unsafe] = ACTIONS(2789), - [anon_sym_use] = ACTIONS(2789), - [anon_sym_while] = ACTIONS(2789), - [anon_sym_extern] = ACTIONS(2789), - [anon_sym_yield] = ACTIONS(2789), - [anon_sym_move] = ACTIONS(2789), - [anon_sym_try] = ACTIONS(2789), - [sym_integer_literal] = ACTIONS(2787), - [aux_sym_string_literal_token1] = ACTIONS(2787), - [sym_char_literal] = ACTIONS(2787), - [anon_sym_true] = ACTIONS(2789), - [anon_sym_false] = ACTIONS(2789), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2789), - [sym_super] = ACTIONS(2789), - [sym_crate] = ACTIONS(2789), - [sym_metavariable] = ACTIONS(2787), - [sym__raw_string_literal_start] = ACTIONS(2787), - [sym_float_literal] = ACTIONS(2787), + [ts_builtin_sym_end] = ACTIONS(2869), + [sym_identifier] = ACTIONS(2871), + [anon_sym_SEMI] = ACTIONS(2869), + [anon_sym_macro_rules_BANG] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2869), + [anon_sym_RBRACE] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2869), + [anon_sym_u8] = ACTIONS(2871), + [anon_sym_i8] = ACTIONS(2871), + [anon_sym_u16] = ACTIONS(2871), + [anon_sym_i16] = ACTIONS(2871), + [anon_sym_u32] = ACTIONS(2871), + [anon_sym_i32] = ACTIONS(2871), + [anon_sym_u64] = ACTIONS(2871), + [anon_sym_i64] = ACTIONS(2871), + [anon_sym_u128] = ACTIONS(2871), + [anon_sym_i128] = ACTIONS(2871), + [anon_sym_isize] = ACTIONS(2871), + [anon_sym_usize] = ACTIONS(2871), + [anon_sym_f32] = ACTIONS(2871), + [anon_sym_f64] = ACTIONS(2871), + [anon_sym_bool] = ACTIONS(2871), + [anon_sym_str] = ACTIONS(2871), + [anon_sym_char] = ACTIONS(2871), + [anon_sym_DASH] = ACTIONS(2869), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2869), + [anon_sym_LT] = ACTIONS(2869), + [anon_sym_DOT_DOT] = ACTIONS(2869), + [anon_sym_COLON_COLON] = ACTIONS(2869), + [anon_sym_POUND] = ACTIONS(2869), + [anon_sym_SQUOTE] = ACTIONS(2871), + [anon_sym_async] = ACTIONS(2871), + [anon_sym_break] = ACTIONS(2871), + [anon_sym_const] = ACTIONS(2871), + [anon_sym_continue] = ACTIONS(2871), + [anon_sym_default] = ACTIONS(2871), + [anon_sym_enum] = ACTIONS(2871), + [anon_sym_fn] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2871), + [anon_sym_gen] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2871), + [anon_sym_impl] = ACTIONS(2871), + [anon_sym_let] = ACTIONS(2871), + [anon_sym_loop] = ACTIONS(2871), + [anon_sym_match] = ACTIONS(2871), + [anon_sym_mod] = ACTIONS(2871), + [anon_sym_pub] = ACTIONS(2871), + [anon_sym_return] = ACTIONS(2871), + [anon_sym_static] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2871), + [anon_sym_trait] = ACTIONS(2871), + [anon_sym_type] = ACTIONS(2871), + [anon_sym_union] = ACTIONS(2871), + [anon_sym_unsafe] = ACTIONS(2871), + [anon_sym_use] = ACTIONS(2871), + [anon_sym_while] = ACTIONS(2871), + [anon_sym_extern] = ACTIONS(2871), + [anon_sym_yield] = ACTIONS(2871), + [anon_sym_move] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2871), + [sym_integer_literal] = ACTIONS(2869), + [aux_sym_string_literal_token1] = ACTIONS(2869), + [sym_char_literal] = ACTIONS(2869), + [anon_sym_true] = ACTIONS(2871), + [anon_sym_false] = ACTIONS(2871), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2871), + [sym_super] = ACTIONS(2871), + [sym_crate] = ACTIONS(2871), + [sym_metavariable] = ACTIONS(2869), + [sym__raw_string_literal_start] = ACTIONS(2869), + [sym_float_literal] = ACTIONS(2869), }, [STATE(738)] = { [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(2791), - [sym_identifier] = ACTIONS(2793), - [anon_sym_SEMI] = ACTIONS(2791), - [anon_sym_macro_rules_BANG] = ACTIONS(2791), - [anon_sym_LPAREN] = ACTIONS(2791), - [anon_sym_LBRACK] = ACTIONS(2791), - [anon_sym_LBRACE] = ACTIONS(2791), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_STAR] = ACTIONS(2791), - [anon_sym_u8] = ACTIONS(2793), - [anon_sym_i8] = ACTIONS(2793), - [anon_sym_u16] = ACTIONS(2793), - [anon_sym_i16] = ACTIONS(2793), - [anon_sym_u32] = ACTIONS(2793), - [anon_sym_i32] = ACTIONS(2793), - [anon_sym_u64] = ACTIONS(2793), - [anon_sym_i64] = ACTIONS(2793), - [anon_sym_u128] = ACTIONS(2793), - [anon_sym_i128] = ACTIONS(2793), - [anon_sym_isize] = ACTIONS(2793), - [anon_sym_usize] = ACTIONS(2793), - [anon_sym_f32] = ACTIONS(2793), - [anon_sym_f64] = ACTIONS(2793), - [anon_sym_bool] = ACTIONS(2793), - [anon_sym_str] = ACTIONS(2793), - [anon_sym_char] = ACTIONS(2793), - [anon_sym_DASH] = ACTIONS(2791), - [anon_sym_BANG] = ACTIONS(2791), - [anon_sym_AMP] = ACTIONS(2791), - [anon_sym_PIPE] = ACTIONS(2791), - [anon_sym_LT] = ACTIONS(2791), - [anon_sym_DOT_DOT] = ACTIONS(2791), - [anon_sym_COLON_COLON] = ACTIONS(2791), - [anon_sym_POUND] = ACTIONS(2791), - [anon_sym_SQUOTE] = ACTIONS(2793), - [anon_sym_async] = ACTIONS(2793), - [anon_sym_break] = ACTIONS(2793), - [anon_sym_const] = ACTIONS(2793), - [anon_sym_continue] = ACTIONS(2793), - [anon_sym_default] = ACTIONS(2793), - [anon_sym_enum] = ACTIONS(2793), - [anon_sym_fn] = ACTIONS(2793), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_gen] = ACTIONS(2793), - [anon_sym_if] = ACTIONS(2793), - [anon_sym_impl] = ACTIONS(2793), - [anon_sym_let] = ACTIONS(2793), - [anon_sym_loop] = ACTIONS(2793), - [anon_sym_match] = ACTIONS(2793), - [anon_sym_mod] = ACTIONS(2793), - [anon_sym_pub] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2793), - [anon_sym_static] = ACTIONS(2793), - [anon_sym_struct] = ACTIONS(2793), - [anon_sym_trait] = ACTIONS(2793), - [anon_sym_type] = ACTIONS(2793), - [anon_sym_union] = ACTIONS(2793), - [anon_sym_unsafe] = ACTIONS(2793), - [anon_sym_use] = ACTIONS(2793), - [anon_sym_while] = ACTIONS(2793), - [anon_sym_extern] = ACTIONS(2793), - [anon_sym_yield] = ACTIONS(2793), - [anon_sym_move] = ACTIONS(2793), - [anon_sym_try] = ACTIONS(2793), - [sym_integer_literal] = ACTIONS(2791), - [aux_sym_string_literal_token1] = ACTIONS(2791), - [sym_char_literal] = ACTIONS(2791), - [anon_sym_true] = ACTIONS(2793), - [anon_sym_false] = ACTIONS(2793), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2793), - [sym_super] = ACTIONS(2793), - [sym_crate] = ACTIONS(2793), - [sym_metavariable] = ACTIONS(2791), - [sym__raw_string_literal_start] = ACTIONS(2791), - [sym_float_literal] = ACTIONS(2791), + [ts_builtin_sym_end] = ACTIONS(2873), + [sym_identifier] = ACTIONS(2875), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym_macro_rules_BANG] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_u8] = ACTIONS(2875), + [anon_sym_i8] = ACTIONS(2875), + [anon_sym_u16] = ACTIONS(2875), + [anon_sym_i16] = ACTIONS(2875), + [anon_sym_u32] = ACTIONS(2875), + [anon_sym_i32] = ACTIONS(2875), + [anon_sym_u64] = ACTIONS(2875), + [anon_sym_i64] = ACTIONS(2875), + [anon_sym_u128] = ACTIONS(2875), + [anon_sym_i128] = ACTIONS(2875), + [anon_sym_isize] = ACTIONS(2875), + [anon_sym_usize] = ACTIONS(2875), + [anon_sym_f32] = ACTIONS(2875), + [anon_sym_f64] = ACTIONS(2875), + [anon_sym_bool] = ACTIONS(2875), + [anon_sym_str] = ACTIONS(2875), + [anon_sym_char] = ACTIONS(2875), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_PIPE] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_DOT_DOT] = ACTIONS(2873), + [anon_sym_COLON_COLON] = ACTIONS(2873), + [anon_sym_POUND] = ACTIONS(2873), + [anon_sym_SQUOTE] = ACTIONS(2875), + [anon_sym_async] = ACTIONS(2875), + [anon_sym_break] = ACTIONS(2875), + [anon_sym_const] = ACTIONS(2875), + [anon_sym_continue] = ACTIONS(2875), + [anon_sym_default] = ACTIONS(2875), + [anon_sym_enum] = ACTIONS(2875), + [anon_sym_fn] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2875), + [anon_sym_gen] = ACTIONS(2875), + [anon_sym_if] = ACTIONS(2875), + [anon_sym_impl] = ACTIONS(2875), + [anon_sym_let] = ACTIONS(2875), + [anon_sym_loop] = ACTIONS(2875), + [anon_sym_match] = ACTIONS(2875), + [anon_sym_mod] = ACTIONS(2875), + [anon_sym_pub] = ACTIONS(2875), + [anon_sym_return] = ACTIONS(2875), + [anon_sym_static] = ACTIONS(2875), + [anon_sym_struct] = ACTIONS(2875), + [anon_sym_trait] = ACTIONS(2875), + [anon_sym_type] = ACTIONS(2875), + [anon_sym_union] = ACTIONS(2875), + [anon_sym_unsafe] = ACTIONS(2875), + [anon_sym_use] = ACTIONS(2875), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_extern] = ACTIONS(2875), + [anon_sym_yield] = ACTIONS(2875), + [anon_sym_move] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2875), + [sym_integer_literal] = ACTIONS(2873), + [aux_sym_string_literal_token1] = ACTIONS(2873), + [sym_char_literal] = ACTIONS(2873), + [anon_sym_true] = ACTIONS(2875), + [anon_sym_false] = ACTIONS(2875), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2875), + [sym_super] = ACTIONS(2875), + [sym_crate] = ACTIONS(2875), + [sym_metavariable] = ACTIONS(2873), + [sym__raw_string_literal_start] = ACTIONS(2873), + [sym_float_literal] = ACTIONS(2873), }, [STATE(739)] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [ts_builtin_sym_end] = ACTIONS(2795), - [sym_identifier] = ACTIONS(2797), - [anon_sym_SEMI] = ACTIONS(2795), - [anon_sym_macro_rules_BANG] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2795), - [anon_sym_LBRACK] = ACTIONS(2795), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_RBRACE] = ACTIONS(2795), - [anon_sym_STAR] = ACTIONS(2795), - [anon_sym_u8] = ACTIONS(2797), - [anon_sym_i8] = ACTIONS(2797), - [anon_sym_u16] = ACTIONS(2797), - [anon_sym_i16] = ACTIONS(2797), - [anon_sym_u32] = ACTIONS(2797), - [anon_sym_i32] = ACTIONS(2797), - [anon_sym_u64] = ACTIONS(2797), - [anon_sym_i64] = ACTIONS(2797), - [anon_sym_u128] = ACTIONS(2797), - [anon_sym_i128] = ACTIONS(2797), - [anon_sym_isize] = ACTIONS(2797), - [anon_sym_usize] = ACTIONS(2797), - [anon_sym_f32] = ACTIONS(2797), - [anon_sym_f64] = ACTIONS(2797), - [anon_sym_bool] = ACTIONS(2797), - [anon_sym_str] = ACTIONS(2797), - [anon_sym_char] = ACTIONS(2797), - [anon_sym_DASH] = ACTIONS(2795), - [anon_sym_BANG] = ACTIONS(2795), - [anon_sym_AMP] = ACTIONS(2795), - [anon_sym_PIPE] = ACTIONS(2795), - [anon_sym_LT] = ACTIONS(2795), - [anon_sym_DOT_DOT] = ACTIONS(2795), - [anon_sym_COLON_COLON] = ACTIONS(2795), - [anon_sym_POUND] = ACTIONS(2795), - [anon_sym_SQUOTE] = ACTIONS(2797), - [anon_sym_async] = ACTIONS(2797), - [anon_sym_break] = ACTIONS(2797), - [anon_sym_const] = ACTIONS(2797), - [anon_sym_continue] = ACTIONS(2797), - [anon_sym_default] = ACTIONS(2797), - [anon_sym_enum] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2797), - [anon_sym_for] = ACTIONS(2797), - [anon_sym_gen] = ACTIONS(2797), - [anon_sym_if] = ACTIONS(2797), - [anon_sym_impl] = ACTIONS(2797), - [anon_sym_let] = ACTIONS(2797), - [anon_sym_loop] = ACTIONS(2797), - [anon_sym_match] = ACTIONS(2797), - [anon_sym_mod] = ACTIONS(2797), - [anon_sym_pub] = ACTIONS(2797), - [anon_sym_return] = ACTIONS(2797), - [anon_sym_static] = ACTIONS(2797), - [anon_sym_struct] = ACTIONS(2797), - [anon_sym_trait] = ACTIONS(2797), - [anon_sym_type] = ACTIONS(2797), - [anon_sym_union] = ACTIONS(2797), - [anon_sym_unsafe] = ACTIONS(2797), - [anon_sym_use] = ACTIONS(2797), - [anon_sym_while] = ACTIONS(2797), - [anon_sym_extern] = ACTIONS(2797), - [anon_sym_yield] = ACTIONS(2797), - [anon_sym_move] = ACTIONS(2797), - [anon_sym_try] = ACTIONS(2797), - [sym_integer_literal] = ACTIONS(2795), - [aux_sym_string_literal_token1] = ACTIONS(2795), - [sym_char_literal] = ACTIONS(2795), - [anon_sym_true] = ACTIONS(2797), - [anon_sym_false] = ACTIONS(2797), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2797), - [sym_super] = ACTIONS(2797), - [sym_crate] = ACTIONS(2797), - [sym_metavariable] = ACTIONS(2795), - [sym__raw_string_literal_start] = ACTIONS(2795), - [sym_float_literal] = ACTIONS(2795), + [ts_builtin_sym_end] = ACTIONS(2877), + [sym_identifier] = ACTIONS(2879), + [anon_sym_SEMI] = ACTIONS(2877), + [anon_sym_macro_rules_BANG] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2877), + [anon_sym_LBRACE] = ACTIONS(2877), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2877), + [anon_sym_u8] = ACTIONS(2879), + [anon_sym_i8] = ACTIONS(2879), + [anon_sym_u16] = ACTIONS(2879), + [anon_sym_i16] = ACTIONS(2879), + [anon_sym_u32] = ACTIONS(2879), + [anon_sym_i32] = ACTIONS(2879), + [anon_sym_u64] = ACTIONS(2879), + [anon_sym_i64] = ACTIONS(2879), + [anon_sym_u128] = ACTIONS(2879), + [anon_sym_i128] = ACTIONS(2879), + [anon_sym_isize] = ACTIONS(2879), + [anon_sym_usize] = ACTIONS(2879), + [anon_sym_f32] = ACTIONS(2879), + [anon_sym_f64] = ACTIONS(2879), + [anon_sym_bool] = ACTIONS(2879), + [anon_sym_str] = ACTIONS(2879), + [anon_sym_char] = ACTIONS(2879), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_AMP] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_DOT_DOT] = ACTIONS(2877), + [anon_sym_COLON_COLON] = ACTIONS(2877), + [anon_sym_POUND] = ACTIONS(2877), + [anon_sym_SQUOTE] = ACTIONS(2879), + [anon_sym_async] = ACTIONS(2879), + [anon_sym_break] = ACTIONS(2879), + [anon_sym_const] = ACTIONS(2879), + [anon_sym_continue] = ACTIONS(2879), + [anon_sym_default] = ACTIONS(2879), + [anon_sym_enum] = ACTIONS(2879), + [anon_sym_fn] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2879), + [anon_sym_gen] = ACTIONS(2879), + [anon_sym_if] = ACTIONS(2879), + [anon_sym_impl] = ACTIONS(2879), + [anon_sym_let] = ACTIONS(2879), + [anon_sym_loop] = ACTIONS(2879), + [anon_sym_match] = ACTIONS(2879), + [anon_sym_mod] = ACTIONS(2879), + [anon_sym_pub] = ACTIONS(2879), + [anon_sym_return] = ACTIONS(2879), + [anon_sym_static] = ACTIONS(2879), + [anon_sym_struct] = ACTIONS(2879), + [anon_sym_trait] = ACTIONS(2879), + [anon_sym_type] = ACTIONS(2879), + [anon_sym_union] = ACTIONS(2879), + [anon_sym_unsafe] = ACTIONS(2879), + [anon_sym_use] = ACTIONS(2879), + [anon_sym_while] = ACTIONS(2879), + [anon_sym_extern] = ACTIONS(2879), + [anon_sym_yield] = ACTIONS(2879), + [anon_sym_move] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2879), + [sym_integer_literal] = ACTIONS(2877), + [aux_sym_string_literal_token1] = ACTIONS(2877), + [sym_char_literal] = ACTIONS(2877), + [anon_sym_true] = ACTIONS(2879), + [anon_sym_false] = ACTIONS(2879), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2879), + [sym_super] = ACTIONS(2879), + [sym_crate] = ACTIONS(2879), + [sym_metavariable] = ACTIONS(2877), + [sym__raw_string_literal_start] = ACTIONS(2877), + [sym_float_literal] = ACTIONS(2877), }, [STATE(740)] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(2799), - [sym_identifier] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2799), - [anon_sym_macro_rules_BANG] = ACTIONS(2799), - [anon_sym_LPAREN] = ACTIONS(2799), - [anon_sym_LBRACK] = ACTIONS(2799), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_RBRACE] = ACTIONS(2799), - [anon_sym_STAR] = ACTIONS(2799), - [anon_sym_u8] = ACTIONS(2801), - [anon_sym_i8] = ACTIONS(2801), - [anon_sym_u16] = ACTIONS(2801), - [anon_sym_i16] = ACTIONS(2801), - [anon_sym_u32] = ACTIONS(2801), - [anon_sym_i32] = ACTIONS(2801), - [anon_sym_u64] = ACTIONS(2801), - [anon_sym_i64] = ACTIONS(2801), - [anon_sym_u128] = ACTIONS(2801), - [anon_sym_i128] = ACTIONS(2801), - [anon_sym_isize] = ACTIONS(2801), - [anon_sym_usize] = ACTIONS(2801), - [anon_sym_f32] = ACTIONS(2801), - [anon_sym_f64] = ACTIONS(2801), - [anon_sym_bool] = ACTIONS(2801), - [anon_sym_str] = ACTIONS(2801), - [anon_sym_char] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2799), - [anon_sym_BANG] = ACTIONS(2799), - [anon_sym_AMP] = ACTIONS(2799), - [anon_sym_PIPE] = ACTIONS(2799), - [anon_sym_LT] = ACTIONS(2799), - [anon_sym_DOT_DOT] = ACTIONS(2799), - [anon_sym_COLON_COLON] = ACTIONS(2799), - [anon_sym_POUND] = ACTIONS(2799), - [anon_sym_SQUOTE] = ACTIONS(2801), - [anon_sym_async] = ACTIONS(2801), - [anon_sym_break] = ACTIONS(2801), - [anon_sym_const] = ACTIONS(2801), - [anon_sym_continue] = ACTIONS(2801), - [anon_sym_default] = ACTIONS(2801), - [anon_sym_enum] = ACTIONS(2801), - [anon_sym_fn] = ACTIONS(2801), - [anon_sym_for] = ACTIONS(2801), - [anon_sym_gen] = ACTIONS(2801), - [anon_sym_if] = ACTIONS(2801), - [anon_sym_impl] = ACTIONS(2801), - [anon_sym_let] = ACTIONS(2801), - [anon_sym_loop] = ACTIONS(2801), - [anon_sym_match] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_pub] = ACTIONS(2801), - [anon_sym_return] = ACTIONS(2801), - [anon_sym_static] = ACTIONS(2801), - [anon_sym_struct] = ACTIONS(2801), - [anon_sym_trait] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_union] = ACTIONS(2801), - [anon_sym_unsafe] = ACTIONS(2801), - [anon_sym_use] = ACTIONS(2801), - [anon_sym_while] = ACTIONS(2801), - [anon_sym_extern] = ACTIONS(2801), - [anon_sym_yield] = ACTIONS(2801), - [anon_sym_move] = ACTIONS(2801), - [anon_sym_try] = ACTIONS(2801), - [sym_integer_literal] = ACTIONS(2799), - [aux_sym_string_literal_token1] = ACTIONS(2799), - [sym_char_literal] = ACTIONS(2799), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2801), - [sym_super] = ACTIONS(2801), - [sym_crate] = ACTIONS(2801), - [sym_metavariable] = ACTIONS(2799), - [sym__raw_string_literal_start] = ACTIONS(2799), - [sym_float_literal] = ACTIONS(2799), + [ts_builtin_sym_end] = ACTIONS(2881), + [sym_identifier] = ACTIONS(2883), + [anon_sym_SEMI] = ACTIONS(2881), + [anon_sym_macro_rules_BANG] = ACTIONS(2881), + [anon_sym_LPAREN] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2881), + [anon_sym_LBRACE] = ACTIONS(2881), + [anon_sym_RBRACE] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2881), + [anon_sym_u8] = ACTIONS(2883), + [anon_sym_i8] = ACTIONS(2883), + [anon_sym_u16] = ACTIONS(2883), + [anon_sym_i16] = ACTIONS(2883), + [anon_sym_u32] = ACTIONS(2883), + [anon_sym_i32] = ACTIONS(2883), + [anon_sym_u64] = ACTIONS(2883), + [anon_sym_i64] = ACTIONS(2883), + [anon_sym_u128] = ACTIONS(2883), + [anon_sym_i128] = ACTIONS(2883), + [anon_sym_isize] = ACTIONS(2883), + [anon_sym_usize] = ACTIONS(2883), + [anon_sym_f32] = ACTIONS(2883), + [anon_sym_f64] = ACTIONS(2883), + [anon_sym_bool] = ACTIONS(2883), + [anon_sym_str] = ACTIONS(2883), + [anon_sym_char] = ACTIONS(2883), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_AMP] = ACTIONS(2881), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_LT] = ACTIONS(2881), + [anon_sym_DOT_DOT] = ACTIONS(2881), + [anon_sym_COLON_COLON] = ACTIONS(2881), + [anon_sym_POUND] = ACTIONS(2881), + [anon_sym_SQUOTE] = ACTIONS(2883), + [anon_sym_async] = ACTIONS(2883), + [anon_sym_break] = ACTIONS(2883), + [anon_sym_const] = ACTIONS(2883), + [anon_sym_continue] = ACTIONS(2883), + [anon_sym_default] = ACTIONS(2883), + [anon_sym_enum] = ACTIONS(2883), + [anon_sym_fn] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2883), + [anon_sym_gen] = ACTIONS(2883), + [anon_sym_if] = ACTIONS(2883), + [anon_sym_impl] = ACTIONS(2883), + [anon_sym_let] = ACTIONS(2883), + [anon_sym_loop] = ACTIONS(2883), + [anon_sym_match] = ACTIONS(2883), + [anon_sym_mod] = ACTIONS(2883), + [anon_sym_pub] = ACTIONS(2883), + [anon_sym_return] = ACTIONS(2883), + [anon_sym_static] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(2883), + [anon_sym_trait] = ACTIONS(2883), + [anon_sym_type] = ACTIONS(2883), + [anon_sym_union] = ACTIONS(2883), + [anon_sym_unsafe] = ACTIONS(2883), + [anon_sym_use] = ACTIONS(2883), + [anon_sym_while] = ACTIONS(2883), + [anon_sym_extern] = ACTIONS(2883), + [anon_sym_yield] = ACTIONS(2883), + [anon_sym_move] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2883), + [sym_integer_literal] = ACTIONS(2881), + [aux_sym_string_literal_token1] = ACTIONS(2881), + [sym_char_literal] = ACTIONS(2881), + [anon_sym_true] = ACTIONS(2883), + [anon_sym_false] = ACTIONS(2883), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2883), + [sym_super] = ACTIONS(2883), + [sym_crate] = ACTIONS(2883), + [sym_metavariable] = ACTIONS(2881), + [sym__raw_string_literal_start] = ACTIONS(2881), + [sym_float_literal] = ACTIONS(2881), }, [STATE(741)] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [ts_builtin_sym_end] = ACTIONS(2803), - [sym_identifier] = ACTIONS(2805), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_macro_rules_BANG] = ACTIONS(2803), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_u8] = ACTIONS(2805), - [anon_sym_i8] = ACTIONS(2805), - [anon_sym_u16] = ACTIONS(2805), - [anon_sym_i16] = ACTIONS(2805), - [anon_sym_u32] = ACTIONS(2805), - [anon_sym_i32] = ACTIONS(2805), - [anon_sym_u64] = ACTIONS(2805), - [anon_sym_i64] = ACTIONS(2805), - [anon_sym_u128] = ACTIONS(2805), - [anon_sym_i128] = ACTIONS(2805), - [anon_sym_isize] = ACTIONS(2805), - [anon_sym_usize] = ACTIONS(2805), - [anon_sym_f32] = ACTIONS(2805), - [anon_sym_f64] = ACTIONS(2805), - [anon_sym_bool] = ACTIONS(2805), - [anon_sym_str] = ACTIONS(2805), - [anon_sym_char] = ACTIONS(2805), - [anon_sym_DASH] = ACTIONS(2803), - [anon_sym_BANG] = ACTIONS(2803), - [anon_sym_AMP] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2803), - [anon_sym_LT] = ACTIONS(2803), - [anon_sym_DOT_DOT] = ACTIONS(2803), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_POUND] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2805), - [anon_sym_async] = ACTIONS(2805), - [anon_sym_break] = ACTIONS(2805), - [anon_sym_const] = ACTIONS(2805), - [anon_sym_continue] = ACTIONS(2805), - [anon_sym_default] = ACTIONS(2805), - [anon_sym_enum] = ACTIONS(2805), - [anon_sym_fn] = ACTIONS(2805), - [anon_sym_for] = ACTIONS(2805), - [anon_sym_gen] = ACTIONS(2805), - [anon_sym_if] = ACTIONS(2805), - [anon_sym_impl] = ACTIONS(2805), - [anon_sym_let] = ACTIONS(2805), - [anon_sym_loop] = ACTIONS(2805), - [anon_sym_match] = ACTIONS(2805), - [anon_sym_mod] = ACTIONS(2805), - [anon_sym_pub] = ACTIONS(2805), - [anon_sym_return] = ACTIONS(2805), - [anon_sym_static] = ACTIONS(2805), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_trait] = ACTIONS(2805), - [anon_sym_type] = ACTIONS(2805), - [anon_sym_union] = ACTIONS(2805), - [anon_sym_unsafe] = ACTIONS(2805), - [anon_sym_use] = ACTIONS(2805), - [anon_sym_while] = ACTIONS(2805), - [anon_sym_extern] = ACTIONS(2805), - [anon_sym_yield] = ACTIONS(2805), - [anon_sym_move] = ACTIONS(2805), - [anon_sym_try] = ACTIONS(2805), - [sym_integer_literal] = ACTIONS(2803), - [aux_sym_string_literal_token1] = ACTIONS(2803), - [sym_char_literal] = ACTIONS(2803), - [anon_sym_true] = ACTIONS(2805), - [anon_sym_false] = ACTIONS(2805), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2805), - [sym_super] = ACTIONS(2805), - [sym_crate] = ACTIONS(2805), - [sym_metavariable] = ACTIONS(2803), - [sym__raw_string_literal_start] = ACTIONS(2803), - [sym_float_literal] = ACTIONS(2803), + [ts_builtin_sym_end] = ACTIONS(2885), + [sym_identifier] = ACTIONS(2887), + [anon_sym_SEMI] = ACTIONS(2885), + [anon_sym_macro_rules_BANG] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2885), + [anon_sym_LBRACE] = ACTIONS(2885), + [anon_sym_RBRACE] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(2885), + [anon_sym_u8] = ACTIONS(2887), + [anon_sym_i8] = ACTIONS(2887), + [anon_sym_u16] = ACTIONS(2887), + [anon_sym_i16] = ACTIONS(2887), + [anon_sym_u32] = ACTIONS(2887), + [anon_sym_i32] = ACTIONS(2887), + [anon_sym_u64] = ACTIONS(2887), + [anon_sym_i64] = ACTIONS(2887), + [anon_sym_u128] = ACTIONS(2887), + [anon_sym_i128] = ACTIONS(2887), + [anon_sym_isize] = ACTIONS(2887), + [anon_sym_usize] = ACTIONS(2887), + [anon_sym_f32] = ACTIONS(2887), + [anon_sym_f64] = ACTIONS(2887), + [anon_sym_bool] = ACTIONS(2887), + [anon_sym_str] = ACTIONS(2887), + [anon_sym_char] = ACTIONS(2887), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_AMP] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2885), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_DOT_DOT] = ACTIONS(2885), + [anon_sym_COLON_COLON] = ACTIONS(2885), + [anon_sym_POUND] = ACTIONS(2885), + [anon_sym_SQUOTE] = ACTIONS(2887), + [anon_sym_async] = ACTIONS(2887), + [anon_sym_break] = ACTIONS(2887), + [anon_sym_const] = ACTIONS(2887), + [anon_sym_continue] = ACTIONS(2887), + [anon_sym_default] = ACTIONS(2887), + [anon_sym_enum] = ACTIONS(2887), + [anon_sym_fn] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2887), + [anon_sym_gen] = ACTIONS(2887), + [anon_sym_if] = ACTIONS(2887), + [anon_sym_impl] = ACTIONS(2887), + [anon_sym_let] = ACTIONS(2887), + [anon_sym_loop] = ACTIONS(2887), + [anon_sym_match] = ACTIONS(2887), + [anon_sym_mod] = ACTIONS(2887), + [anon_sym_pub] = ACTIONS(2887), + [anon_sym_return] = ACTIONS(2887), + [anon_sym_static] = ACTIONS(2887), + [anon_sym_struct] = ACTIONS(2887), + [anon_sym_trait] = ACTIONS(2887), + [anon_sym_type] = ACTIONS(2887), + [anon_sym_union] = ACTIONS(2887), + [anon_sym_unsafe] = ACTIONS(2887), + [anon_sym_use] = ACTIONS(2887), + [anon_sym_while] = ACTIONS(2887), + [anon_sym_extern] = ACTIONS(2887), + [anon_sym_yield] = ACTIONS(2887), + [anon_sym_move] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2887), + [sym_integer_literal] = ACTIONS(2885), + [aux_sym_string_literal_token1] = ACTIONS(2885), + [sym_char_literal] = ACTIONS(2885), + [anon_sym_true] = ACTIONS(2887), + [anon_sym_false] = ACTIONS(2887), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2887), + [sym_super] = ACTIONS(2887), + [sym_crate] = ACTIONS(2887), + [sym_metavariable] = ACTIONS(2885), + [sym__raw_string_literal_start] = ACTIONS(2885), + [sym_float_literal] = ACTIONS(2885), }, [STATE(742)] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [ts_builtin_sym_end] = ACTIONS(2807), - [sym_identifier] = ACTIONS(2809), - [anon_sym_SEMI] = ACTIONS(2807), - [anon_sym_macro_rules_BANG] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_RBRACE] = ACTIONS(2807), - [anon_sym_STAR] = ACTIONS(2807), - [anon_sym_u8] = ACTIONS(2809), - [anon_sym_i8] = ACTIONS(2809), - [anon_sym_u16] = ACTIONS(2809), - [anon_sym_i16] = ACTIONS(2809), - [anon_sym_u32] = ACTIONS(2809), - [anon_sym_i32] = ACTIONS(2809), - [anon_sym_u64] = ACTIONS(2809), - [anon_sym_i64] = ACTIONS(2809), - [anon_sym_u128] = ACTIONS(2809), - [anon_sym_i128] = ACTIONS(2809), - [anon_sym_isize] = ACTIONS(2809), - [anon_sym_usize] = ACTIONS(2809), - [anon_sym_f32] = ACTIONS(2809), - [anon_sym_f64] = ACTIONS(2809), - [anon_sym_bool] = ACTIONS(2809), - [anon_sym_str] = ACTIONS(2809), - [anon_sym_char] = ACTIONS(2809), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_AMP] = ACTIONS(2807), - [anon_sym_PIPE] = ACTIONS(2807), - [anon_sym_LT] = ACTIONS(2807), - [anon_sym_DOT_DOT] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2807), - [anon_sym_POUND] = ACTIONS(2807), - [anon_sym_SQUOTE] = ACTIONS(2809), - [anon_sym_async] = ACTIONS(2809), - [anon_sym_break] = ACTIONS(2809), - [anon_sym_const] = ACTIONS(2809), - [anon_sym_continue] = ACTIONS(2809), - [anon_sym_default] = ACTIONS(2809), - [anon_sym_enum] = ACTIONS(2809), - [anon_sym_fn] = ACTIONS(2809), - [anon_sym_for] = ACTIONS(2809), - [anon_sym_gen] = ACTIONS(2809), - [anon_sym_if] = ACTIONS(2809), - [anon_sym_impl] = ACTIONS(2809), - [anon_sym_let] = ACTIONS(2809), - [anon_sym_loop] = ACTIONS(2809), - [anon_sym_match] = ACTIONS(2809), - [anon_sym_mod] = ACTIONS(2809), - [anon_sym_pub] = ACTIONS(2809), - [anon_sym_return] = ACTIONS(2809), - [anon_sym_static] = ACTIONS(2809), - [anon_sym_struct] = ACTIONS(2809), - [anon_sym_trait] = ACTIONS(2809), - [anon_sym_type] = ACTIONS(2809), - [anon_sym_union] = ACTIONS(2809), - [anon_sym_unsafe] = ACTIONS(2809), - [anon_sym_use] = ACTIONS(2809), - [anon_sym_while] = ACTIONS(2809), - [anon_sym_extern] = ACTIONS(2809), - [anon_sym_yield] = ACTIONS(2809), - [anon_sym_move] = ACTIONS(2809), - [anon_sym_try] = ACTIONS(2809), - [sym_integer_literal] = ACTIONS(2807), - [aux_sym_string_literal_token1] = ACTIONS(2807), - [sym_char_literal] = ACTIONS(2807), - [anon_sym_true] = ACTIONS(2809), - [anon_sym_false] = ACTIONS(2809), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2809), - [sym_super] = ACTIONS(2809), - [sym_crate] = ACTIONS(2809), - [sym_metavariable] = ACTIONS(2807), - [sym__raw_string_literal_start] = ACTIONS(2807), - [sym_float_literal] = ACTIONS(2807), + [ts_builtin_sym_end] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2891), + [anon_sym_SEMI] = ACTIONS(2889), + [anon_sym_macro_rules_BANG] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2889), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_u8] = ACTIONS(2891), + [anon_sym_i8] = ACTIONS(2891), + [anon_sym_u16] = ACTIONS(2891), + [anon_sym_i16] = ACTIONS(2891), + [anon_sym_u32] = ACTIONS(2891), + [anon_sym_i32] = ACTIONS(2891), + [anon_sym_u64] = ACTIONS(2891), + [anon_sym_i64] = ACTIONS(2891), + [anon_sym_u128] = ACTIONS(2891), + [anon_sym_i128] = ACTIONS(2891), + [anon_sym_isize] = ACTIONS(2891), + [anon_sym_usize] = ACTIONS(2891), + [anon_sym_f32] = ACTIONS(2891), + [anon_sym_f64] = ACTIONS(2891), + [anon_sym_bool] = ACTIONS(2891), + [anon_sym_str] = ACTIONS(2891), + [anon_sym_char] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_PIPE] = ACTIONS(2889), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_DOT_DOT] = ACTIONS(2889), + [anon_sym_COLON_COLON] = ACTIONS(2889), + [anon_sym_POUND] = ACTIONS(2889), + [anon_sym_SQUOTE] = ACTIONS(2891), + [anon_sym_async] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_default] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_fn] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_gen] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_impl] = ACTIONS(2891), + [anon_sym_let] = ACTIONS(2891), + [anon_sym_loop] = ACTIONS(2891), + [anon_sym_match] = ACTIONS(2891), + [anon_sym_mod] = ACTIONS(2891), + [anon_sym_pub] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_static] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_trait] = ACTIONS(2891), + [anon_sym_type] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_unsafe] = ACTIONS(2891), + [anon_sym_use] = ACTIONS(2891), + [anon_sym_while] = ACTIONS(2891), + [anon_sym_extern] = ACTIONS(2891), + [anon_sym_yield] = ACTIONS(2891), + [anon_sym_move] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2891), + [sym_integer_literal] = ACTIONS(2889), + [aux_sym_string_literal_token1] = ACTIONS(2889), + [sym_char_literal] = ACTIONS(2889), + [anon_sym_true] = ACTIONS(2891), + [anon_sym_false] = ACTIONS(2891), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2891), + [sym_super] = ACTIONS(2891), + [sym_crate] = ACTIONS(2891), + [sym_metavariable] = ACTIONS(2889), + [sym__raw_string_literal_start] = ACTIONS(2889), + [sym_float_literal] = ACTIONS(2889), }, [STATE(743)] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(2811), - [sym_identifier] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2811), - [anon_sym_macro_rules_BANG] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_RBRACE] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_u8] = ACTIONS(2813), - [anon_sym_i8] = ACTIONS(2813), - [anon_sym_u16] = ACTIONS(2813), - [anon_sym_i16] = ACTIONS(2813), - [anon_sym_u32] = ACTIONS(2813), - [anon_sym_i32] = ACTIONS(2813), - [anon_sym_u64] = ACTIONS(2813), - [anon_sym_i64] = ACTIONS(2813), - [anon_sym_u128] = ACTIONS(2813), - [anon_sym_i128] = ACTIONS(2813), - [anon_sym_isize] = ACTIONS(2813), - [anon_sym_usize] = ACTIONS(2813), - [anon_sym_f32] = ACTIONS(2813), - [anon_sym_f64] = ACTIONS(2813), - [anon_sym_bool] = ACTIONS(2813), - [anon_sym_str] = ACTIONS(2813), - [anon_sym_char] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_BANG] = ACTIONS(2811), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_PIPE] = ACTIONS(2811), - [anon_sym_LT] = ACTIONS(2811), - [anon_sym_DOT_DOT] = ACTIONS(2811), - [anon_sym_COLON_COLON] = ACTIONS(2811), - [anon_sym_POUND] = ACTIONS(2811), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_fn] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_gen] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_impl] = ACTIONS(2813), - [anon_sym_let] = ACTIONS(2813), - [anon_sym_loop] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_mod] = ACTIONS(2813), - [anon_sym_pub] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_trait] = ACTIONS(2813), - [anon_sym_type] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_unsafe] = ACTIONS(2813), - [anon_sym_use] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym_yield] = ACTIONS(2813), - [anon_sym_move] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [sym_integer_literal] = ACTIONS(2811), - [aux_sym_string_literal_token1] = ACTIONS(2811), - [sym_char_literal] = ACTIONS(2811), - [anon_sym_true] = ACTIONS(2813), - [anon_sym_false] = ACTIONS(2813), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2813), - [sym_super] = ACTIONS(2813), - [sym_crate] = ACTIONS(2813), - [sym_metavariable] = ACTIONS(2811), - [sym__raw_string_literal_start] = ACTIONS(2811), - [sym_float_literal] = ACTIONS(2811), + [ts_builtin_sym_end] = ACTIONS(2893), + [sym_identifier] = ACTIONS(2895), + [anon_sym_SEMI] = ACTIONS(2893), + [anon_sym_macro_rules_BANG] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_RBRACE] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_u8] = ACTIONS(2895), + [anon_sym_i8] = ACTIONS(2895), + [anon_sym_u16] = ACTIONS(2895), + [anon_sym_i16] = ACTIONS(2895), + [anon_sym_u32] = ACTIONS(2895), + [anon_sym_i32] = ACTIONS(2895), + [anon_sym_u64] = ACTIONS(2895), + [anon_sym_i64] = ACTIONS(2895), + [anon_sym_u128] = ACTIONS(2895), + [anon_sym_i128] = ACTIONS(2895), + [anon_sym_isize] = ACTIONS(2895), + [anon_sym_usize] = ACTIONS(2895), + [anon_sym_f32] = ACTIONS(2895), + [anon_sym_f64] = ACTIONS(2895), + [anon_sym_bool] = ACTIONS(2895), + [anon_sym_str] = ACTIONS(2895), + [anon_sym_char] = ACTIONS(2895), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_PIPE] = ACTIONS(2893), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_DOT_DOT] = ACTIONS(2893), + [anon_sym_COLON_COLON] = ACTIONS(2893), + [anon_sym_POUND] = ACTIONS(2893), + [anon_sym_SQUOTE] = ACTIONS(2895), + [anon_sym_async] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_default] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_fn] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_gen] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_impl] = ACTIONS(2895), + [anon_sym_let] = ACTIONS(2895), + [anon_sym_loop] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2895), + [anon_sym_mod] = ACTIONS(2895), + [anon_sym_pub] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_static] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_trait] = ACTIONS(2895), + [anon_sym_type] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_unsafe] = ACTIONS(2895), + [anon_sym_use] = ACTIONS(2895), + [anon_sym_while] = ACTIONS(2895), + [anon_sym_extern] = ACTIONS(2895), + [anon_sym_yield] = ACTIONS(2895), + [anon_sym_move] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2895), + [sym_integer_literal] = ACTIONS(2893), + [aux_sym_string_literal_token1] = ACTIONS(2893), + [sym_char_literal] = ACTIONS(2893), + [anon_sym_true] = ACTIONS(2895), + [anon_sym_false] = ACTIONS(2895), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2895), + [sym_super] = ACTIONS(2895), + [sym_crate] = ACTIONS(2895), + [sym_metavariable] = ACTIONS(2893), + [sym__raw_string_literal_start] = ACTIONS(2893), + [sym_float_literal] = ACTIONS(2893), }, [STATE(744)] = { [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [ts_builtin_sym_end] = ACTIONS(2815), - [sym_identifier] = ACTIONS(2817), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_macro_rules_BANG] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_u8] = ACTIONS(2817), - [anon_sym_i8] = ACTIONS(2817), - [anon_sym_u16] = ACTIONS(2817), - [anon_sym_i16] = ACTIONS(2817), - [anon_sym_u32] = ACTIONS(2817), - [anon_sym_i32] = ACTIONS(2817), - [anon_sym_u64] = ACTIONS(2817), - [anon_sym_i64] = ACTIONS(2817), - [anon_sym_u128] = ACTIONS(2817), - [anon_sym_i128] = ACTIONS(2817), - [anon_sym_isize] = ACTIONS(2817), - [anon_sym_usize] = ACTIONS(2817), - [anon_sym_f32] = ACTIONS(2817), - [anon_sym_f64] = ACTIONS(2817), - [anon_sym_bool] = ACTIONS(2817), - [anon_sym_str] = ACTIONS(2817), - [anon_sym_char] = ACTIONS(2817), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LT] = ACTIONS(2815), - [anon_sym_DOT_DOT] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2817), - [anon_sym_async] = ACTIONS(2817), - [anon_sym_break] = ACTIONS(2817), - [anon_sym_const] = ACTIONS(2817), - [anon_sym_continue] = ACTIONS(2817), - [anon_sym_default] = ACTIONS(2817), - [anon_sym_enum] = ACTIONS(2817), - [anon_sym_fn] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2817), - [anon_sym_gen] = ACTIONS(2817), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_impl] = ACTIONS(2817), - [anon_sym_let] = ACTIONS(2817), - [anon_sym_loop] = ACTIONS(2817), - [anon_sym_match] = ACTIONS(2817), - [anon_sym_mod] = ACTIONS(2817), - [anon_sym_pub] = ACTIONS(2817), - [anon_sym_return] = ACTIONS(2817), - [anon_sym_static] = ACTIONS(2817), - [anon_sym_struct] = ACTIONS(2817), - [anon_sym_trait] = ACTIONS(2817), - [anon_sym_type] = ACTIONS(2817), - [anon_sym_union] = ACTIONS(2817), - [anon_sym_unsafe] = ACTIONS(2817), - [anon_sym_use] = ACTIONS(2817), - [anon_sym_while] = ACTIONS(2817), - [anon_sym_extern] = ACTIONS(2817), - [anon_sym_yield] = ACTIONS(2817), - [anon_sym_move] = ACTIONS(2817), - [anon_sym_try] = ACTIONS(2817), - [sym_integer_literal] = ACTIONS(2815), - [aux_sym_string_literal_token1] = ACTIONS(2815), - [sym_char_literal] = ACTIONS(2815), - [anon_sym_true] = ACTIONS(2817), - [anon_sym_false] = ACTIONS(2817), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2817), - [sym_super] = ACTIONS(2817), - [sym_crate] = ACTIONS(2817), - [sym_metavariable] = ACTIONS(2815), - [sym__raw_string_literal_start] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2815), + [ts_builtin_sym_end] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2899), + [anon_sym_SEMI] = ACTIONS(2897), + [anon_sym_macro_rules_BANG] = ACTIONS(2897), + [anon_sym_LPAREN] = ACTIONS(2897), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_RBRACE] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_u8] = ACTIONS(2899), + [anon_sym_i8] = ACTIONS(2899), + [anon_sym_u16] = ACTIONS(2899), + [anon_sym_i16] = ACTIONS(2899), + [anon_sym_u32] = ACTIONS(2899), + [anon_sym_i32] = ACTIONS(2899), + [anon_sym_u64] = ACTIONS(2899), + [anon_sym_i64] = ACTIONS(2899), + [anon_sym_u128] = ACTIONS(2899), + [anon_sym_i128] = ACTIONS(2899), + [anon_sym_isize] = ACTIONS(2899), + [anon_sym_usize] = ACTIONS(2899), + [anon_sym_f32] = ACTIONS(2899), + [anon_sym_f64] = ACTIONS(2899), + [anon_sym_bool] = ACTIONS(2899), + [anon_sym_str] = ACTIONS(2899), + [anon_sym_char] = ACTIONS(2899), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2897), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2897), + [anon_sym_DOT_DOT] = ACTIONS(2897), + [anon_sym_COLON_COLON] = ACTIONS(2897), + [anon_sym_POUND] = ACTIONS(2897), + [anon_sym_SQUOTE] = ACTIONS(2899), + [anon_sym_async] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(2899), + [anon_sym_const] = ACTIONS(2899), + [anon_sym_continue] = ACTIONS(2899), + [anon_sym_default] = ACTIONS(2899), + [anon_sym_enum] = ACTIONS(2899), + [anon_sym_fn] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_gen] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_impl] = ACTIONS(2899), + [anon_sym_let] = ACTIONS(2899), + [anon_sym_loop] = ACTIONS(2899), + [anon_sym_match] = ACTIONS(2899), + [anon_sym_mod] = ACTIONS(2899), + [anon_sym_pub] = ACTIONS(2899), + [anon_sym_return] = ACTIONS(2899), + [anon_sym_static] = ACTIONS(2899), + [anon_sym_struct] = ACTIONS(2899), + [anon_sym_trait] = ACTIONS(2899), + [anon_sym_type] = ACTIONS(2899), + [anon_sym_union] = ACTIONS(2899), + [anon_sym_unsafe] = ACTIONS(2899), + [anon_sym_use] = ACTIONS(2899), + [anon_sym_while] = ACTIONS(2899), + [anon_sym_extern] = ACTIONS(2899), + [anon_sym_yield] = ACTIONS(2899), + [anon_sym_move] = ACTIONS(2899), + [anon_sym_try] = ACTIONS(2899), + [sym_integer_literal] = ACTIONS(2897), + [aux_sym_string_literal_token1] = ACTIONS(2897), + [sym_char_literal] = ACTIONS(2897), + [anon_sym_true] = ACTIONS(2899), + [anon_sym_false] = ACTIONS(2899), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2899), + [sym_super] = ACTIONS(2899), + [sym_crate] = ACTIONS(2899), + [sym_metavariable] = ACTIONS(2897), + [sym__raw_string_literal_start] = ACTIONS(2897), + [sym_float_literal] = ACTIONS(2897), }, [STATE(745)] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [ts_builtin_sym_end] = ACTIONS(2819), - [sym_identifier] = ACTIONS(2821), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_macro_rules_BANG] = ACTIONS(2819), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_RBRACE] = ACTIONS(2819), - [anon_sym_STAR] = ACTIONS(2819), - [anon_sym_u8] = ACTIONS(2821), - [anon_sym_i8] = ACTIONS(2821), - [anon_sym_u16] = ACTIONS(2821), - [anon_sym_i16] = ACTIONS(2821), - [anon_sym_u32] = ACTIONS(2821), - [anon_sym_i32] = ACTIONS(2821), - [anon_sym_u64] = ACTIONS(2821), - [anon_sym_i64] = ACTIONS(2821), - [anon_sym_u128] = ACTIONS(2821), - [anon_sym_i128] = ACTIONS(2821), - [anon_sym_isize] = ACTIONS(2821), - [anon_sym_usize] = ACTIONS(2821), - [anon_sym_f32] = ACTIONS(2821), - [anon_sym_f64] = ACTIONS(2821), - [anon_sym_bool] = ACTIONS(2821), - [anon_sym_str] = ACTIONS(2821), - [anon_sym_char] = ACTIONS(2821), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_PIPE] = ACTIONS(2819), - [anon_sym_LT] = ACTIONS(2819), - [anon_sym_DOT_DOT] = ACTIONS(2819), - [anon_sym_COLON_COLON] = ACTIONS(2819), - [anon_sym_POUND] = ACTIONS(2819), - [anon_sym_SQUOTE] = ACTIONS(2821), - [anon_sym_async] = ACTIONS(2821), - [anon_sym_break] = ACTIONS(2821), - [anon_sym_const] = ACTIONS(2821), - [anon_sym_continue] = ACTIONS(2821), - [anon_sym_default] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2821), - [anon_sym_fn] = ACTIONS(2821), - [anon_sym_for] = ACTIONS(2821), - [anon_sym_gen] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2821), - [anon_sym_impl] = ACTIONS(2821), - [anon_sym_let] = ACTIONS(2821), - [anon_sym_loop] = ACTIONS(2821), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_mod] = ACTIONS(2821), - [anon_sym_pub] = ACTIONS(2821), - [anon_sym_return] = ACTIONS(2821), - [anon_sym_static] = ACTIONS(2821), - [anon_sym_struct] = ACTIONS(2821), - [anon_sym_trait] = ACTIONS(2821), - [anon_sym_type] = ACTIONS(2821), - [anon_sym_union] = ACTIONS(2821), - [anon_sym_unsafe] = ACTIONS(2821), - [anon_sym_use] = ACTIONS(2821), - [anon_sym_while] = ACTIONS(2821), - [anon_sym_extern] = ACTIONS(2821), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_move] = ACTIONS(2821), - [anon_sym_try] = ACTIONS(2821), - [sym_integer_literal] = ACTIONS(2819), - [aux_sym_string_literal_token1] = ACTIONS(2819), - [sym_char_literal] = ACTIONS(2819), - [anon_sym_true] = ACTIONS(2821), - [anon_sym_false] = ACTIONS(2821), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2821), - [sym_super] = ACTIONS(2821), - [sym_crate] = ACTIONS(2821), - [sym_metavariable] = ACTIONS(2819), - [sym__raw_string_literal_start] = ACTIONS(2819), - [sym_float_literal] = ACTIONS(2819), + [ts_builtin_sym_end] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2903), + [anon_sym_SEMI] = ACTIONS(2901), + [anon_sym_macro_rules_BANG] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_u8] = ACTIONS(2903), + [anon_sym_i8] = ACTIONS(2903), + [anon_sym_u16] = ACTIONS(2903), + [anon_sym_i16] = ACTIONS(2903), + [anon_sym_u32] = ACTIONS(2903), + [anon_sym_i32] = ACTIONS(2903), + [anon_sym_u64] = ACTIONS(2903), + [anon_sym_i64] = ACTIONS(2903), + [anon_sym_u128] = ACTIONS(2903), + [anon_sym_i128] = ACTIONS(2903), + [anon_sym_isize] = ACTIONS(2903), + [anon_sym_usize] = ACTIONS(2903), + [anon_sym_f32] = ACTIONS(2903), + [anon_sym_f64] = ACTIONS(2903), + [anon_sym_bool] = ACTIONS(2903), + [anon_sym_str] = ACTIONS(2903), + [anon_sym_char] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2901), + [anon_sym_DOT_DOT] = ACTIONS(2901), + [anon_sym_COLON_COLON] = ACTIONS(2901), + [anon_sym_POUND] = ACTIONS(2901), + [anon_sym_SQUOTE] = ACTIONS(2903), + [anon_sym_async] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_const] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_default] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2903), + [anon_sym_fn] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_gen] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_impl] = ACTIONS(2903), + [anon_sym_let] = ACTIONS(2903), + [anon_sym_loop] = ACTIONS(2903), + [anon_sym_match] = ACTIONS(2903), + [anon_sym_mod] = ACTIONS(2903), + [anon_sym_pub] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_static] = ACTIONS(2903), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_trait] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_union] = ACTIONS(2903), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_use] = ACTIONS(2903), + [anon_sym_while] = ACTIONS(2903), + [anon_sym_extern] = ACTIONS(2903), + [anon_sym_yield] = ACTIONS(2903), + [anon_sym_move] = ACTIONS(2903), + [anon_sym_try] = ACTIONS(2903), + [sym_integer_literal] = ACTIONS(2901), + [aux_sym_string_literal_token1] = ACTIONS(2901), + [sym_char_literal] = ACTIONS(2901), + [anon_sym_true] = ACTIONS(2903), + [anon_sym_false] = ACTIONS(2903), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2903), + [sym_super] = ACTIONS(2903), + [sym_crate] = ACTIONS(2903), + [sym_metavariable] = ACTIONS(2901), + [sym__raw_string_literal_start] = ACTIONS(2901), + [sym_float_literal] = ACTIONS(2901), }, [STATE(746)] = { [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [ts_builtin_sym_end] = ACTIONS(2823), - [sym_identifier] = ACTIONS(2825), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym_macro_rules_BANG] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_u8] = ACTIONS(2825), - [anon_sym_i8] = ACTIONS(2825), - [anon_sym_u16] = ACTIONS(2825), - [anon_sym_i16] = ACTIONS(2825), - [anon_sym_u32] = ACTIONS(2825), - [anon_sym_i32] = ACTIONS(2825), - [anon_sym_u64] = ACTIONS(2825), - [anon_sym_i64] = ACTIONS(2825), - [anon_sym_u128] = ACTIONS(2825), - [anon_sym_i128] = ACTIONS(2825), - [anon_sym_isize] = ACTIONS(2825), - [anon_sym_usize] = ACTIONS(2825), - [anon_sym_f32] = ACTIONS(2825), - [anon_sym_f64] = ACTIONS(2825), - [anon_sym_bool] = ACTIONS(2825), - [anon_sym_str] = ACTIONS(2825), - [anon_sym_char] = ACTIONS(2825), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_PIPE] = ACTIONS(2823), - [anon_sym_LT] = ACTIONS(2823), - [anon_sym_DOT_DOT] = ACTIONS(2823), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_POUND] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_async] = ACTIONS(2825), - [anon_sym_break] = ACTIONS(2825), - [anon_sym_const] = ACTIONS(2825), - [anon_sym_continue] = ACTIONS(2825), - [anon_sym_default] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2825), - [anon_sym_fn] = ACTIONS(2825), - [anon_sym_for] = ACTIONS(2825), - [anon_sym_gen] = ACTIONS(2825), - [anon_sym_if] = ACTIONS(2825), - [anon_sym_impl] = ACTIONS(2825), - [anon_sym_let] = ACTIONS(2825), - [anon_sym_loop] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2825), - [anon_sym_mod] = ACTIONS(2825), - [anon_sym_pub] = ACTIONS(2825), - [anon_sym_return] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2825), - [anon_sym_trait] = ACTIONS(2825), - [anon_sym_type] = ACTIONS(2825), - [anon_sym_union] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2825), - [anon_sym_use] = ACTIONS(2825), - [anon_sym_while] = ACTIONS(2825), - [anon_sym_extern] = ACTIONS(2825), - [anon_sym_yield] = ACTIONS(2825), - [anon_sym_move] = ACTIONS(2825), - [anon_sym_try] = ACTIONS(2825), - [sym_integer_literal] = ACTIONS(2823), - [aux_sym_string_literal_token1] = ACTIONS(2823), - [sym_char_literal] = ACTIONS(2823), - [anon_sym_true] = ACTIONS(2825), - [anon_sym_false] = ACTIONS(2825), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2825), - [sym_super] = ACTIONS(2825), - [sym_crate] = ACTIONS(2825), - [sym_metavariable] = ACTIONS(2823), - [sym__raw_string_literal_start] = ACTIONS(2823), - [sym_float_literal] = ACTIONS(2823), + [ts_builtin_sym_end] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2907), + [anon_sym_SEMI] = ACTIONS(2905), + [anon_sym_macro_rules_BANG] = ACTIONS(2905), + [anon_sym_LPAREN] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_u8] = ACTIONS(2907), + [anon_sym_i8] = ACTIONS(2907), + [anon_sym_u16] = ACTIONS(2907), + [anon_sym_i16] = ACTIONS(2907), + [anon_sym_u32] = ACTIONS(2907), + [anon_sym_i32] = ACTIONS(2907), + [anon_sym_u64] = ACTIONS(2907), + [anon_sym_i64] = ACTIONS(2907), + [anon_sym_u128] = ACTIONS(2907), + [anon_sym_i128] = ACTIONS(2907), + [anon_sym_isize] = ACTIONS(2907), + [anon_sym_usize] = ACTIONS(2907), + [anon_sym_f32] = ACTIONS(2907), + [anon_sym_f64] = ACTIONS(2907), + [anon_sym_bool] = ACTIONS(2907), + [anon_sym_str] = ACTIONS(2907), + [anon_sym_char] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_DOT_DOT] = ACTIONS(2905), + [anon_sym_COLON_COLON] = ACTIONS(2905), + [anon_sym_POUND] = ACTIONS(2905), + [anon_sym_SQUOTE] = ACTIONS(2907), + [anon_sym_async] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_default] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [anon_sym_fn] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_gen] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_impl] = ACTIONS(2907), + [anon_sym_let] = ACTIONS(2907), + [anon_sym_loop] = ACTIONS(2907), + [anon_sym_match] = ACTIONS(2907), + [anon_sym_mod] = ACTIONS(2907), + [anon_sym_pub] = ACTIONS(2907), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_static] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_trait] = ACTIONS(2907), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_unsafe] = ACTIONS(2907), + [anon_sym_use] = ACTIONS(2907), + [anon_sym_while] = ACTIONS(2907), + [anon_sym_extern] = ACTIONS(2907), + [anon_sym_yield] = ACTIONS(2907), + [anon_sym_move] = ACTIONS(2907), + [anon_sym_try] = ACTIONS(2907), + [sym_integer_literal] = ACTIONS(2905), + [aux_sym_string_literal_token1] = ACTIONS(2905), + [sym_char_literal] = ACTIONS(2905), + [anon_sym_true] = ACTIONS(2907), + [anon_sym_false] = ACTIONS(2907), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2907), + [sym_super] = ACTIONS(2907), + [sym_crate] = ACTIONS(2907), + [sym_metavariable] = ACTIONS(2905), + [sym__raw_string_literal_start] = ACTIONS(2905), + [sym_float_literal] = ACTIONS(2905), }, [STATE(747)] = { [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(2827), - [sym_identifier] = ACTIONS(2829), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_macro_rules_BANG] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_RBRACE] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_u8] = ACTIONS(2829), - [anon_sym_i8] = ACTIONS(2829), - [anon_sym_u16] = ACTIONS(2829), - [anon_sym_i16] = ACTIONS(2829), - [anon_sym_u32] = ACTIONS(2829), - [anon_sym_i32] = ACTIONS(2829), - [anon_sym_u64] = ACTIONS(2829), - [anon_sym_i64] = ACTIONS(2829), - [anon_sym_u128] = ACTIONS(2829), - [anon_sym_i128] = ACTIONS(2829), - [anon_sym_isize] = ACTIONS(2829), - [anon_sym_usize] = ACTIONS(2829), - [anon_sym_f32] = ACTIONS(2829), - [anon_sym_f64] = ACTIONS(2829), - [anon_sym_bool] = ACTIONS(2829), - [anon_sym_str] = ACTIONS(2829), - [anon_sym_char] = ACTIONS(2829), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_LT] = ACTIONS(2827), - [anon_sym_DOT_DOT] = ACTIONS(2827), - [anon_sym_COLON_COLON] = ACTIONS(2827), - [anon_sym_POUND] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_async] = ACTIONS(2829), - [anon_sym_break] = ACTIONS(2829), - [anon_sym_const] = ACTIONS(2829), - [anon_sym_continue] = ACTIONS(2829), - [anon_sym_default] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2829), - [anon_sym_fn] = ACTIONS(2829), - [anon_sym_for] = ACTIONS(2829), - [anon_sym_gen] = ACTIONS(2829), - [anon_sym_if] = ACTIONS(2829), - [anon_sym_impl] = ACTIONS(2829), - [anon_sym_let] = ACTIONS(2829), - [anon_sym_loop] = ACTIONS(2829), - [anon_sym_match] = ACTIONS(2829), - [anon_sym_mod] = ACTIONS(2829), - [anon_sym_pub] = ACTIONS(2829), - [anon_sym_return] = ACTIONS(2829), - [anon_sym_static] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2829), - [anon_sym_trait] = ACTIONS(2829), - [anon_sym_type] = ACTIONS(2829), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(2829), - [anon_sym_use] = ACTIONS(2829), - [anon_sym_while] = ACTIONS(2829), - [anon_sym_extern] = ACTIONS(2829), - [anon_sym_yield] = ACTIONS(2829), - [anon_sym_move] = ACTIONS(2829), - [anon_sym_try] = ACTIONS(2829), - [sym_integer_literal] = ACTIONS(2827), - [aux_sym_string_literal_token1] = ACTIONS(2827), - [sym_char_literal] = ACTIONS(2827), - [anon_sym_true] = ACTIONS(2829), - [anon_sym_false] = ACTIONS(2829), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2829), - [sym_super] = ACTIONS(2829), - [sym_crate] = ACTIONS(2829), - [sym_metavariable] = ACTIONS(2827), - [sym__raw_string_literal_start] = ACTIONS(2827), - [sym_float_literal] = ACTIONS(2827), + [ts_builtin_sym_end] = ACTIONS(2909), + [sym_identifier] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2909), + [anon_sym_macro_rules_BANG] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_u8] = ACTIONS(2911), + [anon_sym_i8] = ACTIONS(2911), + [anon_sym_u16] = ACTIONS(2911), + [anon_sym_i16] = ACTIONS(2911), + [anon_sym_u32] = ACTIONS(2911), + [anon_sym_i32] = ACTIONS(2911), + [anon_sym_u64] = ACTIONS(2911), + [anon_sym_i64] = ACTIONS(2911), + [anon_sym_u128] = ACTIONS(2911), + [anon_sym_i128] = ACTIONS(2911), + [anon_sym_isize] = ACTIONS(2911), + [anon_sym_usize] = ACTIONS(2911), + [anon_sym_f32] = ACTIONS(2911), + [anon_sym_f64] = ACTIONS(2911), + [anon_sym_bool] = ACTIONS(2911), + [anon_sym_str] = ACTIONS(2911), + [anon_sym_char] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_PIPE] = ACTIONS(2909), + [anon_sym_LT] = ACTIONS(2909), + [anon_sym_DOT_DOT] = ACTIONS(2909), + [anon_sym_COLON_COLON] = ACTIONS(2909), + [anon_sym_POUND] = ACTIONS(2909), + [anon_sym_SQUOTE] = ACTIONS(2911), + [anon_sym_async] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), + [anon_sym_fn] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_gen] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_impl] = ACTIONS(2911), + [anon_sym_let] = ACTIONS(2911), + [anon_sym_loop] = ACTIONS(2911), + [anon_sym_match] = ACTIONS(2911), + [anon_sym_mod] = ACTIONS(2911), + [anon_sym_pub] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_static] = ACTIONS(2911), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_trait] = ACTIONS(2911), + [anon_sym_type] = ACTIONS(2911), + [anon_sym_union] = ACTIONS(2911), + [anon_sym_unsafe] = ACTIONS(2911), + [anon_sym_use] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2911), + [anon_sym_extern] = ACTIONS(2911), + [anon_sym_yield] = ACTIONS(2911), + [anon_sym_move] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(2911), + [sym_integer_literal] = ACTIONS(2909), + [aux_sym_string_literal_token1] = ACTIONS(2909), + [sym_char_literal] = ACTIONS(2909), + [anon_sym_true] = ACTIONS(2911), + [anon_sym_false] = ACTIONS(2911), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2911), + [sym_super] = ACTIONS(2911), + [sym_crate] = ACTIONS(2911), + [sym_metavariable] = ACTIONS(2909), + [sym__raw_string_literal_start] = ACTIONS(2909), + [sym_float_literal] = ACTIONS(2909), }, [STATE(748)] = { [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [ts_builtin_sym_end] = ACTIONS(2831), - [sym_identifier] = ACTIONS(2833), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_macro_rules_BANG] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_RBRACE] = ACTIONS(2831), - [anon_sym_STAR] = ACTIONS(2831), - [anon_sym_u8] = ACTIONS(2833), - [anon_sym_i8] = ACTIONS(2833), - [anon_sym_u16] = ACTIONS(2833), - [anon_sym_i16] = ACTIONS(2833), - [anon_sym_u32] = ACTIONS(2833), - [anon_sym_i32] = ACTIONS(2833), - [anon_sym_u64] = ACTIONS(2833), - [anon_sym_i64] = ACTIONS(2833), - [anon_sym_u128] = ACTIONS(2833), - [anon_sym_i128] = ACTIONS(2833), - [anon_sym_isize] = ACTIONS(2833), - [anon_sym_usize] = ACTIONS(2833), - [anon_sym_f32] = ACTIONS(2833), - [anon_sym_f64] = ACTIONS(2833), - [anon_sym_bool] = ACTIONS(2833), - [anon_sym_str] = ACTIONS(2833), - [anon_sym_char] = ACTIONS(2833), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_BANG] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_DOT_DOT] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2831), - [anon_sym_POUND] = ACTIONS(2831), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_async] = ACTIONS(2833), - [anon_sym_break] = ACTIONS(2833), - [anon_sym_const] = ACTIONS(2833), - [anon_sym_continue] = ACTIONS(2833), - [anon_sym_default] = ACTIONS(2833), - [anon_sym_enum] = ACTIONS(2833), - [anon_sym_fn] = ACTIONS(2833), - [anon_sym_for] = ACTIONS(2833), - [anon_sym_gen] = ACTIONS(2833), - [anon_sym_if] = ACTIONS(2833), - [anon_sym_impl] = ACTIONS(2833), - [anon_sym_let] = ACTIONS(2833), - [anon_sym_loop] = ACTIONS(2833), - [anon_sym_match] = ACTIONS(2833), - [anon_sym_mod] = ACTIONS(2833), - [anon_sym_pub] = ACTIONS(2833), - [anon_sym_return] = ACTIONS(2833), - [anon_sym_static] = ACTIONS(2833), - [anon_sym_struct] = ACTIONS(2833), - [anon_sym_trait] = ACTIONS(2833), - [anon_sym_type] = ACTIONS(2833), - [anon_sym_union] = ACTIONS(2833), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_use] = ACTIONS(2833), - [anon_sym_while] = ACTIONS(2833), - [anon_sym_extern] = ACTIONS(2833), - [anon_sym_yield] = ACTIONS(2833), - [anon_sym_move] = ACTIONS(2833), - [anon_sym_try] = ACTIONS(2833), - [sym_integer_literal] = ACTIONS(2831), - [aux_sym_string_literal_token1] = ACTIONS(2831), - [sym_char_literal] = ACTIONS(2831), - [anon_sym_true] = ACTIONS(2833), - [anon_sym_false] = ACTIONS(2833), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2833), - [sym_super] = ACTIONS(2833), - [sym_crate] = ACTIONS(2833), - [sym_metavariable] = ACTIONS(2831), - [sym__raw_string_literal_start] = ACTIONS(2831), - [sym_float_literal] = ACTIONS(2831), + [ts_builtin_sym_end] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(2913), + [anon_sym_macro_rules_BANG] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2913), + [anon_sym_u8] = ACTIONS(2915), + [anon_sym_i8] = ACTIONS(2915), + [anon_sym_u16] = ACTIONS(2915), + [anon_sym_i16] = ACTIONS(2915), + [anon_sym_u32] = ACTIONS(2915), + [anon_sym_i32] = ACTIONS(2915), + [anon_sym_u64] = ACTIONS(2915), + [anon_sym_i64] = ACTIONS(2915), + [anon_sym_u128] = ACTIONS(2915), + [anon_sym_i128] = ACTIONS(2915), + [anon_sym_isize] = ACTIONS(2915), + [anon_sym_usize] = ACTIONS(2915), + [anon_sym_f32] = ACTIONS(2915), + [anon_sym_f64] = ACTIONS(2915), + [anon_sym_bool] = ACTIONS(2915), + [anon_sym_str] = ACTIONS(2915), + [anon_sym_char] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2913), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_DOT_DOT] = ACTIONS(2913), + [anon_sym_COLON_COLON] = ACTIONS(2913), + [anon_sym_POUND] = ACTIONS(2913), + [anon_sym_SQUOTE] = ACTIONS(2915), + [anon_sym_async] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_default] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), + [anon_sym_fn] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_gen] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_impl] = ACTIONS(2915), + [anon_sym_let] = ACTIONS(2915), + [anon_sym_loop] = ACTIONS(2915), + [anon_sym_match] = ACTIONS(2915), + [anon_sym_mod] = ACTIONS(2915), + [anon_sym_pub] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_static] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_trait] = ACTIONS(2915), + [anon_sym_type] = ACTIONS(2915), + [anon_sym_union] = ACTIONS(2915), + [anon_sym_unsafe] = ACTIONS(2915), + [anon_sym_use] = ACTIONS(2915), + [anon_sym_while] = ACTIONS(2915), + [anon_sym_extern] = ACTIONS(2915), + [anon_sym_yield] = ACTIONS(2915), + [anon_sym_move] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2915), + [sym_integer_literal] = ACTIONS(2913), + [aux_sym_string_literal_token1] = ACTIONS(2913), + [sym_char_literal] = ACTIONS(2913), + [anon_sym_true] = ACTIONS(2915), + [anon_sym_false] = ACTIONS(2915), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2915), + [sym_super] = ACTIONS(2915), + [sym_crate] = ACTIONS(2915), + [sym_metavariable] = ACTIONS(2913), + [sym__raw_string_literal_start] = ACTIONS(2913), + [sym_float_literal] = ACTIONS(2913), }, [STATE(749)] = { [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [ts_builtin_sym_end] = ACTIONS(2835), - [sym_identifier] = ACTIONS(2837), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_macro_rules_BANG] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_RBRACE] = ACTIONS(2835), - [anon_sym_STAR] = ACTIONS(2835), - [anon_sym_u8] = ACTIONS(2837), - [anon_sym_i8] = ACTIONS(2837), - [anon_sym_u16] = ACTIONS(2837), - [anon_sym_i16] = ACTIONS(2837), - [anon_sym_u32] = ACTIONS(2837), - [anon_sym_i32] = ACTIONS(2837), - [anon_sym_u64] = ACTIONS(2837), - [anon_sym_i64] = ACTIONS(2837), - [anon_sym_u128] = ACTIONS(2837), - [anon_sym_i128] = ACTIONS(2837), - [anon_sym_isize] = ACTIONS(2837), - [anon_sym_usize] = ACTIONS(2837), - [anon_sym_f32] = ACTIONS(2837), - [anon_sym_f64] = ACTIONS(2837), - [anon_sym_bool] = ACTIONS(2837), - [anon_sym_str] = ACTIONS(2837), - [anon_sym_char] = ACTIONS(2837), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_BANG] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_PIPE] = ACTIONS(2835), - [anon_sym_LT] = ACTIONS(2835), - [anon_sym_DOT_DOT] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2835), - [anon_sym_POUND] = ACTIONS(2835), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_async] = ACTIONS(2837), - [anon_sym_break] = ACTIONS(2837), - [anon_sym_const] = ACTIONS(2837), - [anon_sym_continue] = ACTIONS(2837), - [anon_sym_default] = ACTIONS(2837), - [anon_sym_enum] = ACTIONS(2837), - [anon_sym_fn] = ACTIONS(2837), - [anon_sym_for] = ACTIONS(2837), - [anon_sym_gen] = ACTIONS(2837), - [anon_sym_if] = ACTIONS(2837), - [anon_sym_impl] = ACTIONS(2837), - [anon_sym_let] = ACTIONS(2837), - [anon_sym_loop] = ACTIONS(2837), - [anon_sym_match] = ACTIONS(2837), - [anon_sym_mod] = ACTIONS(2837), - [anon_sym_pub] = ACTIONS(2837), - [anon_sym_return] = ACTIONS(2837), - [anon_sym_static] = ACTIONS(2837), - [anon_sym_struct] = ACTIONS(2837), - [anon_sym_trait] = ACTIONS(2837), - [anon_sym_type] = ACTIONS(2837), - [anon_sym_union] = ACTIONS(2837), - [anon_sym_unsafe] = ACTIONS(2837), - [anon_sym_use] = ACTIONS(2837), - [anon_sym_while] = ACTIONS(2837), - [anon_sym_extern] = ACTIONS(2837), - [anon_sym_yield] = ACTIONS(2837), - [anon_sym_move] = ACTIONS(2837), - [anon_sym_try] = ACTIONS(2837), - [sym_integer_literal] = ACTIONS(2835), - [aux_sym_string_literal_token1] = ACTIONS(2835), - [sym_char_literal] = ACTIONS(2835), - [anon_sym_true] = ACTIONS(2837), - [anon_sym_false] = ACTIONS(2837), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2837), - [sym_super] = ACTIONS(2837), - [sym_crate] = ACTIONS(2837), - [sym_metavariable] = ACTIONS(2835), - [sym__raw_string_literal_start] = ACTIONS(2835), - [sym_float_literal] = ACTIONS(2835), + [ts_builtin_sym_end] = ACTIONS(2917), + [sym_identifier] = ACTIONS(2919), + [anon_sym_SEMI] = ACTIONS(2917), + [anon_sym_macro_rules_BANG] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2917), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2917), + [anon_sym_u8] = ACTIONS(2919), + [anon_sym_i8] = ACTIONS(2919), + [anon_sym_u16] = ACTIONS(2919), + [anon_sym_i16] = ACTIONS(2919), + [anon_sym_u32] = ACTIONS(2919), + [anon_sym_i32] = ACTIONS(2919), + [anon_sym_u64] = ACTIONS(2919), + [anon_sym_i64] = ACTIONS(2919), + [anon_sym_u128] = ACTIONS(2919), + [anon_sym_i128] = ACTIONS(2919), + [anon_sym_isize] = ACTIONS(2919), + [anon_sym_usize] = ACTIONS(2919), + [anon_sym_f32] = ACTIONS(2919), + [anon_sym_f64] = ACTIONS(2919), + [anon_sym_bool] = ACTIONS(2919), + [anon_sym_str] = ACTIONS(2919), + [anon_sym_char] = ACTIONS(2919), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_PIPE] = ACTIONS(2917), + [anon_sym_LT] = ACTIONS(2917), + [anon_sym_DOT_DOT] = ACTIONS(2917), + [anon_sym_COLON_COLON] = ACTIONS(2917), + [anon_sym_POUND] = ACTIONS(2917), + [anon_sym_SQUOTE] = ACTIONS(2919), + [anon_sym_async] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2919), + [anon_sym_const] = ACTIONS(2919), + [anon_sym_continue] = ACTIONS(2919), + [anon_sym_default] = ACTIONS(2919), + [anon_sym_enum] = ACTIONS(2919), + [anon_sym_fn] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2919), + [anon_sym_gen] = ACTIONS(2919), + [anon_sym_if] = ACTIONS(2919), + [anon_sym_impl] = ACTIONS(2919), + [anon_sym_let] = ACTIONS(2919), + [anon_sym_loop] = ACTIONS(2919), + [anon_sym_match] = ACTIONS(2919), + [anon_sym_mod] = ACTIONS(2919), + [anon_sym_pub] = ACTIONS(2919), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_static] = ACTIONS(2919), + [anon_sym_struct] = ACTIONS(2919), + [anon_sym_trait] = ACTIONS(2919), + [anon_sym_type] = ACTIONS(2919), + [anon_sym_union] = ACTIONS(2919), + [anon_sym_unsafe] = ACTIONS(2919), + [anon_sym_use] = ACTIONS(2919), + [anon_sym_while] = ACTIONS(2919), + [anon_sym_extern] = ACTIONS(2919), + [anon_sym_yield] = ACTIONS(2919), + [anon_sym_move] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2919), + [sym_integer_literal] = ACTIONS(2917), + [aux_sym_string_literal_token1] = ACTIONS(2917), + [sym_char_literal] = ACTIONS(2917), + [anon_sym_true] = ACTIONS(2919), + [anon_sym_false] = ACTIONS(2919), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2919), + [sym_super] = ACTIONS(2919), + [sym_crate] = ACTIONS(2919), + [sym_metavariable] = ACTIONS(2917), + [sym__raw_string_literal_start] = ACTIONS(2917), + [sym_float_literal] = ACTIONS(2917), }, [STATE(750)] = { [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [ts_builtin_sym_end] = ACTIONS(2839), - [sym_identifier] = ACTIONS(2841), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_macro_rules_BANG] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2839), - [anon_sym_LBRACK] = ACTIONS(2839), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_RBRACE] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(2839), - [anon_sym_u8] = ACTIONS(2841), - [anon_sym_i8] = ACTIONS(2841), - [anon_sym_u16] = ACTIONS(2841), - [anon_sym_i16] = ACTIONS(2841), - [anon_sym_u32] = ACTIONS(2841), - [anon_sym_i32] = ACTIONS(2841), - [anon_sym_u64] = ACTIONS(2841), - [anon_sym_i64] = ACTIONS(2841), - [anon_sym_u128] = ACTIONS(2841), - [anon_sym_i128] = ACTIONS(2841), - [anon_sym_isize] = ACTIONS(2841), - [anon_sym_usize] = ACTIONS(2841), - [anon_sym_f32] = ACTIONS(2841), - [anon_sym_f64] = ACTIONS(2841), - [anon_sym_bool] = ACTIONS(2841), - [anon_sym_str] = ACTIONS(2841), - [anon_sym_char] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2839), - [anon_sym_BANG] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2839), - [anon_sym_PIPE] = ACTIONS(2839), - [anon_sym_LT] = ACTIONS(2839), - [anon_sym_DOT_DOT] = ACTIONS(2839), - [anon_sym_COLON_COLON] = ACTIONS(2839), - [anon_sym_POUND] = ACTIONS(2839), - [anon_sym_SQUOTE] = ACTIONS(2841), - [anon_sym_async] = ACTIONS(2841), - [anon_sym_break] = ACTIONS(2841), - [anon_sym_const] = ACTIONS(2841), - [anon_sym_continue] = ACTIONS(2841), - [anon_sym_default] = ACTIONS(2841), - [anon_sym_enum] = ACTIONS(2841), - [anon_sym_fn] = ACTIONS(2841), - [anon_sym_for] = ACTIONS(2841), - [anon_sym_gen] = ACTIONS(2841), - [anon_sym_if] = ACTIONS(2841), - [anon_sym_impl] = ACTIONS(2841), - [anon_sym_let] = ACTIONS(2841), - [anon_sym_loop] = ACTIONS(2841), - [anon_sym_match] = ACTIONS(2841), - [anon_sym_mod] = ACTIONS(2841), - [anon_sym_pub] = ACTIONS(2841), - [anon_sym_return] = ACTIONS(2841), - [anon_sym_static] = ACTIONS(2841), - [anon_sym_struct] = ACTIONS(2841), - [anon_sym_trait] = ACTIONS(2841), - [anon_sym_type] = ACTIONS(2841), - [anon_sym_union] = ACTIONS(2841), - [anon_sym_unsafe] = ACTIONS(2841), - [anon_sym_use] = ACTIONS(2841), - [anon_sym_while] = ACTIONS(2841), - [anon_sym_extern] = ACTIONS(2841), - [anon_sym_yield] = ACTIONS(2841), - [anon_sym_move] = ACTIONS(2841), - [anon_sym_try] = ACTIONS(2841), - [sym_integer_literal] = ACTIONS(2839), - [aux_sym_string_literal_token1] = ACTIONS(2839), - [sym_char_literal] = ACTIONS(2839), - [anon_sym_true] = ACTIONS(2841), - [anon_sym_false] = ACTIONS(2841), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2841), - [sym_super] = ACTIONS(2841), - [sym_crate] = ACTIONS(2841), - [sym_metavariable] = ACTIONS(2839), - [sym__raw_string_literal_start] = ACTIONS(2839), - [sym_float_literal] = ACTIONS(2839), + [ts_builtin_sym_end] = ACTIONS(2921), + [sym_identifier] = ACTIONS(2923), + [anon_sym_SEMI] = ACTIONS(2921), + [anon_sym_macro_rules_BANG] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_RBRACE] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2921), + [anon_sym_u8] = ACTIONS(2923), + [anon_sym_i8] = ACTIONS(2923), + [anon_sym_u16] = ACTIONS(2923), + [anon_sym_i16] = ACTIONS(2923), + [anon_sym_u32] = ACTIONS(2923), + [anon_sym_i32] = ACTIONS(2923), + [anon_sym_u64] = ACTIONS(2923), + [anon_sym_i64] = ACTIONS(2923), + [anon_sym_u128] = ACTIONS(2923), + [anon_sym_i128] = ACTIONS(2923), + [anon_sym_isize] = ACTIONS(2923), + [anon_sym_usize] = ACTIONS(2923), + [anon_sym_f32] = ACTIONS(2923), + [anon_sym_f64] = ACTIONS(2923), + [anon_sym_bool] = ACTIONS(2923), + [anon_sym_str] = ACTIONS(2923), + [anon_sym_char] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_DOT_DOT] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(2921), + [anon_sym_POUND] = ACTIONS(2921), + [anon_sym_SQUOTE] = ACTIONS(2923), + [anon_sym_async] = ACTIONS(2923), + [anon_sym_break] = ACTIONS(2923), + [anon_sym_const] = ACTIONS(2923), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_default] = ACTIONS(2923), + [anon_sym_enum] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2923), + [anon_sym_gen] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2923), + [anon_sym_impl] = ACTIONS(2923), + [anon_sym_let] = ACTIONS(2923), + [anon_sym_loop] = ACTIONS(2923), + [anon_sym_match] = ACTIONS(2923), + [anon_sym_mod] = ACTIONS(2923), + [anon_sym_pub] = ACTIONS(2923), + [anon_sym_return] = ACTIONS(2923), + [anon_sym_static] = ACTIONS(2923), + [anon_sym_struct] = ACTIONS(2923), + [anon_sym_trait] = ACTIONS(2923), + [anon_sym_type] = ACTIONS(2923), + [anon_sym_union] = ACTIONS(2923), + [anon_sym_unsafe] = ACTIONS(2923), + [anon_sym_use] = ACTIONS(2923), + [anon_sym_while] = ACTIONS(2923), + [anon_sym_extern] = ACTIONS(2923), + [anon_sym_yield] = ACTIONS(2923), + [anon_sym_move] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2923), + [sym_integer_literal] = ACTIONS(2921), + [aux_sym_string_literal_token1] = ACTIONS(2921), + [sym_char_literal] = ACTIONS(2921), + [anon_sym_true] = ACTIONS(2923), + [anon_sym_false] = ACTIONS(2923), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2923), + [sym_super] = ACTIONS(2923), + [sym_crate] = ACTIONS(2923), + [sym_metavariable] = ACTIONS(2921), + [sym__raw_string_literal_start] = ACTIONS(2921), + [sym_float_literal] = ACTIONS(2921), }, [STATE(751)] = { [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), - [ts_builtin_sym_end] = ACTIONS(2843), - [sym_identifier] = ACTIONS(2845), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_macro_rules_BANG] = ACTIONS(2843), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_STAR] = ACTIONS(2843), - [anon_sym_u8] = ACTIONS(2845), - [anon_sym_i8] = ACTIONS(2845), - [anon_sym_u16] = ACTIONS(2845), - [anon_sym_i16] = ACTIONS(2845), - [anon_sym_u32] = ACTIONS(2845), - [anon_sym_i32] = ACTIONS(2845), - [anon_sym_u64] = ACTIONS(2845), - [anon_sym_i64] = ACTIONS(2845), - [anon_sym_u128] = ACTIONS(2845), - [anon_sym_i128] = ACTIONS(2845), - [anon_sym_isize] = ACTIONS(2845), - [anon_sym_usize] = ACTIONS(2845), - [anon_sym_f32] = ACTIONS(2845), - [anon_sym_f64] = ACTIONS(2845), - [anon_sym_bool] = ACTIONS(2845), - [anon_sym_str] = ACTIONS(2845), - [anon_sym_char] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2843), - [anon_sym_BANG] = ACTIONS(2843), - [anon_sym_AMP] = ACTIONS(2843), - [anon_sym_PIPE] = ACTIONS(2843), - [anon_sym_LT] = ACTIONS(2843), - [anon_sym_DOT_DOT] = ACTIONS(2843), - [anon_sym_COLON_COLON] = ACTIONS(2843), - [anon_sym_POUND] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2845), - [anon_sym_async] = ACTIONS(2845), - [anon_sym_break] = ACTIONS(2845), - [anon_sym_const] = ACTIONS(2845), - [anon_sym_continue] = ACTIONS(2845), - [anon_sym_default] = ACTIONS(2845), - [anon_sym_enum] = ACTIONS(2845), - [anon_sym_fn] = ACTIONS(2845), - [anon_sym_for] = ACTIONS(2845), - [anon_sym_gen] = ACTIONS(2845), - [anon_sym_if] = ACTIONS(2845), - [anon_sym_impl] = ACTIONS(2845), - [anon_sym_let] = ACTIONS(2845), - [anon_sym_loop] = ACTIONS(2845), - [anon_sym_match] = ACTIONS(2845), - [anon_sym_mod] = ACTIONS(2845), - [anon_sym_pub] = ACTIONS(2845), - [anon_sym_return] = ACTIONS(2845), - [anon_sym_static] = ACTIONS(2845), - [anon_sym_struct] = ACTIONS(2845), - [anon_sym_trait] = ACTIONS(2845), - [anon_sym_type] = ACTIONS(2845), - [anon_sym_union] = ACTIONS(2845), - [anon_sym_unsafe] = ACTIONS(2845), - [anon_sym_use] = ACTIONS(2845), - [anon_sym_while] = ACTIONS(2845), - [anon_sym_extern] = ACTIONS(2845), - [anon_sym_yield] = ACTIONS(2845), - [anon_sym_move] = ACTIONS(2845), - [anon_sym_try] = ACTIONS(2845), - [sym_integer_literal] = ACTIONS(2843), - [aux_sym_string_literal_token1] = ACTIONS(2843), - [sym_char_literal] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2845), - [anon_sym_false] = ACTIONS(2845), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2845), - [sym_super] = ACTIONS(2845), - [sym_crate] = ACTIONS(2845), - [sym_metavariable] = ACTIONS(2843), - [sym__raw_string_literal_start] = ACTIONS(2843), - [sym_float_literal] = ACTIONS(2843), + [ts_builtin_sym_end] = ACTIONS(2925), + [sym_identifier] = ACTIONS(2927), + [anon_sym_SEMI] = ACTIONS(2925), + [anon_sym_macro_rules_BANG] = ACTIONS(2925), + [anon_sym_LPAREN] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2925), + [anon_sym_RBRACE] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2925), + [anon_sym_u8] = ACTIONS(2927), + [anon_sym_i8] = ACTIONS(2927), + [anon_sym_u16] = ACTIONS(2927), + [anon_sym_i16] = ACTIONS(2927), + [anon_sym_u32] = ACTIONS(2927), + [anon_sym_i32] = ACTIONS(2927), + [anon_sym_u64] = ACTIONS(2927), + [anon_sym_i64] = ACTIONS(2927), + [anon_sym_u128] = ACTIONS(2927), + [anon_sym_i128] = ACTIONS(2927), + [anon_sym_isize] = ACTIONS(2927), + [anon_sym_usize] = ACTIONS(2927), + [anon_sym_f32] = ACTIONS(2927), + [anon_sym_f64] = ACTIONS(2927), + [anon_sym_bool] = ACTIONS(2927), + [anon_sym_str] = ACTIONS(2927), + [anon_sym_char] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_PIPE] = ACTIONS(2925), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_DOT_DOT] = ACTIONS(2925), + [anon_sym_COLON_COLON] = ACTIONS(2925), + [anon_sym_POUND] = ACTIONS(2925), + [anon_sym_SQUOTE] = ACTIONS(2927), + [anon_sym_async] = ACTIONS(2927), + [anon_sym_break] = ACTIONS(2927), + [anon_sym_const] = ACTIONS(2927), + [anon_sym_continue] = ACTIONS(2927), + [anon_sym_default] = ACTIONS(2927), + [anon_sym_enum] = ACTIONS(2927), + [anon_sym_fn] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2927), + [anon_sym_gen] = ACTIONS(2927), + [anon_sym_if] = ACTIONS(2927), + [anon_sym_impl] = ACTIONS(2927), + [anon_sym_let] = ACTIONS(2927), + [anon_sym_loop] = ACTIONS(2927), + [anon_sym_match] = ACTIONS(2927), + [anon_sym_mod] = ACTIONS(2927), + [anon_sym_pub] = ACTIONS(2927), + [anon_sym_return] = ACTIONS(2927), + [anon_sym_static] = ACTIONS(2927), + [anon_sym_struct] = ACTIONS(2927), + [anon_sym_trait] = ACTIONS(2927), + [anon_sym_type] = ACTIONS(2927), + [anon_sym_union] = ACTIONS(2927), + [anon_sym_unsafe] = ACTIONS(2927), + [anon_sym_use] = ACTIONS(2927), + [anon_sym_while] = ACTIONS(2927), + [anon_sym_extern] = ACTIONS(2927), + [anon_sym_yield] = ACTIONS(2927), + [anon_sym_move] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(2927), + [sym_integer_literal] = ACTIONS(2925), + [aux_sym_string_literal_token1] = ACTIONS(2925), + [sym_char_literal] = ACTIONS(2925), + [anon_sym_true] = ACTIONS(2927), + [anon_sym_false] = ACTIONS(2927), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2927), + [sym_super] = ACTIONS(2927), + [sym_crate] = ACTIONS(2927), + [sym_metavariable] = ACTIONS(2925), + [sym__raw_string_literal_start] = ACTIONS(2925), + [sym_float_literal] = ACTIONS(2925), }, [STATE(752)] = { [sym_line_comment] = STATE(752), [sym_block_comment] = STATE(752), - [ts_builtin_sym_end] = ACTIONS(2847), - [sym_identifier] = ACTIONS(2849), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_macro_rules_BANG] = ACTIONS(2847), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_LBRACK] = ACTIONS(2847), - [anon_sym_LBRACE] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_STAR] = ACTIONS(2847), - [anon_sym_u8] = ACTIONS(2849), - [anon_sym_i8] = ACTIONS(2849), - [anon_sym_u16] = ACTIONS(2849), - [anon_sym_i16] = ACTIONS(2849), - [anon_sym_u32] = ACTIONS(2849), - [anon_sym_i32] = ACTIONS(2849), - [anon_sym_u64] = ACTIONS(2849), - [anon_sym_i64] = ACTIONS(2849), - [anon_sym_u128] = ACTIONS(2849), - [anon_sym_i128] = ACTIONS(2849), - [anon_sym_isize] = ACTIONS(2849), - [anon_sym_usize] = ACTIONS(2849), - [anon_sym_f32] = ACTIONS(2849), - [anon_sym_f64] = ACTIONS(2849), - [anon_sym_bool] = ACTIONS(2849), - [anon_sym_str] = ACTIONS(2849), - [anon_sym_char] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2847), - [anon_sym_BANG] = ACTIONS(2847), - [anon_sym_AMP] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_LT] = ACTIONS(2847), - [anon_sym_DOT_DOT] = ACTIONS(2847), - [anon_sym_COLON_COLON] = ACTIONS(2847), - [anon_sym_POUND] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2849), - [anon_sym_async] = ACTIONS(2849), - [anon_sym_break] = ACTIONS(2849), - [anon_sym_const] = ACTIONS(2849), - [anon_sym_continue] = ACTIONS(2849), - [anon_sym_default] = ACTIONS(2849), - [anon_sym_enum] = ACTIONS(2849), - [anon_sym_fn] = ACTIONS(2849), - [anon_sym_for] = ACTIONS(2849), - [anon_sym_gen] = ACTIONS(2849), - [anon_sym_if] = ACTIONS(2849), - [anon_sym_impl] = ACTIONS(2849), - [anon_sym_let] = ACTIONS(2849), - [anon_sym_loop] = ACTIONS(2849), - [anon_sym_match] = ACTIONS(2849), - [anon_sym_mod] = ACTIONS(2849), - [anon_sym_pub] = ACTIONS(2849), - [anon_sym_return] = ACTIONS(2849), - [anon_sym_static] = ACTIONS(2849), - [anon_sym_struct] = ACTIONS(2849), - [anon_sym_trait] = ACTIONS(2849), - [anon_sym_type] = ACTIONS(2849), - [anon_sym_union] = ACTIONS(2849), - [anon_sym_unsafe] = ACTIONS(2849), - [anon_sym_use] = ACTIONS(2849), - [anon_sym_while] = ACTIONS(2849), - [anon_sym_extern] = ACTIONS(2849), - [anon_sym_yield] = ACTIONS(2849), - [anon_sym_move] = ACTIONS(2849), - [anon_sym_try] = ACTIONS(2849), - [sym_integer_literal] = ACTIONS(2847), - [aux_sym_string_literal_token1] = ACTIONS(2847), - [sym_char_literal] = ACTIONS(2847), - [anon_sym_true] = ACTIONS(2849), - [anon_sym_false] = ACTIONS(2849), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2849), - [sym_super] = ACTIONS(2849), - [sym_crate] = ACTIONS(2849), - [sym_metavariable] = ACTIONS(2847), - [sym__raw_string_literal_start] = ACTIONS(2847), - [sym_float_literal] = ACTIONS(2847), + [ts_builtin_sym_end] = ACTIONS(2929), + [sym_identifier] = ACTIONS(2931), + [anon_sym_SEMI] = ACTIONS(2929), + [anon_sym_macro_rules_BANG] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2929), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_u8] = ACTIONS(2931), + [anon_sym_i8] = ACTIONS(2931), + [anon_sym_u16] = ACTIONS(2931), + [anon_sym_i16] = ACTIONS(2931), + [anon_sym_u32] = ACTIONS(2931), + [anon_sym_i32] = ACTIONS(2931), + [anon_sym_u64] = ACTIONS(2931), + [anon_sym_i64] = ACTIONS(2931), + [anon_sym_u128] = ACTIONS(2931), + [anon_sym_i128] = ACTIONS(2931), + [anon_sym_isize] = ACTIONS(2931), + [anon_sym_usize] = ACTIONS(2931), + [anon_sym_f32] = ACTIONS(2931), + [anon_sym_f64] = ACTIONS(2931), + [anon_sym_bool] = ACTIONS(2931), + [anon_sym_str] = ACTIONS(2931), + [anon_sym_char] = ACTIONS(2931), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(2929), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_DOT_DOT] = ACTIONS(2929), + [anon_sym_COLON_COLON] = ACTIONS(2929), + [anon_sym_POUND] = ACTIONS(2929), + [anon_sym_SQUOTE] = ACTIONS(2931), + [anon_sym_async] = ACTIONS(2931), + [anon_sym_break] = ACTIONS(2931), + [anon_sym_const] = ACTIONS(2931), + [anon_sym_continue] = ACTIONS(2931), + [anon_sym_default] = ACTIONS(2931), + [anon_sym_enum] = ACTIONS(2931), + [anon_sym_fn] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2931), + [anon_sym_gen] = ACTIONS(2931), + [anon_sym_if] = ACTIONS(2931), + [anon_sym_impl] = ACTIONS(2931), + [anon_sym_let] = ACTIONS(2931), + [anon_sym_loop] = ACTIONS(2931), + [anon_sym_match] = ACTIONS(2931), + [anon_sym_mod] = ACTIONS(2931), + [anon_sym_pub] = ACTIONS(2931), + [anon_sym_return] = ACTIONS(2931), + [anon_sym_static] = ACTIONS(2931), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_trait] = ACTIONS(2931), + [anon_sym_type] = ACTIONS(2931), + [anon_sym_union] = ACTIONS(2931), + [anon_sym_unsafe] = ACTIONS(2931), + [anon_sym_use] = ACTIONS(2931), + [anon_sym_while] = ACTIONS(2931), + [anon_sym_extern] = ACTIONS(2931), + [anon_sym_yield] = ACTIONS(2931), + [anon_sym_move] = ACTIONS(2931), + [anon_sym_try] = ACTIONS(2931), + [sym_integer_literal] = ACTIONS(2929), + [aux_sym_string_literal_token1] = ACTIONS(2929), + [sym_char_literal] = ACTIONS(2929), + [anon_sym_true] = ACTIONS(2931), + [anon_sym_false] = ACTIONS(2931), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2931), + [sym_super] = ACTIONS(2931), + [sym_crate] = ACTIONS(2931), + [sym_metavariable] = ACTIONS(2929), + [sym__raw_string_literal_start] = ACTIONS(2929), + [sym_float_literal] = ACTIONS(2929), }, [STATE(753)] = { [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [ts_builtin_sym_end] = ACTIONS(2851), - [sym_identifier] = ACTIONS(2853), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_macro_rules_BANG] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_RBRACE] = ACTIONS(2851), - [anon_sym_STAR] = ACTIONS(2851), - [anon_sym_u8] = ACTIONS(2853), - [anon_sym_i8] = ACTIONS(2853), - [anon_sym_u16] = ACTIONS(2853), - [anon_sym_i16] = ACTIONS(2853), - [anon_sym_u32] = ACTIONS(2853), - [anon_sym_i32] = ACTIONS(2853), - [anon_sym_u64] = ACTIONS(2853), - [anon_sym_i64] = ACTIONS(2853), - [anon_sym_u128] = ACTIONS(2853), - [anon_sym_i128] = ACTIONS(2853), - [anon_sym_isize] = ACTIONS(2853), - [anon_sym_usize] = ACTIONS(2853), - [anon_sym_f32] = ACTIONS(2853), - [anon_sym_f64] = ACTIONS(2853), - [anon_sym_bool] = ACTIONS(2853), - [anon_sym_str] = ACTIONS(2853), - [anon_sym_char] = ACTIONS(2853), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_BANG] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_LT] = ACTIONS(2851), - [anon_sym_DOT_DOT] = ACTIONS(2851), - [anon_sym_COLON_COLON] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(2851), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_async] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_default] = ACTIONS(2853), - [anon_sym_enum] = ACTIONS(2853), - [anon_sym_fn] = ACTIONS(2853), - [anon_sym_for] = ACTIONS(2853), - [anon_sym_gen] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_impl] = ACTIONS(2853), - [anon_sym_let] = ACTIONS(2853), - [anon_sym_loop] = ACTIONS(2853), - [anon_sym_match] = ACTIONS(2853), - [anon_sym_mod] = ACTIONS(2853), - [anon_sym_pub] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_static] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2853), - [anon_sym_trait] = ACTIONS(2853), - [anon_sym_type] = ACTIONS(2853), - [anon_sym_union] = ACTIONS(2853), - [anon_sym_unsafe] = ACTIONS(2853), - [anon_sym_use] = ACTIONS(2853), - [anon_sym_while] = ACTIONS(2853), - [anon_sym_extern] = ACTIONS(2853), - [anon_sym_yield] = ACTIONS(2853), - [anon_sym_move] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [sym_integer_literal] = ACTIONS(2851), - [aux_sym_string_literal_token1] = ACTIONS(2851), - [sym_char_literal] = ACTIONS(2851), - [anon_sym_true] = ACTIONS(2853), - [anon_sym_false] = ACTIONS(2853), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2853), - [sym_super] = ACTIONS(2853), - [sym_crate] = ACTIONS(2853), - [sym_metavariable] = ACTIONS(2851), - [sym__raw_string_literal_start] = ACTIONS(2851), - [sym_float_literal] = ACTIONS(2851), + [ts_builtin_sym_end] = ACTIONS(2933), + [sym_identifier] = ACTIONS(2935), + [anon_sym_SEMI] = ACTIONS(2933), + [anon_sym_macro_rules_BANG] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2933), + [anon_sym_RBRACE] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2933), + [anon_sym_u8] = ACTIONS(2935), + [anon_sym_i8] = ACTIONS(2935), + [anon_sym_u16] = ACTIONS(2935), + [anon_sym_i16] = ACTIONS(2935), + [anon_sym_u32] = ACTIONS(2935), + [anon_sym_i32] = ACTIONS(2935), + [anon_sym_u64] = ACTIONS(2935), + [anon_sym_i64] = ACTIONS(2935), + [anon_sym_u128] = ACTIONS(2935), + [anon_sym_i128] = ACTIONS(2935), + [anon_sym_isize] = ACTIONS(2935), + [anon_sym_usize] = ACTIONS(2935), + [anon_sym_f32] = ACTIONS(2935), + [anon_sym_f64] = ACTIONS(2935), + [anon_sym_bool] = ACTIONS(2935), + [anon_sym_str] = ACTIONS(2935), + [anon_sym_char] = ACTIONS(2935), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_AMP] = ACTIONS(2933), + [anon_sym_PIPE] = ACTIONS(2933), + [anon_sym_LT] = ACTIONS(2933), + [anon_sym_DOT_DOT] = ACTIONS(2933), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_POUND] = ACTIONS(2933), + [anon_sym_SQUOTE] = ACTIONS(2935), + [anon_sym_async] = ACTIONS(2935), + [anon_sym_break] = ACTIONS(2935), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_continue] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2935), + [anon_sym_enum] = ACTIONS(2935), + [anon_sym_fn] = ACTIONS(2935), + [anon_sym_for] = ACTIONS(2935), + [anon_sym_gen] = ACTIONS(2935), + [anon_sym_if] = ACTIONS(2935), + [anon_sym_impl] = ACTIONS(2935), + [anon_sym_let] = ACTIONS(2935), + [anon_sym_loop] = ACTIONS(2935), + [anon_sym_match] = ACTIONS(2935), + [anon_sym_mod] = ACTIONS(2935), + [anon_sym_pub] = ACTIONS(2935), + [anon_sym_return] = ACTIONS(2935), + [anon_sym_static] = ACTIONS(2935), + [anon_sym_struct] = ACTIONS(2935), + [anon_sym_trait] = ACTIONS(2935), + [anon_sym_type] = ACTIONS(2935), + [anon_sym_union] = ACTIONS(2935), + [anon_sym_unsafe] = ACTIONS(2935), + [anon_sym_use] = ACTIONS(2935), + [anon_sym_while] = ACTIONS(2935), + [anon_sym_extern] = ACTIONS(2935), + [anon_sym_yield] = ACTIONS(2935), + [anon_sym_move] = ACTIONS(2935), + [anon_sym_try] = ACTIONS(2935), + [sym_integer_literal] = ACTIONS(2933), + [aux_sym_string_literal_token1] = ACTIONS(2933), + [sym_char_literal] = ACTIONS(2933), + [anon_sym_true] = ACTIONS(2935), + [anon_sym_false] = ACTIONS(2935), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2935), + [sym_super] = ACTIONS(2935), + [sym_crate] = ACTIONS(2935), + [sym_metavariable] = ACTIONS(2933), + [sym__raw_string_literal_start] = ACTIONS(2933), + [sym_float_literal] = ACTIONS(2933), }, [STATE(754)] = { [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [ts_builtin_sym_end] = ACTIONS(2855), - [sym_identifier] = ACTIONS(2857), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_macro_rules_BANG] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_u8] = ACTIONS(2857), - [anon_sym_i8] = ACTIONS(2857), - [anon_sym_u16] = ACTIONS(2857), - [anon_sym_i16] = ACTIONS(2857), - [anon_sym_u32] = ACTIONS(2857), - [anon_sym_i32] = ACTIONS(2857), - [anon_sym_u64] = ACTIONS(2857), - [anon_sym_i64] = ACTIONS(2857), - [anon_sym_u128] = ACTIONS(2857), - [anon_sym_i128] = ACTIONS(2857), - [anon_sym_isize] = ACTIONS(2857), - [anon_sym_usize] = ACTIONS(2857), - [anon_sym_f32] = ACTIONS(2857), - [anon_sym_f64] = ACTIONS(2857), - [anon_sym_bool] = ACTIONS(2857), - [anon_sym_str] = ACTIONS(2857), - [anon_sym_char] = ACTIONS(2857), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_DOT_DOT] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_SQUOTE] = ACTIONS(2857), - [anon_sym_async] = ACTIONS(2857), - [anon_sym_break] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2857), - [anon_sym_continue] = ACTIONS(2857), - [anon_sym_default] = ACTIONS(2857), - [anon_sym_enum] = ACTIONS(2857), - [anon_sym_fn] = ACTIONS(2857), - [anon_sym_for] = ACTIONS(2857), - [anon_sym_gen] = ACTIONS(2857), - [anon_sym_if] = ACTIONS(2857), - [anon_sym_impl] = ACTIONS(2857), - [anon_sym_let] = ACTIONS(2857), - [anon_sym_loop] = ACTIONS(2857), - [anon_sym_match] = ACTIONS(2857), - [anon_sym_mod] = ACTIONS(2857), - [anon_sym_pub] = ACTIONS(2857), - [anon_sym_return] = ACTIONS(2857), - [anon_sym_static] = ACTIONS(2857), - [anon_sym_struct] = ACTIONS(2857), - [anon_sym_trait] = ACTIONS(2857), - [anon_sym_type] = ACTIONS(2857), - [anon_sym_union] = ACTIONS(2857), - [anon_sym_unsafe] = ACTIONS(2857), - [anon_sym_use] = ACTIONS(2857), - [anon_sym_while] = ACTIONS(2857), - [anon_sym_extern] = ACTIONS(2857), - [anon_sym_yield] = ACTIONS(2857), - [anon_sym_move] = ACTIONS(2857), - [anon_sym_try] = ACTIONS(2857), - [sym_integer_literal] = ACTIONS(2855), - [aux_sym_string_literal_token1] = ACTIONS(2855), - [sym_char_literal] = ACTIONS(2855), - [anon_sym_true] = ACTIONS(2857), - [anon_sym_false] = ACTIONS(2857), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2857), - [sym_super] = ACTIONS(2857), - [sym_crate] = ACTIONS(2857), - [sym_metavariable] = ACTIONS(2855), - [sym__raw_string_literal_start] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), + [ts_builtin_sym_end] = ACTIONS(2937), + [sym_identifier] = ACTIONS(2939), + [anon_sym_SEMI] = ACTIONS(2937), + [anon_sym_macro_rules_BANG] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2937), + [anon_sym_RBRACE] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2937), + [anon_sym_u8] = ACTIONS(2939), + [anon_sym_i8] = ACTIONS(2939), + [anon_sym_u16] = ACTIONS(2939), + [anon_sym_i16] = ACTIONS(2939), + [anon_sym_u32] = ACTIONS(2939), + [anon_sym_i32] = ACTIONS(2939), + [anon_sym_u64] = ACTIONS(2939), + [anon_sym_i64] = ACTIONS(2939), + [anon_sym_u128] = ACTIONS(2939), + [anon_sym_i128] = ACTIONS(2939), + [anon_sym_isize] = ACTIONS(2939), + [anon_sym_usize] = ACTIONS(2939), + [anon_sym_f32] = ACTIONS(2939), + [anon_sym_f64] = ACTIONS(2939), + [anon_sym_bool] = ACTIONS(2939), + [anon_sym_str] = ACTIONS(2939), + [anon_sym_char] = ACTIONS(2939), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_DOT_DOT] = ACTIONS(2937), + [anon_sym_COLON_COLON] = ACTIONS(2937), + [anon_sym_POUND] = ACTIONS(2937), + [anon_sym_SQUOTE] = ACTIONS(2939), + [anon_sym_async] = ACTIONS(2939), + [anon_sym_break] = ACTIONS(2939), + [anon_sym_const] = ACTIONS(2939), + [anon_sym_continue] = ACTIONS(2939), + [anon_sym_default] = ACTIONS(2939), + [anon_sym_enum] = ACTIONS(2939), + [anon_sym_fn] = ACTIONS(2939), + [anon_sym_for] = ACTIONS(2939), + [anon_sym_gen] = ACTIONS(2939), + [anon_sym_if] = ACTIONS(2939), + [anon_sym_impl] = ACTIONS(2939), + [anon_sym_let] = ACTIONS(2939), + [anon_sym_loop] = ACTIONS(2939), + [anon_sym_match] = ACTIONS(2939), + [anon_sym_mod] = ACTIONS(2939), + [anon_sym_pub] = ACTIONS(2939), + [anon_sym_return] = ACTIONS(2939), + [anon_sym_static] = ACTIONS(2939), + [anon_sym_struct] = ACTIONS(2939), + [anon_sym_trait] = ACTIONS(2939), + [anon_sym_type] = ACTIONS(2939), + [anon_sym_union] = ACTIONS(2939), + [anon_sym_unsafe] = ACTIONS(2939), + [anon_sym_use] = ACTIONS(2939), + [anon_sym_while] = ACTIONS(2939), + [anon_sym_extern] = ACTIONS(2939), + [anon_sym_yield] = ACTIONS(2939), + [anon_sym_move] = ACTIONS(2939), + [anon_sym_try] = ACTIONS(2939), + [sym_integer_literal] = ACTIONS(2937), + [aux_sym_string_literal_token1] = ACTIONS(2937), + [sym_char_literal] = ACTIONS(2937), + [anon_sym_true] = ACTIONS(2939), + [anon_sym_false] = ACTIONS(2939), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2939), + [sym_super] = ACTIONS(2939), + [sym_crate] = ACTIONS(2939), + [sym_metavariable] = ACTIONS(2937), + [sym__raw_string_literal_start] = ACTIONS(2937), + [sym_float_literal] = ACTIONS(2937), }, [STATE(755)] = { [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [ts_builtin_sym_end] = ACTIONS(2859), - [sym_identifier] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2859), - [anon_sym_macro_rules_BANG] = ACTIONS(2859), - [anon_sym_LPAREN] = ACTIONS(2859), - [anon_sym_LBRACK] = ACTIONS(2859), - [anon_sym_LBRACE] = ACTIONS(2859), - [anon_sym_RBRACE] = ACTIONS(2859), - [anon_sym_STAR] = ACTIONS(2859), - [anon_sym_u8] = ACTIONS(2861), - [anon_sym_i8] = ACTIONS(2861), - [anon_sym_u16] = ACTIONS(2861), - [anon_sym_i16] = ACTIONS(2861), - [anon_sym_u32] = ACTIONS(2861), - [anon_sym_i32] = ACTIONS(2861), - [anon_sym_u64] = ACTIONS(2861), - [anon_sym_i64] = ACTIONS(2861), - [anon_sym_u128] = ACTIONS(2861), - [anon_sym_i128] = ACTIONS(2861), - [anon_sym_isize] = ACTIONS(2861), - [anon_sym_usize] = ACTIONS(2861), - [anon_sym_f32] = ACTIONS(2861), - [anon_sym_f64] = ACTIONS(2861), - [anon_sym_bool] = ACTIONS(2861), - [anon_sym_str] = ACTIONS(2861), - [anon_sym_char] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2859), - [anon_sym_BANG] = ACTIONS(2859), - [anon_sym_AMP] = ACTIONS(2859), - [anon_sym_PIPE] = ACTIONS(2859), - [anon_sym_LT] = ACTIONS(2859), - [anon_sym_DOT_DOT] = ACTIONS(2859), - [anon_sym_COLON_COLON] = ACTIONS(2859), - [anon_sym_POUND] = ACTIONS(2859), - [anon_sym_SQUOTE] = ACTIONS(2861), - [anon_sym_async] = ACTIONS(2861), - [anon_sym_break] = ACTIONS(2861), - [anon_sym_const] = ACTIONS(2861), - [anon_sym_continue] = ACTIONS(2861), - [anon_sym_default] = ACTIONS(2861), - [anon_sym_enum] = ACTIONS(2861), - [anon_sym_fn] = ACTIONS(2861), - [anon_sym_for] = ACTIONS(2861), - [anon_sym_gen] = ACTIONS(2861), - [anon_sym_if] = ACTIONS(2861), - [anon_sym_impl] = ACTIONS(2861), - [anon_sym_let] = ACTIONS(2861), - [anon_sym_loop] = ACTIONS(2861), - [anon_sym_match] = ACTIONS(2861), - [anon_sym_mod] = ACTIONS(2861), - [anon_sym_pub] = ACTIONS(2861), - [anon_sym_return] = ACTIONS(2861), - [anon_sym_static] = ACTIONS(2861), - [anon_sym_struct] = ACTIONS(2861), - [anon_sym_trait] = ACTIONS(2861), - [anon_sym_type] = ACTIONS(2861), - [anon_sym_union] = ACTIONS(2861), - [anon_sym_unsafe] = ACTIONS(2861), - [anon_sym_use] = ACTIONS(2861), - [anon_sym_while] = ACTIONS(2861), - [anon_sym_extern] = ACTIONS(2861), - [anon_sym_yield] = ACTIONS(2861), - [anon_sym_move] = ACTIONS(2861), - [anon_sym_try] = ACTIONS(2861), - [sym_integer_literal] = ACTIONS(2859), - [aux_sym_string_literal_token1] = ACTIONS(2859), - [sym_char_literal] = ACTIONS(2859), - [anon_sym_true] = ACTIONS(2861), - [anon_sym_false] = ACTIONS(2861), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2861), - [sym_super] = ACTIONS(2861), - [sym_crate] = ACTIONS(2861), - [sym_metavariable] = ACTIONS(2859), - [sym__raw_string_literal_start] = ACTIONS(2859), - [sym_float_literal] = ACTIONS(2859), + [ts_builtin_sym_end] = ACTIONS(2941), + [sym_identifier] = ACTIONS(2943), + [anon_sym_SEMI] = ACTIONS(2941), + [anon_sym_macro_rules_BANG] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2941), + [anon_sym_RBRACE] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2941), + [anon_sym_u8] = ACTIONS(2943), + [anon_sym_i8] = ACTIONS(2943), + [anon_sym_u16] = ACTIONS(2943), + [anon_sym_i16] = ACTIONS(2943), + [anon_sym_u32] = ACTIONS(2943), + [anon_sym_i32] = ACTIONS(2943), + [anon_sym_u64] = ACTIONS(2943), + [anon_sym_i64] = ACTIONS(2943), + [anon_sym_u128] = ACTIONS(2943), + [anon_sym_i128] = ACTIONS(2943), + [anon_sym_isize] = ACTIONS(2943), + [anon_sym_usize] = ACTIONS(2943), + [anon_sym_f32] = ACTIONS(2943), + [anon_sym_f64] = ACTIONS(2943), + [anon_sym_bool] = ACTIONS(2943), + [anon_sym_str] = ACTIONS(2943), + [anon_sym_char] = ACTIONS(2943), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_BANG] = ACTIONS(2941), + [anon_sym_AMP] = ACTIONS(2941), + [anon_sym_PIPE] = ACTIONS(2941), + [anon_sym_LT] = ACTIONS(2941), + [anon_sym_DOT_DOT] = ACTIONS(2941), + [anon_sym_COLON_COLON] = ACTIONS(2941), + [anon_sym_POUND] = ACTIONS(2941), + [anon_sym_SQUOTE] = ACTIONS(2943), + [anon_sym_async] = ACTIONS(2943), + [anon_sym_break] = ACTIONS(2943), + [anon_sym_const] = ACTIONS(2943), + [anon_sym_continue] = ACTIONS(2943), + [anon_sym_default] = ACTIONS(2943), + [anon_sym_enum] = ACTIONS(2943), + [anon_sym_fn] = ACTIONS(2943), + [anon_sym_for] = ACTIONS(2943), + [anon_sym_gen] = ACTIONS(2943), + [anon_sym_if] = ACTIONS(2943), + [anon_sym_impl] = ACTIONS(2943), + [anon_sym_let] = ACTIONS(2943), + [anon_sym_loop] = ACTIONS(2943), + [anon_sym_match] = ACTIONS(2943), + [anon_sym_mod] = ACTIONS(2943), + [anon_sym_pub] = ACTIONS(2943), + [anon_sym_return] = ACTIONS(2943), + [anon_sym_static] = ACTIONS(2943), + [anon_sym_struct] = ACTIONS(2943), + [anon_sym_trait] = ACTIONS(2943), + [anon_sym_type] = ACTIONS(2943), + [anon_sym_union] = ACTIONS(2943), + [anon_sym_unsafe] = ACTIONS(2943), + [anon_sym_use] = ACTIONS(2943), + [anon_sym_while] = ACTIONS(2943), + [anon_sym_extern] = ACTIONS(2943), + [anon_sym_yield] = ACTIONS(2943), + [anon_sym_move] = ACTIONS(2943), + [anon_sym_try] = ACTIONS(2943), + [sym_integer_literal] = ACTIONS(2941), + [aux_sym_string_literal_token1] = ACTIONS(2941), + [sym_char_literal] = ACTIONS(2941), + [anon_sym_true] = ACTIONS(2943), + [anon_sym_false] = ACTIONS(2943), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2943), + [sym_super] = ACTIONS(2943), + [sym_crate] = ACTIONS(2943), + [sym_metavariable] = ACTIONS(2941), + [sym__raw_string_literal_start] = ACTIONS(2941), + [sym_float_literal] = ACTIONS(2941), }, [STATE(756)] = { [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [ts_builtin_sym_end] = ACTIONS(2863), - [sym_identifier] = ACTIONS(2865), - [anon_sym_SEMI] = ACTIONS(2863), - [anon_sym_macro_rules_BANG] = ACTIONS(2863), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2863), - [anon_sym_RBRACE] = ACTIONS(2863), - [anon_sym_STAR] = ACTIONS(2863), - [anon_sym_u8] = ACTIONS(2865), - [anon_sym_i8] = ACTIONS(2865), - [anon_sym_u16] = ACTIONS(2865), - [anon_sym_i16] = ACTIONS(2865), - [anon_sym_u32] = ACTIONS(2865), - [anon_sym_i32] = ACTIONS(2865), - [anon_sym_u64] = ACTIONS(2865), - [anon_sym_i64] = ACTIONS(2865), - [anon_sym_u128] = ACTIONS(2865), - [anon_sym_i128] = ACTIONS(2865), - [anon_sym_isize] = ACTIONS(2865), - [anon_sym_usize] = ACTIONS(2865), - [anon_sym_f32] = ACTIONS(2865), - [anon_sym_f64] = ACTIONS(2865), - [anon_sym_bool] = ACTIONS(2865), - [anon_sym_str] = ACTIONS(2865), - [anon_sym_char] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2863), - [anon_sym_BANG] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2863), - [anon_sym_PIPE] = ACTIONS(2863), - [anon_sym_LT] = ACTIONS(2863), - [anon_sym_DOT_DOT] = ACTIONS(2863), - [anon_sym_COLON_COLON] = ACTIONS(2863), - [anon_sym_POUND] = ACTIONS(2863), - [anon_sym_SQUOTE] = ACTIONS(2865), - [anon_sym_async] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2865), - [anon_sym_const] = ACTIONS(2865), - [anon_sym_continue] = ACTIONS(2865), - [anon_sym_default] = ACTIONS(2865), - [anon_sym_enum] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_for] = ACTIONS(2865), - [anon_sym_gen] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_impl] = ACTIONS(2865), - [anon_sym_let] = ACTIONS(2865), - [anon_sym_loop] = ACTIONS(2865), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_mod] = ACTIONS(2865), - [anon_sym_pub] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_static] = ACTIONS(2865), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_trait] = ACTIONS(2865), - [anon_sym_type] = ACTIONS(2865), - [anon_sym_union] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_use] = ACTIONS(2865), - [anon_sym_while] = ACTIONS(2865), - [anon_sym_extern] = ACTIONS(2865), - [anon_sym_yield] = ACTIONS(2865), - [anon_sym_move] = ACTIONS(2865), - [anon_sym_try] = ACTIONS(2865), - [sym_integer_literal] = ACTIONS(2863), - [aux_sym_string_literal_token1] = ACTIONS(2863), - [sym_char_literal] = ACTIONS(2863), - [anon_sym_true] = ACTIONS(2865), - [anon_sym_false] = ACTIONS(2865), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2865), - [sym_super] = ACTIONS(2865), - [sym_crate] = ACTIONS(2865), - [sym_metavariable] = ACTIONS(2863), - [sym__raw_string_literal_start] = ACTIONS(2863), - [sym_float_literal] = ACTIONS(2863), + [ts_builtin_sym_end] = ACTIONS(2945), + [sym_identifier] = ACTIONS(2947), + [anon_sym_SEMI] = ACTIONS(2945), + [anon_sym_macro_rules_BANG] = ACTIONS(2945), + [anon_sym_LPAREN] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2945), + [anon_sym_RBRACE] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_u8] = ACTIONS(2947), + [anon_sym_i8] = ACTIONS(2947), + [anon_sym_u16] = ACTIONS(2947), + [anon_sym_i16] = ACTIONS(2947), + [anon_sym_u32] = ACTIONS(2947), + [anon_sym_i32] = ACTIONS(2947), + [anon_sym_u64] = ACTIONS(2947), + [anon_sym_i64] = ACTIONS(2947), + [anon_sym_u128] = ACTIONS(2947), + [anon_sym_i128] = ACTIONS(2947), + [anon_sym_isize] = ACTIONS(2947), + [anon_sym_usize] = ACTIONS(2947), + [anon_sym_f32] = ACTIONS(2947), + [anon_sym_f64] = ACTIONS(2947), + [anon_sym_bool] = ACTIONS(2947), + [anon_sym_str] = ACTIONS(2947), + [anon_sym_char] = ACTIONS(2947), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2945), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_LT] = ACTIONS(2945), + [anon_sym_DOT_DOT] = ACTIONS(2945), + [anon_sym_COLON_COLON] = ACTIONS(2945), + [anon_sym_POUND] = ACTIONS(2945), + [anon_sym_SQUOTE] = ACTIONS(2947), + [anon_sym_async] = ACTIONS(2947), + [anon_sym_break] = ACTIONS(2947), + [anon_sym_const] = ACTIONS(2947), + [anon_sym_continue] = ACTIONS(2947), + [anon_sym_default] = ACTIONS(2947), + [anon_sym_enum] = ACTIONS(2947), + [anon_sym_fn] = ACTIONS(2947), + [anon_sym_for] = ACTIONS(2947), + [anon_sym_gen] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2947), + [anon_sym_impl] = ACTIONS(2947), + [anon_sym_let] = ACTIONS(2947), + [anon_sym_loop] = ACTIONS(2947), + [anon_sym_match] = ACTIONS(2947), + [anon_sym_mod] = ACTIONS(2947), + [anon_sym_pub] = ACTIONS(2947), + [anon_sym_return] = ACTIONS(2947), + [anon_sym_static] = ACTIONS(2947), + [anon_sym_struct] = ACTIONS(2947), + [anon_sym_trait] = ACTIONS(2947), + [anon_sym_type] = ACTIONS(2947), + [anon_sym_union] = ACTIONS(2947), + [anon_sym_unsafe] = ACTIONS(2947), + [anon_sym_use] = ACTIONS(2947), + [anon_sym_while] = ACTIONS(2947), + [anon_sym_extern] = ACTIONS(2947), + [anon_sym_yield] = ACTIONS(2947), + [anon_sym_move] = ACTIONS(2947), + [anon_sym_try] = ACTIONS(2947), + [sym_integer_literal] = ACTIONS(2945), + [aux_sym_string_literal_token1] = ACTIONS(2945), + [sym_char_literal] = ACTIONS(2945), + [anon_sym_true] = ACTIONS(2947), + [anon_sym_false] = ACTIONS(2947), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2947), + [sym_super] = ACTIONS(2947), + [sym_crate] = ACTIONS(2947), + [sym_metavariable] = ACTIONS(2945), + [sym__raw_string_literal_start] = ACTIONS(2945), + [sym_float_literal] = ACTIONS(2945), }, [STATE(757)] = { [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [ts_builtin_sym_end] = ACTIONS(2867), - [sym_identifier] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2867), - [anon_sym_macro_rules_BANG] = ACTIONS(2867), - [anon_sym_LPAREN] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(2867), - [anon_sym_u8] = ACTIONS(2869), - [anon_sym_i8] = ACTIONS(2869), - [anon_sym_u16] = ACTIONS(2869), - [anon_sym_i16] = ACTIONS(2869), - [anon_sym_u32] = ACTIONS(2869), - [anon_sym_i32] = ACTIONS(2869), - [anon_sym_u64] = ACTIONS(2869), - [anon_sym_i64] = ACTIONS(2869), - [anon_sym_u128] = ACTIONS(2869), - [anon_sym_i128] = ACTIONS(2869), - [anon_sym_isize] = ACTIONS(2869), - [anon_sym_usize] = ACTIONS(2869), - [anon_sym_f32] = ACTIONS(2869), - [anon_sym_f64] = ACTIONS(2869), - [anon_sym_bool] = ACTIONS(2869), - [anon_sym_str] = ACTIONS(2869), - [anon_sym_char] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2867), - [anon_sym_BANG] = ACTIONS(2867), - [anon_sym_AMP] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2867), - [anon_sym_LT] = ACTIONS(2867), - [anon_sym_DOT_DOT] = ACTIONS(2867), - [anon_sym_COLON_COLON] = ACTIONS(2867), - [anon_sym_POUND] = ACTIONS(2867), - [anon_sym_SQUOTE] = ACTIONS(2869), - [anon_sym_async] = ACTIONS(2869), - [anon_sym_break] = ACTIONS(2869), - [anon_sym_const] = ACTIONS(2869), - [anon_sym_continue] = ACTIONS(2869), - [anon_sym_default] = ACTIONS(2869), - [anon_sym_enum] = ACTIONS(2869), - [anon_sym_fn] = ACTIONS(2869), - [anon_sym_for] = ACTIONS(2869), - [anon_sym_gen] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2869), - [anon_sym_impl] = ACTIONS(2869), - [anon_sym_let] = ACTIONS(2869), - [anon_sym_loop] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2869), - [anon_sym_mod] = ACTIONS(2869), - [anon_sym_pub] = ACTIONS(2869), - [anon_sym_return] = ACTIONS(2869), - [anon_sym_static] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2869), - [anon_sym_trait] = ACTIONS(2869), - [anon_sym_type] = ACTIONS(2869), - [anon_sym_union] = ACTIONS(2869), - [anon_sym_unsafe] = ACTIONS(2869), - [anon_sym_use] = ACTIONS(2869), - [anon_sym_while] = ACTIONS(2869), - [anon_sym_extern] = ACTIONS(2869), - [anon_sym_yield] = ACTIONS(2869), - [anon_sym_move] = ACTIONS(2869), - [anon_sym_try] = ACTIONS(2869), - [sym_integer_literal] = ACTIONS(2867), - [aux_sym_string_literal_token1] = ACTIONS(2867), - [sym_char_literal] = ACTIONS(2867), - [anon_sym_true] = ACTIONS(2869), - [anon_sym_false] = ACTIONS(2869), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2869), - [sym_super] = ACTIONS(2869), - [sym_crate] = ACTIONS(2869), - [sym_metavariable] = ACTIONS(2867), - [sym__raw_string_literal_start] = ACTIONS(2867), - [sym_float_literal] = ACTIONS(2867), + [ts_builtin_sym_end] = ACTIONS(2949), + [sym_identifier] = ACTIONS(2951), + [anon_sym_SEMI] = ACTIONS(2949), + [anon_sym_macro_rules_BANG] = ACTIONS(2949), + [anon_sym_LPAREN] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2949), + [anon_sym_RBRACE] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2949), + [anon_sym_u8] = ACTIONS(2951), + [anon_sym_i8] = ACTIONS(2951), + [anon_sym_u16] = ACTIONS(2951), + [anon_sym_i16] = ACTIONS(2951), + [anon_sym_u32] = ACTIONS(2951), + [anon_sym_i32] = ACTIONS(2951), + [anon_sym_u64] = ACTIONS(2951), + [anon_sym_i64] = ACTIONS(2951), + [anon_sym_u128] = ACTIONS(2951), + [anon_sym_i128] = ACTIONS(2951), + [anon_sym_isize] = ACTIONS(2951), + [anon_sym_usize] = ACTIONS(2951), + [anon_sym_f32] = ACTIONS(2951), + [anon_sym_f64] = ACTIONS(2951), + [anon_sym_bool] = ACTIONS(2951), + [anon_sym_str] = ACTIONS(2951), + [anon_sym_char] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_DOT_DOT] = ACTIONS(2949), + [anon_sym_COLON_COLON] = ACTIONS(2949), + [anon_sym_POUND] = ACTIONS(2949), + [anon_sym_SQUOTE] = ACTIONS(2951), + [anon_sym_async] = ACTIONS(2951), + [anon_sym_break] = ACTIONS(2951), + [anon_sym_const] = ACTIONS(2951), + [anon_sym_continue] = ACTIONS(2951), + [anon_sym_default] = ACTIONS(2951), + [anon_sym_enum] = ACTIONS(2951), + [anon_sym_fn] = ACTIONS(2951), + [anon_sym_for] = ACTIONS(2951), + [anon_sym_gen] = ACTIONS(2951), + [anon_sym_if] = ACTIONS(2951), + [anon_sym_impl] = ACTIONS(2951), + [anon_sym_let] = ACTIONS(2951), + [anon_sym_loop] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2951), + [anon_sym_mod] = ACTIONS(2951), + [anon_sym_pub] = ACTIONS(2951), + [anon_sym_return] = ACTIONS(2951), + [anon_sym_static] = ACTIONS(2951), + [anon_sym_struct] = ACTIONS(2951), + [anon_sym_trait] = ACTIONS(2951), + [anon_sym_type] = ACTIONS(2951), + [anon_sym_union] = ACTIONS(2951), + [anon_sym_unsafe] = ACTIONS(2951), + [anon_sym_use] = ACTIONS(2951), + [anon_sym_while] = ACTIONS(2951), + [anon_sym_extern] = ACTIONS(2951), + [anon_sym_yield] = ACTIONS(2951), + [anon_sym_move] = ACTIONS(2951), + [anon_sym_try] = ACTIONS(2951), + [sym_integer_literal] = ACTIONS(2949), + [aux_sym_string_literal_token1] = ACTIONS(2949), + [sym_char_literal] = ACTIONS(2949), + [anon_sym_true] = ACTIONS(2951), + [anon_sym_false] = ACTIONS(2951), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2951), + [sym_super] = ACTIONS(2951), + [sym_crate] = ACTIONS(2951), + [sym_metavariable] = ACTIONS(2949), + [sym__raw_string_literal_start] = ACTIONS(2949), + [sym_float_literal] = ACTIONS(2949), }, [STATE(758)] = { [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [ts_builtin_sym_end] = ACTIONS(2871), - [sym_identifier] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym_macro_rules_BANG] = ACTIONS(2871), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_LBRACK] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_STAR] = ACTIONS(2871), - [anon_sym_u8] = ACTIONS(2873), - [anon_sym_i8] = ACTIONS(2873), - [anon_sym_u16] = ACTIONS(2873), - [anon_sym_i16] = ACTIONS(2873), - [anon_sym_u32] = ACTIONS(2873), - [anon_sym_i32] = ACTIONS(2873), - [anon_sym_u64] = ACTIONS(2873), - [anon_sym_i64] = ACTIONS(2873), - [anon_sym_u128] = ACTIONS(2873), - [anon_sym_i128] = ACTIONS(2873), - [anon_sym_isize] = ACTIONS(2873), - [anon_sym_usize] = ACTIONS(2873), - [anon_sym_f32] = ACTIONS(2873), - [anon_sym_f64] = ACTIONS(2873), - [anon_sym_bool] = ACTIONS(2873), - [anon_sym_str] = ACTIONS(2873), - [anon_sym_char] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2871), - [anon_sym_BANG] = ACTIONS(2871), - [anon_sym_AMP] = ACTIONS(2871), - [anon_sym_PIPE] = ACTIONS(2871), - [anon_sym_LT] = ACTIONS(2871), - [anon_sym_DOT_DOT] = ACTIONS(2871), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_POUND] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2873), - [anon_sym_async] = ACTIONS(2873), - [anon_sym_break] = ACTIONS(2873), - [anon_sym_const] = ACTIONS(2873), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_default] = ACTIONS(2873), - [anon_sym_enum] = ACTIONS(2873), - [anon_sym_fn] = ACTIONS(2873), - [anon_sym_for] = ACTIONS(2873), - [anon_sym_gen] = ACTIONS(2873), - [anon_sym_if] = ACTIONS(2873), - [anon_sym_impl] = ACTIONS(2873), - [anon_sym_let] = ACTIONS(2873), - [anon_sym_loop] = ACTIONS(2873), - [anon_sym_match] = ACTIONS(2873), - [anon_sym_mod] = ACTIONS(2873), - [anon_sym_pub] = ACTIONS(2873), - [anon_sym_return] = ACTIONS(2873), - [anon_sym_static] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(2873), - [anon_sym_trait] = ACTIONS(2873), - [anon_sym_type] = ACTIONS(2873), - [anon_sym_union] = ACTIONS(2873), - [anon_sym_unsafe] = ACTIONS(2873), - [anon_sym_use] = ACTIONS(2873), - [anon_sym_while] = ACTIONS(2873), - [anon_sym_extern] = ACTIONS(2873), - [anon_sym_yield] = ACTIONS(2873), - [anon_sym_move] = ACTIONS(2873), - [anon_sym_try] = ACTIONS(2873), - [sym_integer_literal] = ACTIONS(2871), - [aux_sym_string_literal_token1] = ACTIONS(2871), - [sym_char_literal] = ACTIONS(2871), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2873), - [sym_super] = ACTIONS(2873), - [sym_crate] = ACTIONS(2873), - [sym_metavariable] = ACTIONS(2871), - [sym__raw_string_literal_start] = ACTIONS(2871), - [sym_float_literal] = ACTIONS(2871), + [ts_builtin_sym_end] = ACTIONS(2953), + [sym_identifier] = ACTIONS(2955), + [anon_sym_SEMI] = ACTIONS(2953), + [anon_sym_macro_rules_BANG] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2953), + [anon_sym_LBRACK] = ACTIONS(2953), + [anon_sym_LBRACE] = ACTIONS(2953), + [anon_sym_RBRACE] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2953), + [anon_sym_u8] = ACTIONS(2955), + [anon_sym_i8] = ACTIONS(2955), + [anon_sym_u16] = ACTIONS(2955), + [anon_sym_i16] = ACTIONS(2955), + [anon_sym_u32] = ACTIONS(2955), + [anon_sym_i32] = ACTIONS(2955), + [anon_sym_u64] = ACTIONS(2955), + [anon_sym_i64] = ACTIONS(2955), + [anon_sym_u128] = ACTIONS(2955), + [anon_sym_i128] = ACTIONS(2955), + [anon_sym_isize] = ACTIONS(2955), + [anon_sym_usize] = ACTIONS(2955), + [anon_sym_f32] = ACTIONS(2955), + [anon_sym_f64] = ACTIONS(2955), + [anon_sym_bool] = ACTIONS(2955), + [anon_sym_str] = ACTIONS(2955), + [anon_sym_char] = ACTIONS(2955), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_DOT_DOT] = ACTIONS(2953), + [anon_sym_COLON_COLON] = ACTIONS(2953), + [anon_sym_POUND] = ACTIONS(2953), + [anon_sym_SQUOTE] = ACTIONS(2955), + [anon_sym_async] = ACTIONS(2955), + [anon_sym_break] = ACTIONS(2955), + [anon_sym_const] = ACTIONS(2955), + [anon_sym_continue] = ACTIONS(2955), + [anon_sym_default] = ACTIONS(2955), + [anon_sym_enum] = ACTIONS(2955), + [anon_sym_fn] = ACTIONS(2955), + [anon_sym_for] = ACTIONS(2955), + [anon_sym_gen] = ACTIONS(2955), + [anon_sym_if] = ACTIONS(2955), + [anon_sym_impl] = ACTIONS(2955), + [anon_sym_let] = ACTIONS(2955), + [anon_sym_loop] = ACTIONS(2955), + [anon_sym_match] = ACTIONS(2955), + [anon_sym_mod] = ACTIONS(2955), + [anon_sym_pub] = ACTIONS(2955), + [anon_sym_return] = ACTIONS(2955), + [anon_sym_static] = ACTIONS(2955), + [anon_sym_struct] = ACTIONS(2955), + [anon_sym_trait] = ACTIONS(2955), + [anon_sym_type] = ACTIONS(2955), + [anon_sym_union] = ACTIONS(2955), + [anon_sym_unsafe] = ACTIONS(2955), + [anon_sym_use] = ACTIONS(2955), + [anon_sym_while] = ACTIONS(2955), + [anon_sym_extern] = ACTIONS(2955), + [anon_sym_yield] = ACTIONS(2955), + [anon_sym_move] = ACTIONS(2955), + [anon_sym_try] = ACTIONS(2955), + [sym_integer_literal] = ACTIONS(2953), + [aux_sym_string_literal_token1] = ACTIONS(2953), + [sym_char_literal] = ACTIONS(2953), + [anon_sym_true] = ACTIONS(2955), + [anon_sym_false] = ACTIONS(2955), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2955), + [sym_super] = ACTIONS(2955), + [sym_crate] = ACTIONS(2955), + [sym_metavariable] = ACTIONS(2953), + [sym__raw_string_literal_start] = ACTIONS(2953), + [sym_float_literal] = ACTIONS(2953), }, [STATE(759)] = { [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [ts_builtin_sym_end] = ACTIONS(2875), - [sym_identifier] = ACTIONS(2877), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_macro_rules_BANG] = ACTIONS(2875), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_LBRACK] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2875), - [anon_sym_STAR] = ACTIONS(2875), - [anon_sym_u8] = ACTIONS(2877), - [anon_sym_i8] = ACTIONS(2877), - [anon_sym_u16] = ACTIONS(2877), - [anon_sym_i16] = ACTIONS(2877), - [anon_sym_u32] = ACTIONS(2877), - [anon_sym_i32] = ACTIONS(2877), - [anon_sym_u64] = ACTIONS(2877), - [anon_sym_i64] = ACTIONS(2877), - [anon_sym_u128] = ACTIONS(2877), - [anon_sym_i128] = ACTIONS(2877), - [anon_sym_isize] = ACTIONS(2877), - [anon_sym_usize] = ACTIONS(2877), - [anon_sym_f32] = ACTIONS(2877), - [anon_sym_f64] = ACTIONS(2877), - [anon_sym_bool] = ACTIONS(2877), - [anon_sym_str] = ACTIONS(2877), - [anon_sym_char] = ACTIONS(2877), - [anon_sym_DASH] = ACTIONS(2875), - [anon_sym_BANG] = ACTIONS(2875), - [anon_sym_AMP] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2875), - [anon_sym_LT] = ACTIONS(2875), - [anon_sym_DOT_DOT] = ACTIONS(2875), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_POUND] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2877), - [anon_sym_async] = ACTIONS(2877), - [anon_sym_break] = ACTIONS(2877), - [anon_sym_const] = ACTIONS(2877), - [anon_sym_continue] = ACTIONS(2877), - [anon_sym_default] = ACTIONS(2877), - [anon_sym_enum] = ACTIONS(2877), - [anon_sym_fn] = ACTIONS(2877), - [anon_sym_for] = ACTIONS(2877), - [anon_sym_gen] = ACTIONS(2877), - [anon_sym_if] = ACTIONS(2877), - [anon_sym_impl] = ACTIONS(2877), - [anon_sym_let] = ACTIONS(2877), - [anon_sym_loop] = ACTIONS(2877), - [anon_sym_match] = ACTIONS(2877), - [anon_sym_mod] = ACTIONS(2877), - [anon_sym_pub] = ACTIONS(2877), - [anon_sym_return] = ACTIONS(2877), - [anon_sym_static] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(2877), - [anon_sym_trait] = ACTIONS(2877), - [anon_sym_type] = ACTIONS(2877), - [anon_sym_union] = ACTIONS(2877), - [anon_sym_unsafe] = ACTIONS(2877), - [anon_sym_use] = ACTIONS(2877), - [anon_sym_while] = ACTIONS(2877), - [anon_sym_extern] = ACTIONS(2877), - [anon_sym_yield] = ACTIONS(2877), - [anon_sym_move] = ACTIONS(2877), - [anon_sym_try] = ACTIONS(2877), - [sym_integer_literal] = ACTIONS(2875), - [aux_sym_string_literal_token1] = ACTIONS(2875), - [sym_char_literal] = ACTIONS(2875), - [anon_sym_true] = ACTIONS(2877), - [anon_sym_false] = ACTIONS(2877), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2877), - [sym_super] = ACTIONS(2877), - [sym_crate] = ACTIONS(2877), - [sym_metavariable] = ACTIONS(2875), - [sym__raw_string_literal_start] = ACTIONS(2875), - [sym_float_literal] = ACTIONS(2875), + [ts_builtin_sym_end] = ACTIONS(2957), + [sym_identifier] = ACTIONS(2959), + [anon_sym_SEMI] = ACTIONS(2957), + [anon_sym_macro_rules_BANG] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2957), + [anon_sym_RBRACE] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2957), + [anon_sym_u8] = ACTIONS(2959), + [anon_sym_i8] = ACTIONS(2959), + [anon_sym_u16] = ACTIONS(2959), + [anon_sym_i16] = ACTIONS(2959), + [anon_sym_u32] = ACTIONS(2959), + [anon_sym_i32] = ACTIONS(2959), + [anon_sym_u64] = ACTIONS(2959), + [anon_sym_i64] = ACTIONS(2959), + [anon_sym_u128] = ACTIONS(2959), + [anon_sym_i128] = ACTIONS(2959), + [anon_sym_isize] = ACTIONS(2959), + [anon_sym_usize] = ACTIONS(2959), + [anon_sym_f32] = ACTIONS(2959), + [anon_sym_f64] = ACTIONS(2959), + [anon_sym_bool] = ACTIONS(2959), + [anon_sym_str] = ACTIONS(2959), + [anon_sym_char] = ACTIONS(2959), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_PIPE] = ACTIONS(2957), + [anon_sym_LT] = ACTIONS(2957), + [anon_sym_DOT_DOT] = ACTIONS(2957), + [anon_sym_COLON_COLON] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(2957), + [anon_sym_SQUOTE] = ACTIONS(2959), + [anon_sym_async] = ACTIONS(2959), + [anon_sym_break] = ACTIONS(2959), + [anon_sym_const] = ACTIONS(2959), + [anon_sym_continue] = ACTIONS(2959), + [anon_sym_default] = ACTIONS(2959), + [anon_sym_enum] = ACTIONS(2959), + [anon_sym_fn] = ACTIONS(2959), + [anon_sym_for] = ACTIONS(2959), + [anon_sym_gen] = ACTIONS(2959), + [anon_sym_if] = ACTIONS(2959), + [anon_sym_impl] = ACTIONS(2959), + [anon_sym_let] = ACTIONS(2959), + [anon_sym_loop] = ACTIONS(2959), + [anon_sym_match] = ACTIONS(2959), + [anon_sym_mod] = ACTIONS(2959), + [anon_sym_pub] = ACTIONS(2959), + [anon_sym_return] = ACTIONS(2959), + [anon_sym_static] = ACTIONS(2959), + [anon_sym_struct] = ACTIONS(2959), + [anon_sym_trait] = ACTIONS(2959), + [anon_sym_type] = ACTIONS(2959), + [anon_sym_union] = ACTIONS(2959), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_use] = ACTIONS(2959), + [anon_sym_while] = ACTIONS(2959), + [anon_sym_extern] = ACTIONS(2959), + [anon_sym_yield] = ACTIONS(2959), + [anon_sym_move] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2959), + [sym_integer_literal] = ACTIONS(2957), + [aux_sym_string_literal_token1] = ACTIONS(2957), + [sym_char_literal] = ACTIONS(2957), + [anon_sym_true] = ACTIONS(2959), + [anon_sym_false] = ACTIONS(2959), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2959), + [sym_super] = ACTIONS(2959), + [sym_crate] = ACTIONS(2959), + [sym_metavariable] = ACTIONS(2957), + [sym__raw_string_literal_start] = ACTIONS(2957), + [sym_float_literal] = ACTIONS(2957), }, [STATE(760)] = { - [sym_empty_statement] = STATE(1314), - [sym_macro_definition] = STATE(1314), - [sym_attribute_item] = STATE(1314), - [sym_inner_attribute_item] = STATE(1314), - [sym_mod_item] = STATE(1314), - [sym_foreign_mod_item] = STATE(1314), - [sym_struct_item] = STATE(1314), - [sym_union_item] = STATE(1314), - [sym_enum_item] = STATE(1314), - [sym_extern_crate_declaration] = STATE(1314), - [sym_const_item] = STATE(1314), - [sym_static_item] = STATE(1314), - [sym_type_item] = STATE(1314), - [sym_function_item] = STATE(1314), - [sym_function_signature_item] = STATE(1314), - [sym_function_modifiers] = STATE(3640), - [sym_impl_item] = STATE(1314), - [sym_trait_item] = STATE(1314), - [sym_associated_type] = STATE(1314), - [sym_let_declaration] = STATE(1314), - [sym_use_declaration] = STATE(1314), - [sym_extern_modifier] = STATE(2199), - [sym_visibility_modifier] = STATE(1957), - [sym_bracketed_type] = STATE(3370), - [sym_generic_type_with_turbofish] = STATE(3395), - [sym_macro_invocation] = STATE(1314), - [sym_scoped_identifier] = STATE(3297), [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), - [aux_sym_declaration_list_repeat1] = STATE(760), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(2879), - [anon_sym_SEMI] = ACTIONS(2882), - [anon_sym_macro_rules_BANG] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym_LT] = ACTIONS(2893), - [anon_sym_COLON_COLON] = ACTIONS(2896), - [anon_sym_POUND] = ACTIONS(2899), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2905), - [anon_sym_default] = ACTIONS(2908), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2914), - [anon_sym_gen] = ACTIONS(2917), - [anon_sym_impl] = ACTIONS(2920), - [anon_sym_let] = ACTIONS(2923), - [anon_sym_mod] = ACTIONS(2926), - [anon_sym_pub] = ACTIONS(2929), - [anon_sym_static] = ACTIONS(2932), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_trait] = ACTIONS(2938), - [anon_sym_type] = ACTIONS(2941), - [anon_sym_union] = ACTIONS(2944), - [anon_sym_unsafe] = ACTIONS(2947), - [anon_sym_use] = ACTIONS(2950), - [anon_sym_extern] = ACTIONS(2953), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2956), - [sym_super] = ACTIONS(2956), - [sym_crate] = ACTIONS(2959), - [sym_metavariable] = ACTIONS(2962), + [ts_builtin_sym_end] = ACTIONS(2961), + [sym_identifier] = ACTIONS(2963), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_macro_rules_BANG] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_RBRACE] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_u8] = ACTIONS(2963), + [anon_sym_i8] = ACTIONS(2963), + [anon_sym_u16] = ACTIONS(2963), + [anon_sym_i16] = ACTIONS(2963), + [anon_sym_u32] = ACTIONS(2963), + [anon_sym_i32] = ACTIONS(2963), + [anon_sym_u64] = ACTIONS(2963), + [anon_sym_i64] = ACTIONS(2963), + [anon_sym_u128] = ACTIONS(2963), + [anon_sym_i128] = ACTIONS(2963), + [anon_sym_isize] = ACTIONS(2963), + [anon_sym_usize] = ACTIONS(2963), + [anon_sym_f32] = ACTIONS(2963), + [anon_sym_f64] = ACTIONS(2963), + [anon_sym_bool] = ACTIONS(2963), + [anon_sym_str] = ACTIONS(2963), + [anon_sym_char] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_DOT_DOT] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_POUND] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2963), + [anon_sym_async] = ACTIONS(2963), + [anon_sym_break] = ACTIONS(2963), + [anon_sym_const] = ACTIONS(2963), + [anon_sym_continue] = ACTIONS(2963), + [anon_sym_default] = ACTIONS(2963), + [anon_sym_enum] = ACTIONS(2963), + [anon_sym_fn] = ACTIONS(2963), + [anon_sym_for] = ACTIONS(2963), + [anon_sym_gen] = ACTIONS(2963), + [anon_sym_if] = ACTIONS(2963), + [anon_sym_impl] = ACTIONS(2963), + [anon_sym_let] = ACTIONS(2963), + [anon_sym_loop] = ACTIONS(2963), + [anon_sym_match] = ACTIONS(2963), + [anon_sym_mod] = ACTIONS(2963), + [anon_sym_pub] = ACTIONS(2963), + [anon_sym_return] = ACTIONS(2963), + [anon_sym_static] = ACTIONS(2963), + [anon_sym_struct] = ACTIONS(2963), + [anon_sym_trait] = ACTIONS(2963), + [anon_sym_type] = ACTIONS(2963), + [anon_sym_union] = ACTIONS(2963), + [anon_sym_unsafe] = ACTIONS(2963), + [anon_sym_use] = ACTIONS(2963), + [anon_sym_while] = ACTIONS(2963), + [anon_sym_extern] = ACTIONS(2963), + [anon_sym_yield] = ACTIONS(2963), + [anon_sym_move] = ACTIONS(2963), + [anon_sym_try] = ACTIONS(2963), + [sym_integer_literal] = ACTIONS(2961), + [aux_sym_string_literal_token1] = ACTIONS(2961), + [sym_char_literal] = ACTIONS(2961), + [anon_sym_true] = ACTIONS(2963), + [anon_sym_false] = ACTIONS(2963), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2963), + [sym_super] = ACTIONS(2963), + [sym_crate] = ACTIONS(2963), + [sym_metavariable] = ACTIONS(2961), + [sym__raw_string_literal_start] = ACTIONS(2961), + [sym_float_literal] = ACTIONS(2961), }, [STATE(761)] = { [sym_line_comment] = STATE(761), @@ -93086,117 +93014,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2989), }, [STATE(768)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym_closure_expression] = STATE(3332), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2821), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_attribute_item] = STATE(1469), + [sym_inner_attribute_item] = STATE(1469), + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_match_pattern] = STATE(3457), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2837), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(769)] = { - [sym_attribute_item] = STATE(1423), - [sym_inner_attribute_item] = STATE(1423), - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_match_pattern] = STATE(3389), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2885), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), - [sym_line_comment] = STATE(769), - [sym_block_comment] = STATE(769), - [aux_sym_match_arm_repeat1] = STATE(1045), + [aux_sym_match_arm_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1649), [anon_sym_LBRACK] = ACTIONS(1651), @@ -93245,118 +93093,358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, + [STATE(769)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym_closure_expression] = STATE(3052), + [sym_closure_parameters] = STATE(226), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(769), + [sym_block_comment] = STATE(769), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, [STATE(770)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym_closure_expression] = STATE(3332), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2821), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym_closure_expression] = STATE(3052), + [sym_closure_parameters] = STATE(226), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), [anon_sym_RPAREN] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(771)] = { - [sym_attribute_item] = STATE(1423), - [sym_inner_attribute_item] = STATE(1423), - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_match_pattern] = STATE(3434), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2885), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym_closure_expression] = STATE(3052), + [sym_closure_parameters] = STATE(226), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [aux_sym_match_arm_repeat1] = STATE(1045), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(772)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym_closure_expression] = STATE(3052), + [sym_closure_parameters] = STATE(226), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(772), + [sym_block_comment] = STATE(772), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(773)] = { + [sym_attribute_item] = STATE(1469), + [sym_inner_attribute_item] = STATE(1469), + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_match_pattern] = STATE(3331), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2837), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), + [sym_line_comment] = STATE(773), + [sym_block_comment] = STATE(773), + [aux_sym_match_arm_repeat1] = STATE(1049), [sym_identifier] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1649), [anon_sym_LBRACK] = ACTIONS(1651), @@ -93405,280 +93493,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, - [STATE(772)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym_closure_expression] = STATE(3332), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2821), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(772), - [sym_block_comment] = STATE(772), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(773)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym_closure_expression] = STATE(3332), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2821), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(773), - [sym_block_comment] = STATE(773), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, [STATE(774)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym_closure_expression] = STATE(3332), - [sym_closure_parameters] = STATE(239), - [sym__pattern] = STATE(2821), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym_closure_expression] = STATE(3052), + [sym_closure_parameters] = STATE(226), + [sym__pattern] = STATE(2875), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(775)] = { - [sym_attribute_item] = STATE(1448), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym_visibility_modifier] = STATE(982), - [sym__type] = STATE(2634), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_attribute_item] = STATE(1382), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym_visibility_modifier] = STATE(906), + [sym__type] = STATE(2568), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [aux_sym_enum_variant_list_repeat1] = STATE(806), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_enum_variant_list_repeat1] = STATE(791), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_RPAREN] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -93696,25 +93624,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COMMA] = ACTIONS(3005), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_POUND] = ACTIONS(3007), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -93723,42 +93651,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(776)] = { - [sym_attribute_item] = STATE(1448), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_const_parameter] = STATE(3005), - [sym_constrained_type_parameter] = STATE(2747), - [sym_optional_type_parameter] = STATE(3005), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3009), - [sym_bracketed_type] = STATE(3378), - [sym_qualified_type] = STATE(3381), - [sym_lifetime] = STATE(2412), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_attribute_item] = STATE(1382), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_const_parameter] = STATE(2996), + [sym_type_parameter] = STATE(2996), + [sym_lifetime_parameter] = STATE(2996), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2985), + [sym_bracketed_type] = STATE(3336), + [sym_qualified_type] = STATE(3427), + [sym_lifetime] = STATE(2490), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [aux_sym_enum_variant_list_repeat1] = STATE(2076), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_enum_variant_list_repeat1] = STATE(2061), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3015), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -93776,23 +93704,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_POUND] = ACTIONS(3007), [anon_sym_SQUOTE] = ACTIONS(3017), - [anon_sym_async] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), [anon_sym_const] = ACTIONS(3019), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -93801,117 +93729,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(3021), }, [STATE(777)] = { - [sym_attribute_item] = STATE(1448), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), + [sym_attribute_item] = STATE(1382), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), [sym_visibility_modifier] = STATE(926), - [sym__type] = STATE(2789), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym__type] = STATE(2957), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), - [aux_sym_enum_variant_list_repeat1] = STATE(795), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_enum_variant_list_repeat1] = STATE(800), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_RPAREN] = ACTIONS(3023), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_pub] = ACTIONS(3011), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3013), - [sym_metavariable] = ACTIONS(1621), - }, - [STATE(778)] = { - [sym_attribute_item] = STATE(1448), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym_visibility_modifier] = STATE(926), - [sym__type] = STATE(2789), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(778), - [sym_block_comment] = STATE(778), - [aux_sym_enum_variant_list_repeat1] = STATE(795), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -93929,24 +93780,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_POUND] = ACTIONS(3007), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -93954,118 +93805,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(3013), [sym_metavariable] = ACTIONS(1621), }, - [STATE(779)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2632), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [STATE(778)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2509), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(779), - [sym_block_comment] = STATE(779), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_RBRACK] = ACTIONS(1545), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(778), + [sym_block_comment] = STATE(778), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(1551), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(3027), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, - [STATE(780)] = { - [sym_attribute_item] = STATE(1448), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), + [STATE(779)] = { + [sym_attribute_item] = STATE(1382), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), [sym_visibility_modifier] = STATE(926), - [sym__type] = STATE(2789), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(780), - [sym_block_comment] = STATE(780), - [aux_sym_enum_variant_list_repeat1] = STATE(795), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym__type] = STATE(2957), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(779), + [sym_block_comment] = STATE(779), + [aux_sym_enum_variant_list_repeat1] = STATE(800), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3027), + [anon_sym_RPAREN] = ACTIONS(3029), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -94083,24 +93934,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_POUND] = ACTIONS(3007), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -94108,41 +93959,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(3013), [sym_metavariable] = ACTIONS(1621), }, - [STATE(781)] = { - [sym_attribute_item] = STATE(1448), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), + [STATE(780)] = { + [sym_attribute_item] = STATE(1382), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), [sym_visibility_modifier] = STATE(926), - [sym__type] = STATE(2789), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(781), - [sym_block_comment] = STATE(781), - [aux_sym_enum_variant_list_repeat1] = STATE(795), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym__type] = STATE(2957), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(780), + [sym_block_comment] = STATE(780), + [aux_sym_enum_variant_list_repeat1] = STATE(800), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3029), + [anon_sym_RPAREN] = ACTIONS(3031), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -94160,24 +94011,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_POUND] = ACTIONS(3007), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -94185,349 +94036,426 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(3013), [sym_metavariable] = ACTIONS(1621), }, + [STATE(781)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2688), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(781), + [sym_block_comment] = STATE(781), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(3033), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(3035), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, [STATE(782)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2683), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2671), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(3039), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(783)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2567), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2638), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_RBRACK] = ACTIONS(3035), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_RBRACK] = ACTIONS(1545), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(784)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2664), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2689), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_RBRACK] = ACTIONS(3041), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(3043), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(785)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2712), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_attribute_item] = STATE(1382), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym_visibility_modifier] = STATE(926), + [sym__type] = STATE(2957), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [aux_sym_enum_variant_list_repeat1] = STATE(800), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_pub] = ACTIONS(3011), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(3013), + [sym_metavariable] = ACTIONS(1621), }, [STATE(786)] = { - [sym_attribute_item] = STATE(1448), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), + [sym_attribute_item] = STATE(1382), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), [sym_visibility_modifier] = STATE(926), - [sym__type] = STATE(2789), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym__type] = STATE(2957), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [aux_sym_enum_variant_list_repeat1] = STATE(795), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_enum_variant_list_repeat1] = STATE(800), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_RPAREN] = ACTIONS(3047), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -94545,24 +94473,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_POUND] = ACTIONS(3007), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -94571,40 +94499,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(787)] = { - [sym_attribute_item] = STATE(1448), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), + [sym_attribute_item] = STATE(1382), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), [sym_visibility_modifier] = STATE(926), - [sym__type] = STATE(2789), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym__type] = STATE(2957), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [aux_sym_enum_variant_list_repeat1] = STATE(795), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_enum_variant_list_repeat1] = STATE(800), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_RPAREN] = ACTIONS(3049), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -94622,24 +94550,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_POUND] = ACTIONS(3007), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -94648,572 +94576,800 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(788)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2711), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2508), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), [anon_sym_RPAREN] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(789)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2644), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2598), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_RBRACK] = ACTIONS(3055), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(790)] = { - [sym_parameter] = STATE(2830), - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2594), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_parameter] = STATE(3214), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2971), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(3057), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(3059), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3061), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(3057), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3059), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(791)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2644), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_attribute_item] = STATE(1382), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym_visibility_modifier] = STATE(900), + [sym__type] = STATE(2710), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_RBRACK] = ACTIONS(3063), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [aux_sym_enum_variant_list_repeat1] = STATE(1062), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_pub] = ACTIONS(3011), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(3013), + [sym_metavariable] = ACTIONS(1621), }, [STATE(792)] = { - [sym_parameter] = STATE(2830), - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2473), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2598), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(3057), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_RBRACK] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(3059), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3061), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(793)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2644), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2598), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(3063), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(794)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2644), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2598), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_RBRACK] = ACTIONS(3067), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(795)] = { - [sym_attribute_item] = STATE(1448), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym_visibility_modifier] = STATE(891), - [sym__type] = STATE(2846), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_parameter] = STATE(2792), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2473), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [aux_sym_enum_variant_list_repeat1] = STATE(1062), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(3057), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3059), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(796)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2598), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(796), + [sym_block_comment] = STATE(796), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(797)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2598), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(797), + [sym_block_comment] = STATE(797), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(3071), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(798)] = { + [sym_attribute_item] = STATE(1382), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym_visibility_modifier] = STATE(926), + [sym__type] = STATE(2957), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(798), + [sym_block_comment] = STATE(798), + [aux_sym_enum_variant_list_repeat1] = STATE(800), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -95231,24 +95387,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_POUND] = ACTIONS(3007), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -95256,420 +95412,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(3013), [sym_metavariable] = ACTIONS(1621), }, - [STATE(796)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2644), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(796), - [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(797)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2644), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(797), - [sym_block_comment] = STATE(797), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(798)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2644), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [STATE(799)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2598), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(798), - [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(799), + [sym_block_comment] = STATE(799), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(799)] = { - [sym_parameter] = STATE(3127), - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2779), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(799), - [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(3059), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3061), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(800)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2644), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_attribute_item] = STATE(1382), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym_visibility_modifier] = STATE(984), + [sym__type] = STATE(2892), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(3075), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(801)] = { - [sym_attribute_item] = STATE(1448), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym_visibility_modifier] = STATE(926), - [sym__type] = STATE(2789), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(801), - [sym_block_comment] = STATE(801), - [aux_sym_enum_variant_list_repeat1] = STATE(795), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_enum_variant_list_repeat1] = STATE(1062), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -95687,24 +95539,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_POUND] = ACTIONS(3007), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_pub] = ACTIONS(3011), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -95712,488 +95564,564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(3013), [sym_metavariable] = ACTIONS(1621), }, + [STATE(801)] = { + [sym_parameter] = STATE(2792), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2571), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(801), + [sym_block_comment] = STATE(801), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(3057), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3059), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, [STATE(802)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2644), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2598), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_RBRACK] = ACTIONS(3075), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(803)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2644), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2598), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(804)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2570), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2598), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(805)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2644), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2650), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_RBRACK] = ACTIONS(3085), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3081), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(806)] = { - [sym_attribute_item] = STATE(1448), - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym_visibility_modifier] = STATE(927), - [sym__type] = STATE(2687), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2598), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [aux_sym_enum_variant_list_repeat1] = STATE(1062), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1605), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_pub] = ACTIONS(3011), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3013), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(807)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2644), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2598), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), [anon_sym_RBRACK] = ACTIONS(3087), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(808)] = { - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2981), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2804), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), [sym_identifier] = ACTIONS(1647), @@ -96244,333 +96172,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1679), }, [STATE(809)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2644), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2765), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(810)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3343), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(810), - [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(811)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3001), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(811), - [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(812)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2147), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(812), - [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(813)] = { - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2881), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), - [sym_line_comment] = STATE(813), - [sym_block_comment] = STATE(813), [sym_identifier] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1649), [anon_sym_LBRACK] = ACTIONS(1651), @@ -96603,7 +96231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_gen] = ACTIONS(1673), [anon_sym_union] = ACTIONS(1673), [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(3089), [sym_integer_literal] = ACTIONS(1679), [aux_sym_string_literal_token1] = ACTIONS(1681), [sym_char_literal] = ACTIONS(1679), @@ -96618,34 +96246,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, - [STATE(814)] = { - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2968), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), - [sym_line_comment] = STATE(814), - [sym_block_comment] = STATE(814), + [STATE(810)] = { + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2783), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), + [sym_line_comment] = STATE(810), + [sym_block_comment] = STATE(810), [sym_identifier] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1649), [anon_sym_LBRACK] = ACTIONS(1651), @@ -96693,559 +96321,484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, - [STATE(815)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2449), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(815), - [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(3089), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(816)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3087), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [STATE(811)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2598), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(816), - [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(811), + [sym_block_comment] = STATE(811), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, - [STATE(817)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2497), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [STATE(812)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2098), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(817), - [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(812), + [sym_block_comment] = STATE(812), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, - [STATE(818)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2670), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [STATE(813)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2836), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(818), - [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(813), + [sym_block_comment] = STATE(813), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, - [STATE(819)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2119), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [STATE(814)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3080), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(819), - [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(814), + [sym_block_comment] = STATE(814), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(3093), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, - [STATE(820)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2146), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [STATE(815)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3201), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(820), - [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(815), + [sym_block_comment] = STATE(815), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, - [STATE(821)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2122), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(821), - [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [STATE(816)] = { + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2776), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), + [sym_line_comment] = STATE(816), + [sym_block_comment] = STATE(816), + [sym_identifier] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1649), + [anon_sym_LBRACK] = ACTIONS(1651), + [anon_sym_u8] = ACTIONS(1655), + [anon_sym_i8] = ACTIONS(1655), + [anon_sym_u16] = ACTIONS(1655), + [anon_sym_i16] = ACTIONS(1655), + [anon_sym_u32] = ACTIONS(1655), + [anon_sym_i32] = ACTIONS(1655), + [anon_sym_u64] = ACTIONS(1655), + [anon_sym_i64] = ACTIONS(1655), + [anon_sym_u128] = ACTIONS(1655), + [anon_sym_i128] = ACTIONS(1655), + [anon_sym_isize] = ACTIONS(1655), + [anon_sym_usize] = ACTIONS(1655), + [anon_sym_f32] = ACTIONS(1655), + [anon_sym_f64] = ACTIONS(1655), + [anon_sym_bool] = ACTIONS(1655), + [anon_sym_str] = ACTIONS(1655), + [anon_sym_char] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(1659), + [anon_sym_PIPE] = ACTIONS(1661), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym__] = ACTIONS(1663), + [anon_sym_DOT_DOT] = ACTIONS(1665), + [anon_sym_COLON_COLON] = ACTIONS(1667), + [anon_sym_const] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1673), + [anon_sym_gen] = ACTIONS(1673), + [anon_sym_union] = ACTIONS(1673), + [anon_sym_ref] = ACTIONS(1675), + [sym_mutable_specifier] = ACTIONS(1677), + [sym_integer_literal] = ACTIONS(1679), + [aux_sym_string_literal_token1] = ACTIONS(1681), + [sym_char_literal] = ACTIONS(1679), + [anon_sym_true] = ACTIONS(1683), + [anon_sym_false] = ACTIONS(1683), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(1685), + [sym_super] = ACTIONS(1685), + [sym_crate] = ACTIONS(1685), + [sym_metavariable] = ACTIONS(1687), + [sym__raw_string_literal_start] = ACTIONS(1689), + [sym_float_literal] = ACTIONS(1679), }, - [STATE(822)] = { - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2963), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), - [sym_line_comment] = STATE(822), - [sym_block_comment] = STATE(822), + [STATE(817)] = { + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2893), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), + [sym_line_comment] = STATE(817), + [sym_block_comment] = STATE(817), [sym_identifier] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1649), [anon_sym_LBRACK] = ACTIONS(1651), @@ -97278,7 +96831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_gen] = ACTIONS(1673), [anon_sym_union] = ACTIONS(1673), [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(3095), + [sym_mutable_specifier] = ACTIONS(1677), [sym_integer_literal] = ACTIONS(1679), [aux_sym_string_literal_token1] = ACTIONS(1681), [sym_char_literal] = ACTIONS(1679), @@ -97293,259 +96846,784 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, + [STATE(818)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2135), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(818), + [sym_block_comment] = STATE(818), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(819)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2109), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(819), + [sym_block_comment] = STATE(819), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(3091), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(820)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2116), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(820), + [sym_block_comment] = STATE(820), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(821)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3305), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(821), + [sym_block_comment] = STATE(821), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(822)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2120), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(822), + [sym_block_comment] = STATE(822), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, [STATE(823)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2855), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2423), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(3093), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(824)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2501), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2522), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(3097), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(3095), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(825)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3136), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3276), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(826)] = { - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2971), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2430), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(827)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3306), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(827), + [sym_block_comment] = STATE(827), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(828)] = { + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2833), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), + [sym_line_comment] = STATE(828), + [sym_block_comment] = STATE(828), [sym_identifier] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1649), [anon_sym_LBRACK] = ACTIONS(1651), @@ -97593,409 +97671,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, - [STATE(827)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2120), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(827), - [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(828)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2105), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), - [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(828), - [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, [STATE(829)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2116), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2987), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(830)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3253), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2424), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(3097), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(831)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(2470), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3232), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(832)] = { - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(2964), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2496), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), + [sym__literal_pattern] = STATE(2030), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), + }, + [STATE(833)] = { + [sym_bracketed_type] = STATE(3532), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3258), + [sym_macro_invocation] = STATE(3007), + [sym_scoped_identifier] = STATE(2165), + [sym_scoped_type_identifier] = STATE(2954), + [sym_const_block] = STATE(3007), + [sym__pattern] = STATE(2796), + [sym_generic_pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(3007), + [sym_slice_pattern] = STATE(3007), + [sym_tuple_struct_pattern] = STATE(3007), + [sym_struct_pattern] = STATE(3007), + [sym_remaining_field_pattern] = STATE(3007), + [sym_mut_pattern] = STATE(3007), + [sym_range_pattern] = STATE(3007), + [sym_ref_pattern] = STATE(3007), + [sym_captured_pattern] = STATE(3007), + [sym_reference_pattern] = STATE(3007), + [sym_or_pattern] = STATE(3007), + [sym__literal_pattern] = STATE(2329), + [sym_negative_literal] = STATE(2361), + [sym_string_literal] = STATE(2361), + [sym_raw_string_literal] = STATE(2361), + [sym_boolean_literal] = STATE(2361), + [sym_line_comment] = STATE(833), + [sym_block_comment] = STATE(833), [sym_identifier] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1649), [anon_sym_LBRACK] = ACTIONS(1651), @@ -98043,638 +98046,563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1689), [sym_float_literal] = ACTIONS(1679), }, - [STATE(833)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3050), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [STATE(834)] = { + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2941), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), - [sym_line_comment] = STATE(833), - [sym_block_comment] = STATE(833), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), + [sym_line_comment] = STATE(834), + [sym_block_comment] = STATE(834), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), - }, - [STATE(834)] = { - [sym_bracketed_type] = STATE(3573), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3305), - [sym_macro_invocation] = STATE(2868), - [sym_scoped_identifier] = STATE(2163), - [sym_scoped_type_identifier] = STATE(2926), - [sym_const_block] = STATE(2868), - [sym__pattern] = STATE(3003), - [sym_generic_pattern] = STATE(2868), - [sym_tuple_pattern] = STATE(2868), - [sym_slice_pattern] = STATE(2868), - [sym_tuple_struct_pattern] = STATE(2868), - [sym_struct_pattern] = STATE(2868), - [sym_remaining_field_pattern] = STATE(2868), - [sym_mut_pattern] = STATE(2868), - [sym_range_pattern] = STATE(2868), - [sym_ref_pattern] = STATE(2868), - [sym_captured_pattern] = STATE(2868), - [sym_reference_pattern] = STATE(2868), - [sym_or_pattern] = STATE(2868), - [sym__literal_pattern] = STATE(2347), - [sym_negative_literal] = STATE(2344), - [sym_string_literal] = STATE(2344), - [sym_raw_string_literal] = STATE(2344), - [sym_boolean_literal] = STATE(2344), - [sym_line_comment] = STATE(834), - [sym_block_comment] = STATE(834), - [sym_identifier] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_LBRACK] = ACTIONS(1651), - [anon_sym_u8] = ACTIONS(1655), - [anon_sym_i8] = ACTIONS(1655), - [anon_sym_u16] = ACTIONS(1655), - [anon_sym_i16] = ACTIONS(1655), - [anon_sym_u32] = ACTIONS(1655), - [anon_sym_i32] = ACTIONS(1655), - [anon_sym_u64] = ACTIONS(1655), - [anon_sym_i64] = ACTIONS(1655), - [anon_sym_u128] = ACTIONS(1655), - [anon_sym_i128] = ACTIONS(1655), - [anon_sym_isize] = ACTIONS(1655), - [anon_sym_usize] = ACTIONS(1655), - [anon_sym_f32] = ACTIONS(1655), - [anon_sym_f64] = ACTIONS(1655), - [anon_sym_bool] = ACTIONS(1655), - [anon_sym_str] = ACTIONS(1655), - [anon_sym_char] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1663), - [anon_sym_DOT_DOT] = ACTIONS(1665), - [anon_sym_COLON_COLON] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1673), - [anon_sym_gen] = ACTIONS(1673), - [anon_sym_union] = ACTIONS(1673), - [anon_sym_ref] = ACTIONS(1675), - [sym_mutable_specifier] = ACTIONS(1677), - [sym_integer_literal] = ACTIONS(1679), - [aux_sym_string_literal_token1] = ACTIONS(1681), - [sym_char_literal] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(1683), - [anon_sym_false] = ACTIONS(1683), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1685), - [sym_super] = ACTIONS(1685), - [sym_crate] = ACTIONS(1685), - [sym_metavariable] = ACTIONS(1687), - [sym__raw_string_literal_start] = ACTIONS(1689), - [sym_float_literal] = ACTIONS(1679), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(835)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3326), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2099), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(836)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3342), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3281), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(837)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3346), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3299), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(838)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3347), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3303), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(839)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3348), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(3304), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(840)] = { - [sym_bracketed_type] = STATE(3591), - [sym_generic_type] = STATE(3596), - [sym_generic_type_with_turbofish] = STATE(3144), - [sym_macro_invocation] = STATE(2135), - [sym_scoped_identifier] = STATE(1981), - [sym_scoped_type_identifier] = STATE(2852), - [sym_const_block] = STATE(2135), - [sym__pattern] = STATE(3349), - [sym_generic_pattern] = STATE(2135), - [sym_tuple_pattern] = STATE(2135), - [sym_slice_pattern] = STATE(2135), - [sym_tuple_struct_pattern] = STATE(2135), - [sym_struct_pattern] = STATE(2135), - [sym_remaining_field_pattern] = STATE(2135), - [sym_mut_pattern] = STATE(2135), - [sym_range_pattern] = STATE(2135), - [sym_ref_pattern] = STATE(2135), - [sym_captured_pattern] = STATE(2135), - [sym_reference_pattern] = STATE(2135), - [sym_or_pattern] = STATE(2135), + [sym_bracketed_type] = STATE(3360), + [sym_generic_type] = STATE(3335), + [sym_generic_type_with_turbofish] = STATE(3145), + [sym_macro_invocation] = STATE(2131), + [sym_scoped_identifier] = STATE(1979), + [sym_scoped_type_identifier] = STATE(2864), + [sym_const_block] = STATE(2131), + [sym__pattern] = STATE(2115), + [sym_generic_pattern] = STATE(2131), + [sym_tuple_pattern] = STATE(2131), + [sym_slice_pattern] = STATE(2131), + [sym_tuple_struct_pattern] = STATE(2131), + [sym_struct_pattern] = STATE(2131), + [sym_remaining_field_pattern] = STATE(2131), + [sym_mut_pattern] = STATE(2131), + [sym_range_pattern] = STATE(2131), + [sym_ref_pattern] = STATE(2131), + [sym_captured_pattern] = STATE(2131), + [sym_reference_pattern] = STATE(2131), + [sym_or_pattern] = STATE(2131), [sym__literal_pattern] = STATE(2030), - [sym_negative_literal] = STATE(2027), - [sym_string_literal] = STATE(2027), - [sym_raw_string_literal] = STATE(2027), - [sym_boolean_literal] = STATE(2027), + [sym_negative_literal] = STATE(2031), + [sym_string_literal] = STATE(2031), + [sym_raw_string_literal] = STATE(2031), + [sym_boolean_literal] = STATE(2031), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym_identifier] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1271), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(1277), + [sym_identifier] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2407), + [anon_sym_u8] = ACTIONS(2409), + [anon_sym_i8] = ACTIONS(2409), + [anon_sym_u16] = ACTIONS(2409), + [anon_sym_i16] = ACTIONS(2409), + [anon_sym_u32] = ACTIONS(2409), + [anon_sym_i32] = ACTIONS(2409), + [anon_sym_u64] = ACTIONS(2409), + [anon_sym_i64] = ACTIONS(2409), + [anon_sym_u128] = ACTIONS(2409), + [anon_sym_i128] = ACTIONS(2409), + [anon_sym_isize] = ACTIONS(2409), + [anon_sym_usize] = ACTIONS(2409), + [anon_sym_f32] = ACTIONS(2409), + [anon_sym_f64] = ACTIONS(2409), + [anon_sym_bool] = ACTIONS(2409), + [anon_sym_str] = ACTIONS(2409), + [anon_sym_char] = ACTIONS(2409), + [anon_sym_DASH] = ACTIONS(1275), + [anon_sym_AMP] = ACTIONS(2411), + [anon_sym_PIPE] = ACTIONS(1281), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_gen] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_ref] = ACTIONS(1309), + [anon_sym_COLON_COLON] = ACTIONS(2413), + [anon_sym_const] = ACTIONS(2415), + [anon_sym_default] = ACTIONS(2417), + [anon_sym_gen] = ACTIONS(2417), + [anon_sym_union] = ACTIONS(2417), + [anon_sym_ref] = ACTIONS(1313), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1315), - [aux_sym_string_literal_token1] = ACTIONS(1317), - [sym_char_literal] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1319), - [anon_sym_false] = ACTIONS(1319), + [sym_integer_literal] = ACTIONS(1319), + [aux_sym_string_literal_token1] = ACTIONS(1321), + [sym_char_literal] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(1323), + [anon_sym_false] = ACTIONS(1323), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(1327), - [sym_float_literal] = ACTIONS(1315), + [sym_self] = ACTIONS(2419), + [sym_super] = ACTIONS(2419), + [sym_crate] = ACTIONS(2419), + [sym_metavariable] = ACTIONS(2421), + [sym__raw_string_literal_start] = ACTIONS(1331), + [sym_float_literal] = ACTIONS(1319), }, [STATE(841)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1994), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1984), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98692,62 +98620,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [sym_mutable_specifier] = ACTIONS(3101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), + [sym_self] = ACTIONS(3103), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, [STATE(842)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1994), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1687), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [sym_mutable_specifier] = ACTIONS(3135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), + }, + [STATE(843)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(3282), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(843), + [sym_block_comment] = STATE(843), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98765,135 +98766,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(3103), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(3141), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3105), + [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(843)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1694), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(843), - [sym_block_comment] = STATE(843), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [sym_mutable_specifier] = ACTIONS(3137), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), - }, [STATE(844)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3151), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1403), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [sym_mutable_specifier] = ACTIONS(3173), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), + }, + [STATE(845)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1984), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(845), + [sym_block_comment] = STATE(845), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98911,23 +98912,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(3143), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(3179), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -98935,111 +98936,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(845)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1457), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(845), - [sym_block_comment] = STATE(845), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [sym_mutable_specifier] = ACTIONS(3175), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), - }, [STATE(846)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_higher_ranked_trait_bound] = STATE(2237), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2210), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2239), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3181), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99057,22 +98985,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(3181), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99081,36 +99009,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(847)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2559), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_higher_ranked_trait_bound] = STATE(2237), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2210), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2187), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99128,23 +99057,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(3181), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99153,37 +99081,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(848)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_type_parameters] = STATE(967), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2388), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(2394), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2200), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2705), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3185), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3183), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99201,22 +99129,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99225,37 +99153,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(849)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2922), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3191), + [anon_sym_RPAREN] = ACTIONS(3185), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99273,22 +99201,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99297,37 +99225,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(850)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3009), - [sym_bracketed_type] = STATE(3378), - [sym_qualified_type] = STATE(3381), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(3245), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(843), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99345,22 +99272,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(3187), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99369,37 +99297,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(851)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2603), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2922), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_RPAREN] = ACTIONS(3189), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99417,22 +99345,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99441,36 +99369,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(852)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3090), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(844), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_type_parameters] = STATE(890), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2343), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(2307), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(2184), [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3001), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3191), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99488,23 +99417,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(3193), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(3195), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(3195), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99513,37 +99441,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(853)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_type_parameters] = STATE(968), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2382), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(2385), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2161), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2556), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3197), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99561,22 +99489,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3199), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99585,37 +99513,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(854)] = { - [sym_function_modifiers] = STATE(3549), - [sym_higher_ranked_trait_bound] = STATE(2244), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2245), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2246), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2681), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(855)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2985), + [sym_bracketed_type] = STATE(3336), + [sym_qualified_type] = STATE(3427), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(855), + [sym_block_comment] = STATE(855), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(856)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2922), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(856), + [sym_block_comment] = STATE(856), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [STATE(857)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2922), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(857), + [sym_block_comment] = STATE(857), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99633,22 +99777,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(3201), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99656,110 +99800,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(855)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2546), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(855), - [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), + [STATE(858)] = { + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1408), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(844), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), + [sym_line_comment] = STATE(858), + [sym_block_comment] = STATE(858), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [sym_mutable_specifier] = ACTIONS(3205), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), }, - [STATE(856)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(856), - [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3001), + [STATE(859)] = { + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1667), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(842), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), + [sym_line_comment] = STATE(859), + [sym_block_comment] = STATE(859), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [sym_mutable_specifier] = ACTIONS(3207), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), + }, + [STATE(860)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_type_parameters] = STATE(939), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2310), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(2370), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(2169), + [sym_line_comment] = STATE(860), + [sym_block_comment] = STATE(860), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3209), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3205), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99777,22 +99993,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(3211), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(3195), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99800,38 +100016,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(857)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(857), - [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(861)] = { + [sym_function_modifiers] = STATE(3417), + [sym_higher_ranked_trait_bound] = STATE(2178), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2179), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2180), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(861), + [sym_block_comment] = STATE(861), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3207), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99849,22 +100065,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(3181), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -99872,109 +100088,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(858)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1496), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(845), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(858), - [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [sym_mutable_specifier] = ACTIONS(3209), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), - }, - [STATE(859)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2665), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(859), - [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(862)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2922), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(862), + [sym_block_comment] = STATE(862), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3213), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99992,23 +100137,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3211), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100016,110 +100160,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(860)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1771), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(843), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(860), - [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [sym_mutable_specifier] = ACTIONS(3213), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), - }, - [STATE(861)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_type_parameters] = STATE(972), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2356), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(2406), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2186), - [sym_line_comment] = STATE(861), - [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(863)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_type_parameters] = STATE(1002), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2392), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(2393), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(2162), + [sym_line_comment] = STATE(863), + [sym_block_comment] = STATE(863), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3215), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100139,20 +100211,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_char] = ACTIONS(1603), [anon_sym_BANG] = ACTIONS(3217), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3195), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100160,38 +100232,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(862)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2731), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(862), - [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(864)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(864), + [sym_block_comment] = STATE(864), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3219), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100209,22 +100280,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3219), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100232,38 +100304,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(863)] = { - [sym_function_modifiers] = STATE(3549), - [sym_higher_ranked_trait_bound] = STATE(2244), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2247), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2246), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(863), - [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(865)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2922), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(865), + [sym_block_comment] = STATE(865), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3221), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100281,22 +100353,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(3201), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100304,38 +100376,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(864)] = { - [sym_function_modifiers] = STATE(3549), - [sym_higher_ranked_trait_bound] = STATE(2181), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2185), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2188), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(864), - [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(866)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2593), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(866), + [sym_block_comment] = STATE(866), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3223), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100353,22 +100425,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(3201), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100376,38 +100448,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(865)] = { - [sym_function_modifiers] = STATE(3549), - [sym_higher_ranked_trait_bound] = STATE(2244), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2247), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2248), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(865), - [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(867)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(845), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(867), + [sym_block_comment] = STATE(867), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100425,22 +100496,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(3201), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), + [sym_mutable_specifier] = ACTIONS(3225), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100448,38 +100520,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(866)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(866), - [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3001), + [STATE(868)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_type_parameters] = STATE(955), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2321), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(2378), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(2174), + [sym_line_comment] = STATE(868), + [sym_block_comment] = STATE(868), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3227), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3221), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100497,22 +100569,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(3229), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(3195), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100520,37 +100592,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(867)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2012), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(841), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(867), - [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(869)] = { + [sym_function_modifiers] = STATE(3417), + [sym_higher_ranked_trait_bound] = STATE(2237), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2238), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(2239), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(869), + [sym_block_comment] = STATE(869), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100568,23 +100641,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(3181), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), - [sym_mutable_specifier] = ACTIONS(3223), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100592,38 +100664,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(868)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(868), - [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(870)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2208), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(870), + [sym_block_comment] = STATE(870), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3225), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100641,22 +100712,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100664,38 +100735,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(869)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_type_parameters] = STATE(981), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2360), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(2411), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2191), - [sym_line_comment] = STATE(869), - [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3227), + [STATE(871)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2998), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(871), + [sym_block_comment] = STATE(871), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100713,22 +100783,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -100736,250 +100806,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(870)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1792), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(870), - [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), - }, - [STATE(871)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1457), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(871), - [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), - }, [STATE(872)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1387), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2681), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), - }, - [STATE(873)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1997), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(873), - [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -100997,22 +100854,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101020,463 +100877,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(874)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1382), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(874), - [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), - }, - [STATE(875)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1388), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(875), - [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), - }, - [STATE(876)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1385), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(876), - [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), - }, - [STATE(877)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1393), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(877), - [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), - }, - [STATE(878)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1402), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(878), - [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), - }, - [STATE(879)] = { - [sym_line_comment] = STATE(879), - [sym_block_comment] = STATE(879), - [sym_identifier] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(2357), - [anon_sym_RBRACK] = ACTIONS(2357), - [anon_sym_LBRACE] = ACTIONS(2357), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_u8] = ACTIONS(2359), - [anon_sym_i8] = ACTIONS(2359), - [anon_sym_u16] = ACTIONS(2359), - [anon_sym_i16] = ACTIONS(2359), - [anon_sym_u32] = ACTIONS(2359), - [anon_sym_i32] = ACTIONS(2359), - [anon_sym_u64] = ACTIONS(2359), - [anon_sym_i64] = ACTIONS(2359), - [anon_sym_u128] = ACTIONS(2359), - [anon_sym_i128] = ACTIONS(2359), - [anon_sym_isize] = ACTIONS(2359), - [anon_sym_usize] = ACTIONS(2359), - [anon_sym_f32] = ACTIONS(2359), - [anon_sym_f64] = ACTIONS(2359), - [anon_sym_bool] = ACTIONS(2359), - [anon_sym_str] = ACTIONS(2359), - [anon_sym_char] = ACTIONS(2359), - [anon_sym_DASH] = ACTIONS(2357), - [anon_sym_BANG] = ACTIONS(2357), - [anon_sym_AMP] = ACTIONS(2357), - [anon_sym_PIPE] = ACTIONS(2357), - [anon_sym_LT] = ACTIONS(2357), - [anon_sym__] = ACTIONS(2359), - [anon_sym_DOT_DOT] = ACTIONS(2357), - [anon_sym_COMMA] = ACTIONS(2357), - [anon_sym_COLON_COLON] = ACTIONS(2357), - [anon_sym_POUND] = ACTIONS(2357), - [anon_sym_SQUOTE] = ACTIONS(2359), - [anon_sym_async] = ACTIONS(2359), - [anon_sym_break] = ACTIONS(2359), - [anon_sym_const] = ACTIONS(2359), - [anon_sym_continue] = ACTIONS(2359), - [anon_sym_default] = ACTIONS(2359), - [anon_sym_for] = ACTIONS(2359), - [anon_sym_gen] = ACTIONS(2359), - [anon_sym_if] = ACTIONS(2359), - [anon_sym_loop] = ACTIONS(2359), - [anon_sym_match] = ACTIONS(2359), - [anon_sym_return] = ACTIONS(2359), - [anon_sym_static] = ACTIONS(2359), - [anon_sym_union] = ACTIONS(2359), - [anon_sym_unsafe] = ACTIONS(2359), - [anon_sym_while] = ACTIONS(2359), - [anon_sym_ref] = ACTIONS(2359), - [sym_mutable_specifier] = ACTIONS(2359), - [anon_sym_yield] = ACTIONS(2359), - [anon_sym_move] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2359), - [sym_integer_literal] = ACTIONS(2357), - [aux_sym_string_literal_token1] = ACTIONS(2357), - [sym_char_literal] = ACTIONS(2357), - [anon_sym_true] = ACTIONS(2359), - [anon_sym_false] = ACTIONS(2359), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2359), - [sym_super] = ACTIONS(2359), - [sym_crate] = ACTIONS(2359), - [sym_metavariable] = ACTIONS(2357), - [sym__raw_string_literal_start] = ACTIONS(2357), - [sym_float_literal] = ACTIONS(2357), - }, - [STATE(880)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2018), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(880), - [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(873)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2235), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(873), + [sym_block_comment] = STATE(873), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101494,22 +100925,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101517,250 +100948,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(881)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1379), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(881), - [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), - }, - [STATE(882)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1380), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(882), - [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), - }, - [STATE(883)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1383), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(883), - [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), - }, - [STATE(884)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2001), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(884), - [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(874)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2722), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(874), + [sym_block_comment] = STATE(874), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101778,22 +100996,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101801,108 +101019,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(885)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1427), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(885), - [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), + [STATE(875)] = { + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1407), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), + [sym_line_comment] = STATE(875), + [sym_block_comment] = STATE(875), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), }, - [STATE(886)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2017), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(886), - [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(876)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2870), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(876), + [sym_block_comment] = STATE(876), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101920,22 +101138,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -101943,37 +101161,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(887)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2239), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(887), - [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(877)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2491), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(877), + [sym_block_comment] = STATE(877), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101991,22 +101209,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102014,108 +101232,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(888)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2543), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(888), - [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), + [STATE(878)] = { + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1412), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), + [sym_line_comment] = STATE(878), + [sym_block_comment] = STATE(878), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), }, - [STATE(889)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2682), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(889), - [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(879)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1988), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(879), + [sym_block_comment] = STATE(879), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102133,22 +101351,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102156,108 +101374,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(890)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1481), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(890), - [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), - }, - [STATE(891)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2818), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(891), - [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(880)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2418), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(880), + [sym_block_comment] = STATE(880), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102275,22 +101422,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102298,37 +101445,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(892)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2913), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(892), - [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(881)] = { + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1441), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), + [sym_line_comment] = STATE(881), + [sym_block_comment] = STATE(881), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), + }, + [STATE(882)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2009), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(882), + [sym_block_comment] = STATE(882), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102346,22 +101564,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102369,37 +101587,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(893)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1997), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(893), - [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(883)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2524), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(883), + [sym_block_comment] = STATE(883), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102417,60 +101635,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3231), + [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(894)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2231), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(894), - [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(884)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2012), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(884), + [sym_block_comment] = STATE(884), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102488,22 +101706,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102511,37 +101729,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(895)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2020), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(895), - [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(885)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(1996), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(885), + [sym_block_comment] = STATE(885), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102559,22 +101777,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(3017), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102582,37 +101800,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(896)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2013), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(896), - [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(886)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(3279), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(886), + [sym_block_comment] = STATE(886), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102630,22 +101848,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102653,37 +101871,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(897)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2494), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(897), - [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(887)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2676), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(887), + [sym_block_comment] = STATE(887), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102701,22 +101919,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102724,37 +101942,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(898)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2353), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(898), - [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(888)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2212), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(888), + [sym_block_comment] = STATE(888), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102772,22 +101990,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102795,250 +102013,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(899)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1691), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(899), - [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), - }, - [STATE(900)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1694), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(900), - [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), + [STATE(889)] = { + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1419), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), + [sym_line_comment] = STATE(889), + [sym_block_comment] = STATE(889), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), }, - [STATE(901)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1816), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(901), - [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), + [STATE(890)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2340), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(2342), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(2182), + [sym_line_comment] = STATE(890), + [sym_block_comment] = STATE(890), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [STATE(902)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3007), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(902), - [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(891)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2919), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(891), + [sym_block_comment] = STATE(891), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103056,22 +102203,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103079,392 +102226,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(903)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1713), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(903), - [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), - }, - [STATE(904)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1851), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(904), - [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), - }, - [STATE(905)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1715), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(905), - [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), - }, - [STATE(906)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1783), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(906), - [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), - }, - [STATE(907)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1845), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(907), - [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), - }, - [STATE(908)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2354), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(908), - [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(892)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2938), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(892), + [sym_block_comment] = STATE(892), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103482,22 +102274,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103505,250 +102297,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(909)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1736), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(909), - [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), + [STATE(893)] = { + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1421), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), + [sym_line_comment] = STATE(893), + [sym_block_comment] = STATE(893), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), }, - [STATE(910)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1741), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(910), - [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), + [STATE(894)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1986), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(894), + [sym_block_comment] = STATE(894), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [STATE(911)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1660), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(911), - [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), + [STATE(895)] = { + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1734), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), + [sym_line_comment] = STATE(895), + [sym_block_comment] = STATE(895), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), }, - [STATE(912)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2848), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(912), - [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(896)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2547), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(896), + [sym_block_comment] = STATE(896), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103766,22 +102558,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103789,37 +102581,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(913)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2229), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(913), - [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(897)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2593), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(897), + [sym_block_comment] = STATE(897), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103837,22 +102629,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103860,108 +102652,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(914)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1731), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(914), - [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), + [STATE(898)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2695), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(898), + [sym_block_comment] = STATE(898), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1277), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1309), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [STATE(915)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2327), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(915), - [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(899)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2922), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(899), + [sym_block_comment] = STATE(899), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103979,22 +102771,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104002,37 +102794,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(916)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2334), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(916), - [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(900)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2709), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(900), + [sym_block_comment] = STATE(900), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104050,22 +102842,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104073,37 +102865,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(917)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3032), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(917), - [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(901)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2552), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(901), + [sym_block_comment] = STATE(901), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104121,22 +102913,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104144,37 +102936,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(918)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2894), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(918), - [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(902)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2005), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(902), + [sym_block_comment] = STATE(902), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104192,60 +102984,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), + [sym_self] = ACTIONS(3235), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(919)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2393), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(919), - [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(903)] = { + [sym_line_comment] = STATE(903), + [sym_block_comment] = STATE(903), + [sym_identifier] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_RBRACK] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_u8] = ACTIONS(2109), + [anon_sym_i8] = ACTIONS(2109), + [anon_sym_u16] = ACTIONS(2109), + [anon_sym_i16] = ACTIONS(2109), + [anon_sym_u32] = ACTIONS(2109), + [anon_sym_i32] = ACTIONS(2109), + [anon_sym_u64] = ACTIONS(2109), + [anon_sym_i64] = ACTIONS(2109), + [anon_sym_u128] = ACTIONS(2109), + [anon_sym_i128] = ACTIONS(2109), + [anon_sym_isize] = ACTIONS(2109), + [anon_sym_usize] = ACTIONS(2109), + [anon_sym_f32] = ACTIONS(2109), + [anon_sym_f64] = ACTIONS(2109), + [anon_sym_bool] = ACTIONS(2109), + [anon_sym_str] = ACTIONS(2109), + [anon_sym_char] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2107), + [anon_sym_BANG] = ACTIONS(2107), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_LT] = ACTIONS(2107), + [anon_sym__] = ACTIONS(2109), + [anon_sym_DOT_DOT] = ACTIONS(2107), + [anon_sym_COMMA] = ACTIONS(2107), + [anon_sym_COLON_COLON] = ACTIONS(2107), + [anon_sym_POUND] = ACTIONS(2107), + [anon_sym_SQUOTE] = ACTIONS(2109), + [anon_sym_async] = ACTIONS(2109), + [anon_sym_break] = ACTIONS(2109), + [anon_sym_const] = ACTIONS(2109), + [anon_sym_continue] = ACTIONS(2109), + [anon_sym_default] = ACTIONS(2109), + [anon_sym_for] = ACTIONS(2109), + [anon_sym_gen] = ACTIONS(2109), + [anon_sym_if] = ACTIONS(2109), + [anon_sym_loop] = ACTIONS(2109), + [anon_sym_match] = ACTIONS(2109), + [anon_sym_return] = ACTIONS(2109), + [anon_sym_static] = ACTIONS(2109), + [anon_sym_union] = ACTIONS(2109), + [anon_sym_unsafe] = ACTIONS(2109), + [anon_sym_while] = ACTIONS(2109), + [anon_sym_ref] = ACTIONS(2109), + [sym_mutable_specifier] = ACTIONS(2109), + [anon_sym_yield] = ACTIONS(2109), + [anon_sym_move] = ACTIONS(2109), + [anon_sym_try] = ACTIONS(2109), + [sym_integer_literal] = ACTIONS(2107), + [aux_sym_string_literal_token1] = ACTIONS(2107), + [sym_char_literal] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(2109), + [anon_sym_false] = ACTIONS(2109), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2109), + [sym_super] = ACTIONS(2109), + [sym_crate] = ACTIONS(2109), + [sym_metavariable] = ACTIONS(2107), + [sym__raw_string_literal_start] = ACTIONS(2107), + [sym_float_literal] = ACTIONS(2107), + }, + [STATE(904)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2995), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(904), + [sym_block_comment] = STATE(904), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104263,22 +103126,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104286,37 +103149,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(920)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2004), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(920), - [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(905)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2011), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(905), + [sym_block_comment] = STATE(905), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104334,22 +103197,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104357,37 +103220,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(921)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(921), - [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(906)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2710), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(906), + [sym_block_comment] = STATE(906), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104405,22 +103268,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104428,37 +103291,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(922)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2551), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(922), - [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(907)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2191), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(907), + [sym_block_comment] = STATE(907), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104476,22 +103339,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104499,37 +103362,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(923)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(923), - [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(908)] = { + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1402), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), + [sym_line_comment] = STATE(908), + [sym_block_comment] = STATE(908), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), + }, + [STATE(909)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1985), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(909), + [sym_block_comment] = STATE(909), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104547,22 +103481,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104570,37 +103504,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(924)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2003), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(924), - [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(910)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(910), + [sym_block_comment] = STATE(910), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104618,22 +103552,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104641,37 +103575,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(925)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3069), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(925), - [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(911)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2787), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(911), + [sym_block_comment] = STATE(911), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104689,22 +103623,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104712,37 +103646,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(926)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2846), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(926), - [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(912)] = { + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1403), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), + [sym_line_comment] = STATE(912), + [sym_block_comment] = STATE(912), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), + }, + [STATE(913)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1984), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(913), + [sym_block_comment] = STATE(913), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104760,22 +103765,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104783,37 +103788,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(927)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2647), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(927), - [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(914)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2374), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(914), + [sym_block_comment] = STATE(914), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104831,22 +103836,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104854,37 +103859,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(928)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2861), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(928), - [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(915)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2317), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(915), + [sym_block_comment] = STATE(915), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104902,22 +103907,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104925,37 +103930,250 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(929)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2804), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(929), - [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(916)] = { + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1686), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), + [sym_line_comment] = STATE(916), + [sym_block_comment] = STATE(916), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), + }, + [STATE(917)] = { + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1687), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), + [sym_line_comment] = STATE(917), + [sym_block_comment] = STATE(917), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), + }, + [STATE(918)] = { + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1756), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), + [sym_line_comment] = STATE(918), + [sym_block_comment] = STATE(918), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), + }, + [STATE(919)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2565), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(919), + [sym_block_comment] = STATE(919), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104973,22 +104191,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104996,37 +104214,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(930)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2559), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(930), - [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(920)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2877), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(920), + [sym_block_comment] = STATE(920), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105044,22 +104262,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105067,37 +104285,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(931)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2323), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(931), - [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(921)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2975), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(921), + [sym_block_comment] = STATE(921), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105115,22 +104333,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105138,37 +104356,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(932)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2324), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(932), - [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(922)] = { + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1397), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), + [sym_line_comment] = STATE(922), + [sym_block_comment] = STATE(922), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), + }, + [STATE(923)] = { + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1431), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), + [sym_line_comment] = STATE(923), + [sym_block_comment] = STATE(923), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), + }, + [STATE(924)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2449), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(924), + [sym_block_comment] = STATE(924), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105186,22 +104546,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105209,37 +104569,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(933)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2749), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(933), - [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(925)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2330), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(925), + [sym_block_comment] = STATE(925), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105257,22 +104617,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105280,37 +104640,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(934)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1993), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(934), - [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(926)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2892), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(926), + [sym_block_comment] = STATE(926), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105328,22 +104688,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105351,37 +104711,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(935)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1994), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(935), - [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(927)] = { + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1841), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), + [sym_line_comment] = STATE(927), + [sym_block_comment] = STATE(927), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), + }, + [STATE(928)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2902), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(928), + [sym_block_comment] = STATE(928), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105399,22 +104830,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105422,108 +104853,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(936)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1495), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(936), - [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), + [STATE(929)] = { + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1693), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), + [sym_line_comment] = STATE(929), + [sym_block_comment] = STATE(929), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), }, - [STATE(937)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2665), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(937), - [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(930)] = { + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1801), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), + [sym_line_comment] = STATE(930), + [sym_block_comment] = STATE(930), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), + }, + [STATE(931)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2358), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(931), + [sym_block_comment] = STATE(931), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105541,22 +105043,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105564,108 +105066,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(938)] = { - [sym_function_modifiers] = STATE(3659), - [sym_removed_trait_bound] = STATE(1784), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1861), - [sym_bracketed_type] = STATE(3579), - [sym_lifetime] = STATE(3433), - [sym_array_type] = STATE(1784), - [sym_for_lifetimes] = STATE(1595), - [sym_function_type] = STATE(1784), - [sym_tuple_type] = STATE(1784), - [sym_unit_type] = STATE(1784), - [sym_generic_type] = STATE(1607), - [sym_generic_type_with_turbofish] = STATE(3571), - [sym_bounded_type] = STATE(1784), - [sym_reference_type] = STATE(1784), - [sym_pointer_type] = STATE(1784), - [sym_never_type] = STATE(1784), - [sym_abstract_type] = STATE(1784), - [sym_dynamic_type] = STATE(1784), - [sym_macro_invocation] = STATE(1784), - [sym_scoped_identifier] = STATE(3307), - [sym_scoped_type_identifier] = STATE(1556), - [sym_line_comment] = STATE(938), - [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_u8] = ACTIONS(3119), - [anon_sym_i8] = ACTIONS(3119), - [anon_sym_u16] = ACTIONS(3119), - [anon_sym_i16] = ACTIONS(3119), - [anon_sym_u32] = ACTIONS(3119), - [anon_sym_i32] = ACTIONS(3119), - [anon_sym_u64] = ACTIONS(3119), - [anon_sym_i64] = ACTIONS(3119), - [anon_sym_u128] = ACTIONS(3119), - [anon_sym_i128] = ACTIONS(3119), - [anon_sym_isize] = ACTIONS(3119), - [anon_sym_usize] = ACTIONS(3119), - [anon_sym_f32] = ACTIONS(3119), - [anon_sym_f64] = ACTIONS(3119), - [anon_sym_bool] = ACTIONS(3119), - [anon_sym_str] = ACTIONS(3119), - [anon_sym_char] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3125), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3131), - [anon_sym_impl] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3135), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3139), - [sym_super] = ACTIONS(3139), - [sym_crate] = ACTIONS(3139), - [sym_metavariable] = ACTIONS(3141), - }, - [STATE(939)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2731), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(939), - [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(932)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2304), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(932), + [sym_block_comment] = STATE(932), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105683,22 +105114,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105706,37 +105137,321 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(940)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2000), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(940), - [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(933)] = { + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1694), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), + [sym_line_comment] = STATE(933), + [sym_block_comment] = STATE(933), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), + }, + [STATE(934)] = { + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1811), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), + [sym_line_comment] = STATE(934), + [sym_block_comment] = STATE(934), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), + }, + [STATE(935)] = { + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1413), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), + [sym_line_comment] = STATE(935), + [sym_block_comment] = STATE(935), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), + }, + [STATE(936)] = { + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1829), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), + [sym_line_comment] = STATE(936), + [sym_block_comment] = STATE(936), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), + }, + [STATE(937)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2990), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(937), + [sym_block_comment] = STATE(937), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105754,22 +105469,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3017), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105777,37 +105492,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(941)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2208), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(941), - [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(938)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2678), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(938), + [sym_block_comment] = STATE(938), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105825,22 +105540,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105848,37 +105563,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(942)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3150), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(942), - [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3001), + [STATE(939)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2384), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(2375), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(2172), + [sym_line_comment] = STATE(939), + [sym_block_comment] = STATE(939), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3237), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105896,22 +105611,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(3239), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105919,37 +105634,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(943)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3151), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(943), - [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(940)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(3280), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(940), + [sym_block_comment] = STATE(940), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105967,22 +105682,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105990,37 +105705,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(944)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2802), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(944), - [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(941)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(3282), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(941), + [sym_block_comment] = STATE(941), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106038,22 +105753,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106061,37 +105776,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(945)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2603), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(945), - [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(942)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2431), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(942), + [sym_block_comment] = STATE(942), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106109,22 +105824,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106132,37 +105847,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(946)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2000), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(2002), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(946), - [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(943)] = { + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1414), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), + [sym_line_comment] = STATE(943), + [sym_block_comment] = STATE(943), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), + }, + [STATE(944)] = { + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1843), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), + [sym_line_comment] = STATE(944), + [sym_block_comment] = STATE(944), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), + }, + [STATE(945)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2209), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(945), + [sym_block_comment] = STATE(945), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106180,22 +106037,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106203,37 +106060,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(947)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2000), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(947), - [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(946)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2769), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(946), + [sym_block_comment] = STATE(946), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106251,22 +106108,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106274,37 +106131,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, + [STATE(947)] = { + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1849), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), + [sym_line_comment] = STATE(947), + [sym_block_comment] = STATE(947), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), + }, [STATE(948)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2376), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2300), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106322,22 +106250,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106346,36 +106274,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(949)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2877), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2334), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106393,22 +106321,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106417,36 +106345,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(950)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2378), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2516), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106464,22 +106392,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106488,107 +106416,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(951)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2934), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1856), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), }, [STATE(952)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2381), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2778), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106606,22 +106534,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106630,36 +106558,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(953)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2387), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2438), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106677,22 +106605,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106701,36 +106629,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(954)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3034), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2520), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106748,22 +106676,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106772,36 +106700,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(955)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3197), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2336), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(2381), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(2176), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3001), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3241), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106819,22 +106747,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(3243), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106843,36 +106771,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(956)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2019), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2540), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106890,22 +106818,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106914,36 +106842,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(957)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3196), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2315), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106961,22 +106889,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106985,36 +106913,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(958)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2339), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2705), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107032,22 +106960,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107056,36 +106984,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(959)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2211), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(1996), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107103,22 +107031,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107127,36 +107055,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(960)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2340), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2924), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107174,22 +107102,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107198,36 +107126,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(961)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2600), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2192), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107245,22 +107173,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107269,36 +107197,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(962)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2897), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2359), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107316,22 +107244,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107340,36 +107268,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(963)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2488), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2388), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107387,22 +107315,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107411,36 +107339,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(964)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2546), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2341), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107458,22 +107386,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107482,36 +107410,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(965)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2369), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107529,22 +107457,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107553,36 +107481,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(966)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2659), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2539), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107600,22 +107528,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107624,178 +107552,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(967)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2342), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(2416), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2167), + [sym_function_modifiers] = STATE(3617), + [sym_removed_trait_bound] = STATE(1754), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1651), + [sym_bracketed_type] = STATE(3538), + [sym_lifetime] = STATE(3322), + [sym_array_type] = STATE(1754), + [sym_for_lifetimes] = STATE(1587), + [sym_function_type] = STATE(1754), + [sym_tuple_type] = STATE(1754), + [sym_unit_type] = STATE(1754), + [sym_generic_type] = STATE(1619), + [sym_generic_type_with_turbofish] = STATE(3530), + [sym_bounded_type] = STATE(1754), + [sym_reference_type] = STATE(1754), + [sym_pointer_type] = STATE(1754), + [sym_never_type] = STATE(1754), + [sym_abstract_type] = STATE(1754), + [sym_dynamic_type] = STATE(1754), + [sym_macro_invocation] = STATE(1754), + [sym_scoped_identifier] = STATE(3261), + [sym_scoped_type_identifier] = STATE(1536), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_QMARK] = ACTIONS(3115), + [anon_sym_u8] = ACTIONS(3117), + [anon_sym_i8] = ACTIONS(3117), + [anon_sym_u16] = ACTIONS(3117), + [anon_sym_i16] = ACTIONS(3117), + [anon_sym_u32] = ACTIONS(3117), + [anon_sym_i32] = ACTIONS(3117), + [anon_sym_u64] = ACTIONS(3117), + [anon_sym_i64] = ACTIONS(3117), + [anon_sym_u128] = ACTIONS(3117), + [anon_sym_i128] = ACTIONS(3117), + [anon_sym_isize] = ACTIONS(3117), + [anon_sym_usize] = ACTIONS(3117), + [anon_sym_f32] = ACTIONS(3117), + [anon_sym_f64] = ACTIONS(3117), + [anon_sym_bool] = ACTIONS(3117), + [anon_sym_str] = ACTIONS(3117), + [anon_sym_char] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3123), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3129), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3133), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3137), + [sym_super] = ACTIONS(3137), + [sym_crate] = ACTIONS(3137), + [sym_metavariable] = ACTIONS(3139), }, [STATE(968)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2379), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(2380), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2165), + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1415), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), }, [STATE(969)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2255), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2818), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107813,22 +107741,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107837,36 +107765,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(970)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2532), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2443), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107884,22 +107812,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107908,36 +107836,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(971)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3016), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2541), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107955,22 +107883,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107979,36 +107907,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(972)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2400), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(2409), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2189), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2826), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108026,22 +107954,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3243), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108050,36 +107978,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(973)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2507), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2545), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108097,22 +108025,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108121,107 +108049,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(974)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2813), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1420), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), }, [STATE(975)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2331), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2203), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108239,22 +108167,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108263,36 +108191,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(976)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2332), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2348), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108310,22 +108238,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108334,36 +108262,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(977)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2753), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2351), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108381,22 +108309,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108405,36 +108333,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(978)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2849), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1999), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108452,22 +108380,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108476,36 +108404,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(979)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2526), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2846), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108523,22 +108451,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108547,36 +108475,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(980)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2763), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2303), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108594,22 +108522,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108618,36 +108546,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(981)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2333), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(2413), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(2193), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2322), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3245), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108665,22 +108593,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3247), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108689,36 +108617,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(982)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2687), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2323), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108736,22 +108664,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108760,36 +108688,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(983)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2224), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2349), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108807,22 +108735,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108831,36 +108759,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(984)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2367), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2947), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108878,22 +108806,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108902,36 +108830,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(985)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2370), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2559), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108949,22 +108877,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108973,36 +108901,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(986)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2372), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2389), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109020,22 +108948,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109044,36 +108972,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(987)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2373), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2367), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109091,22 +109019,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109115,36 +109043,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(988)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2653), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2373), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109162,22 +109090,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109186,36 +109114,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(989)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2741), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2366), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109233,22 +109161,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109257,36 +109185,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(990)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2933), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2372), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109304,22 +109232,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109328,36 +109256,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(991)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2433), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2216), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109375,22 +109303,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109399,36 +109327,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(992)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2672), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2231), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109446,22 +109374,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109470,36 +109398,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(993)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2944), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2863), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109517,22 +109445,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109541,36 +109469,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(994)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2703), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2217), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109588,22 +109516,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109612,36 +109540,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(995)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2230), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2214), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109659,22 +109587,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109683,36 +109611,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(996)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2398), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2218), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109730,22 +109658,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109754,36 +109682,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(997)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2399), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1992), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109801,22 +109729,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109825,36 +109753,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(998)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2985), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109872,22 +109800,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109896,36 +109824,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(999)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2405), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2326), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109943,22 +109871,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109967,36 +109895,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(1000)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2408), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2881), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110014,22 +109942,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110038,36 +109966,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(1001)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2410), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2387), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110085,22 +110013,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110109,36 +110037,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(1002)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2415), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2352), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(2355), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(2161), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3001), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3245), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110156,22 +110084,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(3247), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110180,36 +110108,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1621), }, [STATE(1003)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2232), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3342), + [sym_removed_trait_bound] = STATE(1417), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1398), + [sym_bracketed_type] = STATE(3524), + [sym_lifetime] = STATE(3381), + [sym_array_type] = STATE(1417), + [sym_for_lifetimes] = STATE(1585), + [sym_function_type] = STATE(1417), + [sym_tuple_type] = STATE(1417), + [sym_unit_type] = STATE(1417), + [sym_generic_type] = STATE(1070), + [sym_generic_type_with_turbofish] = STATE(3513), + [sym_bounded_type] = STATE(1417), + [sym_reference_type] = STATE(1417), + [sym_pointer_type] = STATE(1417), + [sym_never_type] = STATE(1417), + [sym_abstract_type] = STATE(1417), + [sym_dynamic_type] = STATE(1417), + [sym_macro_invocation] = STATE(1417), + [sym_scoped_identifier] = STATE(3198), + [sym_scoped_type_identifier] = STATE(1037), [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_QMARK] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3009), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3165), + [anon_sym_for] = ACTIONS(1305), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(3171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3177), + }, + [STATE(1004)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2306), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(1004), + [sym_block_comment] = STATE(1004), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110227,22 +110226,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110250,37 +110249,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1004)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2630), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(1004), - [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(1005)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2611), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(1005), + [sym_block_comment] = STATE(1005), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110298,22 +110297,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110321,37 +110320,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1005)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2320), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(1005), - [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(1006)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1994), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(1006), + [sym_block_comment] = STATE(1006), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110369,22 +110368,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110392,37 +110391,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1006)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2321), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(1006), - [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(1007)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2556), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(1007), + [sym_block_comment] = STATE(1007), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110440,22 +110439,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110463,37 +110462,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1007)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2234), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(1007), - [sym_block_comment] = STATE(1007), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(1008)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2847), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(1008), + [sym_block_comment] = STATE(1008), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110511,22 +110510,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110534,37 +110533,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1008)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3031), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(1008), - [sym_block_comment] = STATE(1008), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(1009)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2005), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(1009), + [sym_block_comment] = STATE(1009), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110582,22 +110581,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110605,37 +110604,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1009)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2235), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(1009), - [sym_block_comment] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(1010)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(1997), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(1010), + [sym_block_comment] = STATE(1010), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110653,22 +110652,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110676,37 +110675,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1010)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2236), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(1010), - [sym_block_comment] = STATE(1010), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(1011)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(3312), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(1011), + [sym_block_comment] = STATE(1011), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110724,22 +110723,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110747,37 +110746,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1011)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(2782), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), - [sym_line_comment] = STATE(1011), - [sym_block_comment] = STATE(1011), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [STATE(1012)] = { + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(3270), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), + [sym_line_comment] = STATE(1012), + [sym_block_comment] = STATE(1012), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110795,22 +110794,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110818,108 +110817,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [STATE(1012)] = { - [sym_function_modifiers] = STATE(3383), - [sym_removed_trait_bound] = STATE(1459), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(1455), - [sym_bracketed_type] = STATE(3564), - [sym_lifetime] = STATE(3454), - [sym_array_type] = STATE(1459), - [sym_for_lifetimes] = STATE(1588), - [sym_function_type] = STATE(1459), - [sym_tuple_type] = STATE(1459), - [sym_unit_type] = STATE(1459), - [sym_generic_type] = STATE(1306), - [sym_generic_type_with_turbofish] = STATE(3553), - [sym_bounded_type] = STATE(1459), - [sym_reference_type] = STATE(1459), - [sym_pointer_type] = STATE(1459), - [sym_never_type] = STATE(1459), - [sym_abstract_type] = STATE(1459), - [sym_dynamic_type] = STATE(1459), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(3239), - [sym_scoped_type_identifier] = STATE(1049), - [sym_line_comment] = STATE(1012), - [sym_block_comment] = STATE(1012), - [aux_sym_function_modifiers_repeat1] = STATE(2250), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(3157), - [anon_sym_i8] = ACTIONS(3157), - [anon_sym_u16] = ACTIONS(3157), - [anon_sym_i16] = ACTIONS(3157), - [anon_sym_u32] = ACTIONS(3157), - [anon_sym_i32] = ACTIONS(3157), - [anon_sym_u64] = ACTIONS(3157), - [anon_sym_i64] = ACTIONS(3157), - [anon_sym_u128] = ACTIONS(3157), - [anon_sym_i128] = ACTIONS(3157), - [anon_sym_isize] = ACTIONS(3157), - [anon_sym_usize] = ACTIONS(3157), - [anon_sym_f32] = ACTIONS(3157), - [anon_sym_f64] = ACTIONS(3157), - [anon_sym_bool] = ACTIONS(3157), - [anon_sym_str] = ACTIONS(3157), - [anon_sym_char] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_gen] = ACTIONS(3169), - [anon_sym_impl] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(3173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3177), - [sym_super] = ACTIONS(3177), - [sym_crate] = ACTIONS(3177), - [sym_metavariable] = ACTIONS(3179), - }, [STATE(1013)] = { - [sym_function_modifiers] = STATE(3549), - [sym_removed_trait_bound] = STATE(1995), - [sym_extern_modifier] = STATE(2365), - [sym__type] = STATE(3116), - [sym_bracketed_type] = STATE(3378), - [sym_lifetime] = STATE(3529), - [sym_array_type] = STATE(1995), - [sym_for_lifetimes] = STATE(1578), - [sym_function_type] = STATE(1995), - [sym_tuple_type] = STATE(1995), - [sym_unit_type] = STATE(1995), - [sym_generic_type] = STATE(1983), - [sym_generic_type_with_turbofish] = STATE(3382), - [sym_bounded_type] = STATE(1995), - [sym_reference_type] = STATE(1995), - [sym_pointer_type] = STATE(1995), - [sym_never_type] = STATE(1995), - [sym_abstract_type] = STATE(1995), - [sym_dynamic_type] = STATE(1995), - [sym_macro_invocation] = STATE(1995), - [sym_scoped_identifier] = STATE(3273), - [sym_scoped_type_identifier] = STATE(1939), + [sym_function_modifiers] = STATE(3417), + [sym_removed_trait_bound] = STATE(2010), + [sym_extern_modifier] = STATE(2386), + [sym__type] = STATE(2365), + [sym_bracketed_type] = STATE(3336), + [sym_lifetime] = STATE(3437), + [sym_array_type] = STATE(2010), + [sym_for_lifetimes] = STATE(1572), + [sym_function_type] = STATE(2010), + [sym_tuple_type] = STATE(2010), + [sym_unit_type] = STATE(2010), + [sym_generic_type] = STATE(1958), + [sym_generic_type_with_turbofish] = STATE(3452), + [sym_bounded_type] = STATE(2010), + [sym_reference_type] = STATE(2010), + [sym_pointer_type] = STATE(2010), + [sym_never_type] = STATE(2010), + [sym_abstract_type] = STATE(2010), + [sym_dynamic_type] = STATE(2010), + [sym_macro_invocation] = STATE(2010), + [sym_scoped_identifier] = STATE(3251), + [sym_scoped_type_identifier] = STATE(1933), [sym_line_comment] = STATE(1013), [sym_block_comment] = STATE(1013), - [aux_sym_function_modifiers_repeat1] = STATE(2250), + [aux_sym_function_modifiers_repeat1] = STATE(2204), [sym_identifier] = ACTIONS(3001), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_QMARK] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1271), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110937,22 +110865,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(3009), - [anon_sym_async] = ACTIONS(1293), - [anon_sym_const] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1297), + [anon_sym_const] = ACTIONS(1297), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1299), - [anon_sym_for] = ACTIONS(1301), + [anon_sym_fn] = ACTIONS(1303), + [anon_sym_for] = ACTIONS(1305), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1305), + [anon_sym_impl] = ACTIONS(1309), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1293), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_dyn] = ACTIONS(1311), + [anon_sym_unsafe] = ACTIONS(1297), + [anon_sym_extern] = ACTIONS(1311), + [anon_sym_dyn] = ACTIONS(1315), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -111243,7 +111171,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1018), 2, sym_line_comment, sym_block_comment, - ACTIONS(1121), 18, + ACTIONS(1077), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -111313,7 +111241,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1019), 2, sym_line_comment, sym_block_comment, - ACTIONS(2357), 17, + ACTIONS(2107), 17, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -111331,7 +111259,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2359), 39, + ACTIONS(2109), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111443,33 +111371,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1271), 1, + ACTIONS(1275), 1, anon_sym_DASH, - ACTIONS(1317), 1, + ACTIONS(1321), 1, aux_sym_string_literal_token1, - ACTIONS(1327), 1, + ACTIONS(1331), 1, sym__raw_string_literal_start, - ACTIONS(2243), 1, + ACTIONS(2437), 1, anon_sym_COLON_COLON, ACTIONS(3265), 1, sym_identifier, ACTIONS(3275), 1, sym_metavariable, - STATE(2085), 1, + STATE(2049), 1, sym_scoped_identifier, - STATE(2128), 1, + STATE(2114), 1, sym__literal_pattern, - STATE(3370), 1, + STATE(3328), 1, sym_bracketed_type, - STATE(3395), 1, + STATE(3354), 1, sym_generic_type_with_turbofish, - ACTIONS(1319), 2, + ACTIONS(1323), 2, anon_sym_true, anon_sym_false, STATE(1021), 2, sym_line_comment, sym_block_comment, - ACTIONS(1315), 3, + ACTIONS(1319), 3, sym_float_literal, sym_integer_literal, sym_char_literal, @@ -111481,7 +111409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2027), 4, + STATE(2031), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, @@ -111522,33 +111450,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1271), 1, + ACTIONS(1275), 1, anon_sym_DASH, - ACTIONS(1317), 1, + ACTIONS(1321), 1, aux_sym_string_literal_token1, - ACTIONS(1327), 1, + ACTIONS(1331), 1, sym__raw_string_literal_start, - ACTIONS(2243), 1, + ACTIONS(2437), 1, anon_sym_COLON_COLON, ACTIONS(3277), 1, sym_identifier, ACTIONS(3287), 1, sym_metavariable, - STATE(2071), 1, + STATE(2082), 1, sym_scoped_identifier, - STATE(2107), 1, + STATE(2094), 1, sym__literal_pattern, - STATE(3370), 1, + STATE(3328), 1, sym_bracketed_type, - STATE(3395), 1, + STATE(3354), 1, sym_generic_type_with_turbofish, - ACTIONS(1319), 2, + ACTIONS(1323), 2, anon_sym_true, anon_sym_false, STATE(1022), 2, sym_line_comment, sym_block_comment, - ACTIONS(1315), 3, + ACTIONS(1319), 3, sym_float_literal, sym_integer_literal, sym_char_literal, @@ -111560,7 +111488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2027), 4, + STATE(2031), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, @@ -111607,10 +111535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3299), 1, anon_sym_LT2, - STATE(1178), 1, - sym_parameters, - STATE(1372), 1, + STATE(1076), 1, sym_type_arguments, + STATE(1082), 1, + sym_parameters, STATE(1023), 2, sym_line_comment, sym_block_comment, @@ -111675,9 +111603,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(3311), 1, anon_sym_move, - STATE(1467), 1, + STATE(1372), 1, sym_block, - STATE(3589), 1, + STATE(3547), 1, sym_label, STATE(1024), 2, sym_line_comment, @@ -111738,10 +111666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(3317), 1, anon_sym_COLON_COLON, - STATE(1178), 1, - sym_parameters, - STATE(1372), 1, + STATE(1076), 1, sym_type_arguments, + STATE(1082), 1, + sym_parameters, STATE(1025), 2, sym_line_comment, sym_block_comment, @@ -111791,138 +111719,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [646] = 10, + [646] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_LPAREN, - ACTIONS(3299), 1, - anon_sym_LT2, - ACTIONS(3317), 1, - anon_sym_COLON_COLON, - STATE(1178), 1, - sym_parameters, - STATE(1372), 1, - sym_type_arguments, STATE(1026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 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(3319), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [720] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1027), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1433), 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(1435), 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, - [784] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1028), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1475), 9, + ACTIONS(1431), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -111932,7 +111737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1477), 40, + ACTIONS(1433), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111973,7 +111778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [848] = 10, + [710] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -111984,14 +111789,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(3317), 1, anon_sym_COLON_COLON, - STATE(1178), 1, - sym_parameters, - STATE(1372), 1, + STATE(1076), 1, sym_type_arguments, - STATE(1029), 2, + STATE(1082), 1, + sym_parameters, + STATE(1027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3325), 17, + ACTIONS(3321), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112009,7 +111814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3323), 27, + ACTIONS(3319), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -112037,12 +111842,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [922] = 5, + [784] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1030), 2, + STATE(1028), 2, sym_line_comment, sym_block_comment, ACTIONS(1051), 9, @@ -112096,192 +111901,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [986] = 5, + [848] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1031), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1047), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1045), 40, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1050] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1032), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1367), 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(1369), 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, - [1114] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1033), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1381), 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(1383), 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, - [1178] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1034), 2, + STATE(1029), 2, sym_line_comment, sym_block_comment, - ACTIONS(1363), 9, + ACTIONS(1385), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112291,7 +111919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1365), 40, + ACTIONS(1387), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112332,15 +111960,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1242] = 5, + [912] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1035), 2, + STATE(1030), 2, sym_line_comment, sym_block_comment, - ACTIONS(1385), 9, + ACTIONS(1483), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112350,7 +111978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1387), 40, + ACTIONS(1485), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112391,15 +112019,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1306] = 5, + [976] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1036), 2, + STATE(1031), 2, sym_line_comment, sym_block_comment, - ACTIONS(1355), 9, + ACTIONS(1367), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112409,7 +112037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1357), 40, + ACTIONS(1369), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112450,7 +112078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1370] = 9, + [1040] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -112459,72 +112087,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3299), 1, anon_sym_LT2, - STATE(1181), 1, - sym_parameters, - STATE(1373), 1, - sym_type_arguments, - STATE(1037), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3329), 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(3327), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1441] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3335), 1, - anon_sym_BANG, - ACTIONS(3337), 1, + ACTIONS(3317), 1, anon_sym_COLON_COLON, - STATE(1038), 2, + STATE(1076), 1, + sym_type_arguments, + STATE(1082), 1, + sym_parameters, + STATE(1032), 2, sym_line_comment, sym_block_comment, - ACTIONS(3333), 17, + ACTIONS(3325), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112542,9 +112114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3331), 29, + ACTIONS(3323), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -112571,26 +112142,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [1508] = 5, + [1114] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1039), 2, + STATE(1033), 2, sym_line_comment, sym_block_comment, - ACTIONS(2401), 9, + ACTIONS(1257), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2403), 39, + ACTIONS(1259), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112614,6 +112184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, + anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -112630,25 +112201,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1571] = 5, + [1178] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1040), 2, + STATE(1034), 2, sym_line_comment, sym_block_comment, - ACTIONS(2405), 9, + ACTIONS(1381), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2407), 39, + ACTIONS(1383), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112672,6 +112243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, + anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -112688,87 +112260,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1634] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_LPAREN, - ACTIONS(3299), 1, - anon_sym_LT2, - STATE(1181), 1, - sym_parameters, - STATE(1373), 1, - sym_type_arguments, - STATE(1041), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3341), 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(3339), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1705] = 5, + [1242] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1042), 2, + STATE(1035), 2, sym_line_comment, sym_block_comment, - ACTIONS(1887), 9, + ACTIONS(1333), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1889), 39, + ACTIONS(1335), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112792,6 +112302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, + anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -112808,25 +112319,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1768] = 5, + [1306] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1043), 2, + STATE(1036), 2, sym_line_comment, sym_block_comment, - ACTIONS(2057), 9, + ACTIONS(1047), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2059), 39, + ACTIONS(1045), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112850,6 +112361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, + anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -112866,7 +112378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1831] = 9, + [1370] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -112875,14 +112387,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3299), 1, anon_sym_LT2, - STATE(1181), 1, - sym_parameters, - STATE(1373), 1, + STATE(1077), 1, sym_type_arguments, - STATE(1044), 2, + STATE(1083), 1, + sym_parameters, + STATE(1037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3345), 17, + ACTIONS(3329), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112900,7 +112412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3343), 27, + ACTIONS(3327), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -112928,137 +112440,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1902] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3351), 1, - anon_sym_POUND, - STATE(1423), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1045), 3, - sym_line_comment, - sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3349), 14, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3347), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1969] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1046), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2741), 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(2743), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2032] = 7, + [1441] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 1, + ACTIONS(3335), 1, anon_sym_BANG, - ACTIONS(3360), 1, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - STATE(1047), 2, + STATE(1038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3356), 17, + ACTIONS(3333), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113076,7 +112470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3354), 29, + ACTIONS(3331), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113106,19 +112500,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2099] = 7, + [1508] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3366), 1, + ACTIONS(3343), 1, anon_sym_BANG, - ACTIONS(3368), 1, + ACTIONS(3345), 1, anon_sym_COLON_COLON, - STATE(1048), 2, + STATE(1039), 2, sym_line_comment, sym_block_comment, - ACTIONS(3364), 17, + ACTIONS(3341), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113136,7 +112530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3362), 29, + ACTIONS(3339), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113166,7 +112560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2166] = 9, + [1575] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -113175,14 +112569,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3299), 1, anon_sym_LT2, - STATE(1181), 1, - sym_parameters, - STATE(1373), 1, + STATE(1077), 1, sym_type_arguments, - STATE(1049), 2, + STATE(1083), 1, + sym_parameters, + STATE(1040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 17, + ACTIONS(3349), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113200,7 +112594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3370), 27, + ACTIONS(3347), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -113228,19 +112622,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2237] = 7, + [1646] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 1, - anon_sym_BANG, - ACTIONS(3380), 1, - anon_sym_COLON_COLON, - STATE(1050), 2, + ACTIONS(3291), 1, + anon_sym_LPAREN, + ACTIONS(3299), 1, + anon_sym_LT2, + STATE(1077), 1, + sym_type_arguments, + STATE(1083), 1, + sym_parameters, + STATE(1041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3376), 17, + ACTIONS(3353), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113258,9 +112656,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 29, + ACTIONS(3351), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -113287,24 +112684,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [2304] = 9, + [1717] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + STATE(1042), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2857), 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(2859), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1780] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3382), 1, - anon_sym_LBRACE, - ACTIONS(3384), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, - STATE(1444), 1, - sym_field_initializer_list, - STATE(1051), 2, + STATE(1043), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3357), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113315,17 +112765,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 28, + ACTIONS(3355), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -113338,45 +112791,111 @@ 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, - [2374] = 5, + anon_sym_LT2, + [1847] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1052), 2, + STATE(1044), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2599), 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(2601), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1910] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3291), 1, + anon_sym_LPAREN, + ACTIONS(3299), 1, + anon_sym_LT2, + STATE(1077), 1, + sym_type_arguments, + STATE(1083), 1, + sym_parameters, + STATE(1045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3366), 16, + ACTIONS(3365), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3368), 31, + ACTIONS(3363), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -113393,45 +112912,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2436] = 5, + [1981] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1053), 2, + ACTIONS(3371), 1, + anon_sym_BANG, + ACTIONS(3373), 1, + anon_sym_COLON_COLON, + STATE(1046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3378), 16, + ACTIONS(3369), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3380), 31, + ACTIONS(3367), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113450,81 +112971,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2498] = 27, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_LT2, + [2048] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_for, - ACTIONS(1307), 1, - anon_sym_extern, - ACTIONS(3155), 1, - anon_sym_QMARK, - ACTIONS(3167), 1, - anon_sym_fn, - ACTIONS(3386), 1, - sym_identifier, - ACTIONS(3388), 1, - anon_sym_LPAREN, - ACTIONS(3392), 1, + STATE(1047), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1863), 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, - ACTIONS(3394), 1, - anon_sym_default, - ACTIONS(3400), 1, + anon_sym_POUND, sym_metavariable, - STATE(1041), 1, - sym_scoped_type_identifier, - STATE(1243), 1, - sym_generic_type, - STATE(1588), 1, - sym_for_lifetimes, - STATE(2250), 1, - aux_sym_function_modifiers_repeat1, - STATE(2365), 1, - sym_extern_modifier, - STATE(3383), 1, - sym_function_modifiers, - STATE(3532), 1, - sym_scoped_identifier, - STATE(3566), 1, - sym_generic_type_with_turbofish, - STATE(3576), 1, - sym_bracketed_type, - ACTIONS(3396), 2, + ACTIONS(1865), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - STATE(1054), 2, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2111] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1048), 2, sym_line_comment, sym_block_comment, - ACTIONS(1293), 3, + ACTIONS(2215), 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(2217), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, - ACTIONS(3398), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1391), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3390), 17, + [2174] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3379), 1, + anon_sym_POUND, + STATE(1469), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1049), 3, + sym_line_comment, + sym_block_comment, + aux_sym_match_arm_repeat1, + ACTIONS(3377), 14, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3375), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113542,22 +113145,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2604] = 5, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2241] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1055), 2, + STATE(1050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3335), 16, + ACTIONS(2007), 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(2009), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2304] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3307), 1, + anon_sym_COLON_COLON, + ACTIONS(3382), 1, + anon_sym_BANG, + STATE(1051), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3384), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3303), 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, @@ -113567,13 +113251,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3337), 31, + anon_sym_as, + ACTIONS(3301), 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, @@ -113594,70 +113276,226 @@ 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, - [2666] = 24, + [2372] = 27, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, + ACTIONS(1311), 1, + anon_sym_extern, + ACTIONS(3153), 1, + anon_sym_QMARK, + ACTIONS(3165), 1, + anon_sym_fn, + ACTIONS(3386), 1, + sym_identifier, + ACTIONS(3388), 1, + anon_sym_LPAREN, + ACTIONS(3392), 1, + anon_sym_COLON_COLON, + ACTIONS(3394), 1, + anon_sym_default, + ACTIONS(3396), 1, + anon_sym_for, ACTIONS(3402), 1, + sym_metavariable, + STATE(1041), 1, + sym_scoped_type_identifier, + STATE(1080), 1, + sym_generic_type, + STATE(1585), 1, + sym_for_lifetimes, + STATE(2204), 1, + aux_sym_function_modifiers_repeat1, + STATE(2386), 1, + sym_extern_modifier, + STATE(3342), 1, + sym_function_modifiers, + STATE(3491), 1, + sym_scoped_identifier, + STATE(3526), 1, + sym_generic_type_with_turbofish, + STATE(3535), 1, + sym_bracketed_type, + ACTIONS(3398), 2, + anon_sym_gen, + anon_sym_union, + STATE(1052), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1297), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3400), 3, + sym_self, + sym_super, + sym_crate, + STATE(1452), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3390), 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, + [2478] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1305), 1, + anon_sym_for, + ACTIONS(1311), 1, + anon_sym_extern, + ACTIONS(3115), 1, + anon_sym_QMARK, + ACTIONS(3127), 1, + anon_sym_fn, + ACTIONS(3404), 1, sym_identifier, ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3408), 1, - anon_sym_STAR, - ACTIONS(3412), 1, - anon_sym_AMP, - ACTIONS(3414), 1, + ACTIONS(3410), 1, anon_sym_COLON_COLON, - ACTIONS(3416), 1, - anon_sym_SQUOTE, - ACTIONS(3420), 1, - anon_sym_for, - ACTIONS(3424), 1, + ACTIONS(3412), 1, + anon_sym_default, + ACTIONS(3418), 1, sym_metavariable, - STATE(2555), 1, - sym_where_predicate, - STATE(2646), 1, + STATE(1551), 1, sym_scoped_type_identifier, - STATE(2984), 1, + STATE(1587), 1, + sym_for_lifetimes, + STATE(1626), 1, sym_generic_type, - STATE(3369), 1, + STATE(2204), 1, + aux_sym_function_modifiers_repeat1, + STATE(2386), 1, + sym_extern_modifier, + STATE(3517), 1, sym_scoped_identifier, - STATE(3385), 1, + STATE(3533), 1, sym_generic_type_with_turbofish, - STATE(3519), 1, + STATE(3539), 1, sym_bracketed_type, - ACTIONS(3404), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(1056), 2, + STATE(3617), 1, + sym_function_modifiers, + ACTIONS(3414), 2, + anon_sym_gen, + anon_sym_union, + STATE(1053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 3, + ACTIONS(1297), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3416), 3, + sym_self, + sym_super, + sym_crate, + STATE(1805), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3408), 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, + [2584] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1271), 1, + anon_sym_QMARK, + ACTIONS(1303), 1, + anon_sym_fn, + ACTIONS(1311), 1, + anon_sym_extern, + ACTIONS(3420), 1, + sym_identifier, + ACTIONS(3422), 1, + anon_sym_LPAREN, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3428), 1, anon_sym_default, + ACTIONS(3430), 1, + anon_sym_for, + ACTIONS(3436), 1, + sym_metavariable, + STATE(1572), 1, + sym_for_lifetimes, + STATE(1929), 1, + sym_scoped_type_identifier, + STATE(1964), 1, + sym_generic_type, + STATE(2204), 1, + aux_sym_function_modifiers_repeat1, + STATE(2386), 1, + sym_extern_modifier, + STATE(3344), 1, + sym_generic_type_with_turbofish, + STATE(3417), 1, + sym_function_modifiers, + STATE(3477), 1, + sym_bracketed_type, + STATE(3571), 1, + sym_scoped_identifier, + ACTIONS(3432), 2, anon_sym_gen, anon_sym_union, - ACTIONS(3422), 3, + STATE(1054), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1297), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3434), 3, sym_self, sym_super, sym_crate, - STATE(3299), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, + STATE(1995), 3, + sym_removed_trait_bound, + sym_function_type, sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3410), 17, + ACTIONS(3424), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113675,15 +113513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2766] = 5, + [2690] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1057), 2, + STATE(1055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3358), 16, + ACTIONS(3335), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113700,7 +113538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3360), 31, + ACTIONS(3337), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113732,68 +113570,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2828] = 27, + [2752] = 27, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1307), 1, - anon_sym_extern, - ACTIONS(3155), 1, + ACTIONS(1271), 1, anon_sym_QMARK, - ACTIONS(3167), 1, + ACTIONS(1303), 1, anon_sym_fn, - ACTIONS(3388), 1, + ACTIONS(1305), 1, + anon_sym_for, + ACTIONS(1311), 1, + anon_sym_extern, + ACTIONS(3422), 1, anon_sym_LPAREN, - ACTIONS(3392), 1, + ACTIONS(3426), 1, anon_sym_COLON_COLON, - ACTIONS(3394), 1, + ACTIONS(3428), 1, anon_sym_default, - ACTIONS(3400), 1, + ACTIONS(3436), 1, sym_metavariable, - ACTIONS(3426), 1, + ACTIONS(3438), 1, sym_identifier, - ACTIONS(3428), 1, - anon_sym_for, - STATE(1037), 1, + STATE(1572), 1, + sym_for_lifetimes, + STATE(1932), 1, sym_scoped_type_identifier, - STATE(1245), 1, + STATE(1962), 1, sym_generic_type, - STATE(1588), 1, - sym_for_lifetimes, - STATE(2250), 1, + STATE(2204), 1, aux_sym_function_modifiers_repeat1, - STATE(2365), 1, + STATE(2386), 1, sym_extern_modifier, - STATE(3383), 1, - sym_function_modifiers, - STATE(3532), 1, - sym_scoped_identifier, - STATE(3566), 1, + STATE(3344), 1, sym_generic_type_with_turbofish, - STATE(3576), 1, + STATE(3417), 1, + sym_function_modifiers, + STATE(3477), 1, sym_bracketed_type, - ACTIONS(3396), 2, + STATE(3571), 1, + sym_scoped_identifier, + ACTIONS(3432), 2, anon_sym_gen, anon_sym_union, - STATE(1058), 2, + STATE(1056), 2, sym_line_comment, sym_block_comment, - ACTIONS(1293), 3, + ACTIONS(1297), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3398), 3, + ACTIONS(3434), 3, sym_self, sym_super, sym_crate, - STATE(1460), 3, + STATE(2004), 3, sym_removed_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3390), 17, + ACTIONS(3424), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113811,68 +113649,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2934] = 27, + [2858] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3295), 1, + anon_sym_BANG, + ACTIONS(3440), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_COLON_COLON, + STATE(1392), 1, + sym_field_initializer_list, + STATE(1057), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1419), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1421), 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, + [2928] = 24, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1307), 1, - anon_sym_extern, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3129), 1, - anon_sym_fn, - ACTIONS(3430), 1, - sym_identifier, - ACTIONS(3432), 1, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(3422), 1, anon_sym_LPAREN, - ACTIONS(3436), 1, + ACTIONS(3426), 1, anon_sym_COLON_COLON, - ACTIONS(3438), 1, - anon_sym_default, - ACTIONS(3440), 1, - anon_sym_for, - ACTIONS(3446), 1, + ACTIONS(3436), 1, sym_metavariable, - STATE(1554), 1, + ACTIONS(3444), 1, + sym_identifier, + ACTIONS(3448), 1, + anon_sym_STAR, + ACTIONS(3452), 1, + anon_sym_AMP, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(3456), 1, + anon_sym_for, + STATE(2544), 1, + sym_where_predicate, + STATE(2669), 1, sym_scoped_type_identifier, - STATE(1595), 1, - sym_for_lifetimes, - STATE(1641), 1, + STATE(2862), 1, sym_generic_type, - STATE(2250), 1, - aux_sym_function_modifiers_repeat1, - STATE(2365), 1, - sym_extern_modifier, - STATE(3557), 1, - sym_scoped_identifier, - STATE(3574), 1, + STATE(3344), 1, sym_generic_type_with_turbofish, - STATE(3580), 1, + STATE(3477), 1, sym_bracketed_type, - STATE(3659), 1, - sym_function_modifiers, - ACTIONS(3442), 2, - anon_sym_gen, - anon_sym_union, - STATE(1059), 2, + STATE(3571), 1, + sym_scoped_identifier, + ACTIONS(3446), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(1058), 2, sym_line_comment, sym_block_comment, - ACTIONS(1293), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3444), 3, + ACTIONS(3432), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3434), 3, sym_self, sym_super, sym_crate, - STATE(1801), 3, - sym_removed_trait_bound, - sym_function_type, + STATE(3269), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, sym_tuple_type, - ACTIONS(3434), 17, + sym_reference_type, + sym_pointer_type, + ACTIONS(3450), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113890,68 +113786,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3040] = 27, + [3028] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1059), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3343), 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(3345), 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, + [3090] = 27, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1267), 1, + ACTIONS(1311), 1, + anon_sym_extern, + ACTIONS(3115), 1, anon_sym_QMARK, - ACTIONS(1299), 1, + ACTIONS(3127), 1, anon_sym_fn, - ACTIONS(1301), 1, - anon_sym_for, - ACTIONS(1307), 1, - anon_sym_extern, ACTIONS(3406), 1, anon_sym_LPAREN, - ACTIONS(3414), 1, + ACTIONS(3410), 1, anon_sym_COLON_COLON, - ACTIONS(3424), 1, + ACTIONS(3412), 1, + anon_sym_default, + ACTIONS(3418), 1, sym_metavariable, - ACTIONS(3448), 1, + ACTIONS(3458), 1, sym_identifier, - ACTIONS(3452), 1, - anon_sym_default, - STATE(1578), 1, - sym_for_lifetimes, - STATE(1937), 1, + ACTIONS(3460), 1, + anon_sym_for, + STATE(1539), 1, sym_scoped_type_identifier, - STATE(1971), 1, + STATE(1587), 1, + sym_for_lifetimes, + STATE(1638), 1, sym_generic_type, - STATE(2250), 1, + STATE(2204), 1, aux_sym_function_modifiers_repeat1, - STATE(2365), 1, + STATE(2386), 1, sym_extern_modifier, - STATE(3369), 1, + STATE(3517), 1, sym_scoped_identifier, - STATE(3385), 1, + STATE(3533), 1, sym_generic_type_with_turbofish, - STATE(3519), 1, + STATE(3539), 1, sym_bracketed_type, - STATE(3549), 1, + STATE(3617), 1, sym_function_modifiers, - ACTIONS(3418), 2, + ACTIONS(3414), 2, anon_sym_gen, anon_sym_union, STATE(1060), 2, sym_line_comment, sym_block_comment, - ACTIONS(1293), 3, + ACTIONS(1297), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3422), 3, + ACTIONS(3416), 3, sym_self, sym_super, sym_crate, - STATE(2007), 3, + STATE(1762), 3, sym_removed_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3450), 17, + ACTIONS(3408), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113969,90 +113922,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3146] = 24, - ACTIONS(29), 1, - anon_sym_LT, + [3196] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3402), 1, - sym_identifier, - ACTIONS(3406), 1, - anon_sym_LPAREN, - ACTIONS(3408), 1, + STATE(1061), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3359), 16, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3412), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(3414), 1, - anon_sym_COLON_COLON, - ACTIONS(3416), 1, - anon_sym_SQUOTE, - ACTIONS(3420), 1, - anon_sym_for, - ACTIONS(3424), 1, - sym_metavariable, - STATE(2555), 1, - sym_where_predicate, - STATE(2646), 1, - sym_scoped_type_identifier, - STATE(2984), 1, - sym_generic_type, - STATE(3369), 1, - sym_scoped_identifier, - STATE(3385), 1, - sym_generic_type_with_turbofish, - STATE(3519), 1, - sym_bracketed_type, - ACTIONS(3454), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3361), 31, anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - STATE(1061), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3418), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3422), 3, - sym_self, - sym_super, - sym_crate, - STATE(3299), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3410), 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, - [3246] = 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_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, + [3258] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3456), 1, + ACTIONS(3462), 1, anon_sym_POUND, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, STATE(1062), 3, sym_line_comment, @@ -114104,68 +114038,68 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3312] = 27, + [3324] = 27, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1267), 1, + ACTIONS(1305), 1, + anon_sym_for, + ACTIONS(1311), 1, + anon_sym_extern, + ACTIONS(3153), 1, anon_sym_QMARK, - ACTIONS(1299), 1, + ACTIONS(3165), 1, anon_sym_fn, - ACTIONS(1307), 1, - anon_sym_extern, - ACTIONS(3406), 1, + ACTIONS(3388), 1, anon_sym_LPAREN, - ACTIONS(3414), 1, + ACTIONS(3392), 1, anon_sym_COLON_COLON, - ACTIONS(3424), 1, - sym_metavariable, - ACTIONS(3452), 1, + ACTIONS(3394), 1, anon_sym_default, - ACTIONS(3459), 1, + ACTIONS(3402), 1, + sym_metavariable, + ACTIONS(3465), 1, sym_identifier, - ACTIONS(3461), 1, - anon_sym_for, - STATE(1578), 1, - sym_for_lifetimes, - STATE(1946), 1, + STATE(1045), 1, sym_scoped_type_identifier, - STATE(1979), 1, + STATE(1147), 1, sym_generic_type, - STATE(2250), 1, + STATE(1585), 1, + sym_for_lifetimes, + STATE(2204), 1, aux_sym_function_modifiers_repeat1, - STATE(2365), 1, + STATE(2386), 1, sym_extern_modifier, - STATE(3369), 1, + STATE(3342), 1, + sym_function_modifiers, + STATE(3491), 1, sym_scoped_identifier, - STATE(3385), 1, + STATE(3526), 1, sym_generic_type_with_turbofish, - STATE(3519), 1, + STATE(3535), 1, sym_bracketed_type, - STATE(3549), 1, - sym_function_modifiers, - ACTIONS(3418), 2, + ACTIONS(3398), 2, anon_sym_gen, anon_sym_union, STATE(1063), 2, sym_line_comment, sym_block_comment, - ACTIONS(1293), 3, + ACTIONS(1297), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3422), 3, + ACTIONS(3400), 3, sym_self, sym_super, sym_crate, - STATE(2005), 3, + STATE(1416), 3, sym_removed_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3450), 17, + ACTIONS(3390), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114183,68 +114117,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3418] = 27, + [3430] = 24, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1301), 1, - anon_sym_for, - ACTIONS(1307), 1, - anon_sym_extern, - ACTIONS(3117), 1, - anon_sym_QMARK, - ACTIONS(3129), 1, - anon_sym_fn, - ACTIONS(3432), 1, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(3422), 1, anon_sym_LPAREN, - ACTIONS(3436), 1, + ACTIONS(3426), 1, anon_sym_COLON_COLON, - ACTIONS(3438), 1, - anon_sym_default, - ACTIONS(3446), 1, + ACTIONS(3436), 1, sym_metavariable, - ACTIONS(3463), 1, + ACTIONS(3444), 1, sym_identifier, - STATE(1551), 1, + ACTIONS(3448), 1, + anon_sym_STAR, + ACTIONS(3452), 1, + anon_sym_AMP, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(3456), 1, + anon_sym_for, + STATE(2544), 1, + sym_where_predicate, + STATE(2669), 1, sym_scoped_type_identifier, - STATE(1595), 1, - sym_for_lifetimes, - STATE(1657), 1, + STATE(2862), 1, sym_generic_type, - STATE(2250), 1, - aux_sym_function_modifiers_repeat1, - STATE(2365), 1, - sym_extern_modifier, - STATE(3557), 1, - sym_scoped_identifier, - STATE(3574), 1, + STATE(3344), 1, sym_generic_type_with_turbofish, - STATE(3580), 1, + STATE(3477), 1, sym_bracketed_type, - STATE(3659), 1, - sym_function_modifiers, - ACTIONS(3442), 2, - anon_sym_gen, - anon_sym_union, + STATE(3571), 1, + sym_scoped_identifier, + ACTIONS(3467), 2, + anon_sym_SEMI, + anon_sym_LBRACE, STATE(1064), 2, sym_line_comment, sym_block_comment, - ACTIONS(1293), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3444), 3, + ACTIONS(3432), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3434), 3, sym_self, sym_super, sym_crate, - STATE(1743), 3, - sym_removed_trait_bound, - sym_function_type, + STATE(3269), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, sym_tuple_type, - ACTIONS(3434), 17, + sym_reference_type, + sym_pointer_type, + ACTIONS(3450), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114262,32 +114193,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3524] = 8, + [3530] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3307), 1, - anon_sym_COLON_COLON, - ACTIONS(3465), 1, - anon_sym_BANG, STATE(1065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3303), 16, + ACTIONS(3371), 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, @@ -114297,11 +114218,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3301), 23, + ACTIONS(3373), 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, @@ -114322,15 +114245,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [3592] = 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [3592] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1473), 1, + sym_label, STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(2125), 7, + ACTIONS(3471), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3469), 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_as, + anon_sym_else, + [3657] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1067), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1871), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114338,7 +114324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2127), 39, + ACTIONS(1873), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114378,15 +114364,186 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3653] = 5, + [3718] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1067), 2, + ACTIONS(3473), 1, + anon_sym_COLON_COLON, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(2969), 7, + ACTIONS(3329), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3327), 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, + [3781] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3475), 1, + anon_sym_COLON_COLON, + STATE(1069), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3329), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3327), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [3844] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3477), 1, + anon_sym_COLON_COLON, + STATE(1070), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3329), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3327), 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, + [3907] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1071), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2423), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114394,7 +114551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2971), 39, + ACTIONS(2425), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114434,15 +114591,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3714] = 5, + [3968] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1068), 2, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(2973), 7, + ACTIONS(2479), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114450,7 +114607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2975), 39, + ACTIONS(2481), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114490,15 +114647,87 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [3775] = 5, + [4029] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1069), 2, + ACTIONS(1657), 1, + anon_sym_DASH, + ACTIONS(1681), 1, + aux_sym_string_literal_token1, + ACTIONS(1689), 1, + sym__raw_string_literal_start, + ACTIONS(3281), 1, + anon_sym_if, + ACTIONS(3479), 1, + sym_identifier, + ACTIONS(3483), 1, + anon_sym_COLON_COLON, + ACTIONS(3487), 1, + sym_metavariable, + STATE(2512), 1, + sym_scoped_identifier, + STATE(2790), 1, + sym__literal_pattern, + STATE(3473), 1, + sym_bracketed_type, + STATE(3486), 1, + sym_generic_type_with_turbofish, + ACTIONS(1683), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3279), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3471), 15, + ACTIONS(1679), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3485), 3, + sym_self, + sym_super, + sym_crate, + STATE(2361), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3481), 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, + [4122] = 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(3491), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114514,7 +114743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3469), 31, + ACTIONS(3489), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114546,15 +114775,485 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3836] = 5, + [4183] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1070), 2, + ACTIONS(1657), 1, + anon_sym_DASH, + ACTIONS(1681), 1, + aux_sym_string_literal_token1, + ACTIONS(1689), 1, + sym__raw_string_literal_start, + ACTIONS(3269), 1, + anon_sym_if, + ACTIONS(3483), 1, + anon_sym_COLON_COLON, + ACTIONS(3493), 1, + sym_identifier, + ACTIONS(3499), 1, + sym_metavariable, + STATE(2527), 1, + sym_scoped_identifier, + STATE(2819), 1, + sym__literal_pattern, + STATE(3473), 1, + sym_bracketed_type, + STATE(3486), 1, + sym_generic_type_with_turbofish, + ACTIONS(1683), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3267), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1075), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1679), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + STATE(2361), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3495), 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, + [4276] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1076), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3503), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3501), 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, + [4337] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1077), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3507), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3505), 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, + [4398] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1078), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3261), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3263), 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, + [4459] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3513), 1, + anon_sym_DASH_GT, + STATE(1079), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3511), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3509), 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, + [4522] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3477), 1, + anon_sym_COLON_COLON, + STATE(1080), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3353), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3351), 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, + [4585] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3477), 1, + anon_sym_COLON_COLON, + STATE(1081), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3349), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3347), 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, + [4648] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3519), 1, + anon_sym_DASH_GT, + STATE(1082), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3517), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3515), 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, + [4711] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3525), 1, + anon_sym_DASH_GT, + STATE(1083), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 15, + ACTIONS(3523), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114570,7 +115269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3473), 31, + ACTIONS(3521), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114598,131 +115297,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3897] = 5, + [4774] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1071), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1779), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1781), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3958] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1072), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1783), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1785), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4019] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1073), 2, + STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 7, + ACTIONS(2483), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114730,7 +115316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1793), 39, + ACTIONS(2485), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114770,23 +115356,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4080] = 5, + [4835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1074), 2, + STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(1795), 7, + ACTIONS(3529), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1797), 39, + ACTIONS(3527), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114807,146 +115399,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [4141] = 5, + [4896] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + ACTIONS(3531), 1, + anon_sym_else, + STATE(1486), 1, + sym_else_clause, + STATE(1086), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(1253), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1801), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4202] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1076), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1803), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1251), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1805), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4263] = 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, + [4961] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1077), 2, + STATE(1087), 2, sym_line_comment, sym_block_comment, - ACTIONS(1807), 7, + ACTIONS(2499), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114954,7 +115486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1809), 39, + ACTIONS(2501), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114994,15 +115526,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4324] = 5, + [5022] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1078), 2, + STATE(1088), 2, sym_line_comment, sym_block_comment, - ACTIONS(1811), 7, + ACTIONS(2503), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115010,7 +115542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1813), 39, + ACTIONS(2505), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115050,15 +115582,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4385] = 5, + [5083] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1079), 2, + STATE(1089), 2, sym_line_comment, sym_block_comment, - ACTIONS(1815), 7, + ACTIONS(2507), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115066,7 +115598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1817), 39, + ACTIONS(2509), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115106,15 +115638,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4446] = 5, + [5144] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1080), 2, + STATE(1090), 2, sym_line_comment, sym_block_comment, - ACTIONS(1819), 7, + ACTIONS(2523), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115122,7 +115654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1821), 39, + ACTIONS(2525), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115162,15 +115694,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4507] = 5, + [5205] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1081), 2, + STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(1823), 7, + ACTIONS(2547), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115178,7 +115710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1825), 39, + ACTIONS(2549), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115218,15 +115750,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4568] = 5, + [5266] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1082), 2, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(1827), 7, + ACTIONS(2587), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115234,7 +115766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1829), 39, + ACTIONS(2589), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115274,15 +115806,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4629] = 5, + [5327] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1083), 2, + STATE(1093), 2, sym_line_comment, sym_block_comment, - ACTIONS(1831), 7, + ACTIONS(2591), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115290,7 +115822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1833), 39, + ACTIONS(2593), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115330,15 +115862,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4690] = 5, + [5388] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1084), 2, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(1835), 7, + ACTIONS(2683), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115346,7 +115878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1837), 39, + ACTIONS(2685), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115386,15 +115918,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4751] = 5, + [5449] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1085), 2, + STATE(1095), 2, sym_line_comment, sym_block_comment, - ACTIONS(1839), 7, + ACTIONS(2687), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115402,7 +115934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1841), 39, + ACTIONS(2689), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115442,15 +115974,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4812] = 5, + [5510] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1086), 2, + STATE(1096), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 7, + ACTIONS(2739), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115458,7 +115990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1845), 39, + ACTIONS(2741), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115498,15 +116030,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4873] = 5, + [5571] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1087), 2, + STATE(1097), 2, sym_line_comment, sym_block_comment, - ACTIONS(1847), 7, + ACTIONS(2743), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115514,7 +116046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1849), 39, + ACTIONS(2745), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115554,15 +116086,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4934] = 5, + [5632] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1088), 2, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 7, + ACTIONS(2751), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115570,7 +116102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1853), 39, + ACTIONS(2753), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115610,15 +116142,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4995] = 5, + [5693] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1089), 2, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(1855), 7, + ACTIONS(2761), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115626,7 +116158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1857), 39, + ACTIONS(2763), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115666,15 +116198,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5056] = 5, + [5754] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1090), 2, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(1859), 7, + ACTIONS(2765), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115682,7 +116214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1861), 39, + ACTIONS(2767), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115722,15 +116254,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5117] = 5, + [5815] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1091), 2, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(1863), 7, + ACTIONS(2853), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115738,7 +116270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1865), 39, + ACTIONS(2855), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115778,15 +116310,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5178] = 5, + [5876] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1092), 2, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(1875), 7, + ACTIONS(2925), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115794,7 +116326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1877), 39, + ACTIONS(2927), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115834,15 +116366,298 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5239] = 5, + [5937] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1093), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(1883), 7, + ACTIONS(3333), 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(3331), 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, + [5998] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1104), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3535), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3533), 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, + [6059] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3541), 1, + anon_sym_DASH_GT, + STATE(1105), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3539), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3537), 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, + [6122] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3547), 1, + anon_sym_DASH_GT, + STATE(1106), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3545), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3543), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6185] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3553), 1, + anon_sym_DASH_GT, + STATE(1107), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3551), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3549), 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, + [6248] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1108), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2175), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115850,7 +116665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1885), 39, + ACTIONS(2177), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115890,15 +116705,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5300] = 5, + [6309] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1094), 2, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(2787), 7, + ACTIONS(2179), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115906,7 +116721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2789), 39, + ACTIONS(2181), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115946,15 +116761,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5361] = 5, + [6370] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1095), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(1891), 7, + ACTIONS(2183), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115962,7 +116777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1893), 39, + ACTIONS(2185), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116002,15 +116817,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5422] = 5, + [6431] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1096), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(1895), 7, + ACTIONS(2187), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116018,7 +116833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1897), 39, + ACTIONS(2189), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116058,15 +116873,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5483] = 5, + [6492] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 7, + ACTIONS(2191), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116074,7 +116889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1901), 39, + ACTIONS(2193), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116114,15 +116929,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5544] = 5, + [6553] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1098), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(1903), 7, + ACTIONS(2195), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116130,7 +116945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1905), 39, + ACTIONS(2197), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116170,15 +116985,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5605] = 5, + [6614] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(1907), 7, + ACTIONS(2199), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116186,7 +117001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1909), 39, + ACTIONS(2201), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116226,15 +117041,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5666] = 5, + [6675] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1100), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(1911), 7, + ACTIONS(2203), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116242,7 +117057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1913), 39, + ACTIONS(2205), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116282,15 +117097,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5727] = 5, + [6736] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1101), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(1915), 7, + ACTIONS(2207), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116298,7 +117113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1917), 39, + ACTIONS(2209), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116338,15 +117153,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5788] = 5, + [6797] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1102), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(1919), 7, + ACTIONS(2211), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116354,7 +117169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1921), 39, + ACTIONS(2213), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116394,15 +117209,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5849] = 5, + [6858] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(1923), 7, + ACTIONS(2219), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116410,7 +117225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1925), 39, + ACTIONS(2221), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116450,15 +117265,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5910] = 5, + [6919] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1104), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(1927), 7, + ACTIONS(2223), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116466,7 +117281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1929), 39, + ACTIONS(2225), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116506,15 +117321,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5971] = 5, + [6980] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1105), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(1931), 7, + ACTIONS(2227), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116522,7 +117337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1933), 39, + ACTIONS(2229), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116562,15 +117377,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6032] = 5, + [7041] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(1935), 7, + ACTIONS(2231), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116578,7 +117393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1937), 39, + ACTIONS(2233), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116618,15 +117433,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6093] = 5, + [7102] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1107), 2, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(1939), 7, + ACTIONS(2235), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116634,7 +117449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1941), 39, + ACTIONS(2237), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116674,15 +117489,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6154] = 5, + [7163] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(1943), 7, + ACTIONS(2239), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116690,7 +117505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1945), 39, + ACTIONS(2241), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116730,15 +117545,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6215] = 5, + [7224] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(1947), 7, + ACTIONS(2243), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116746,7 +117561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1949), 39, + ACTIONS(2245), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116786,15 +117601,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6276] = 5, + [7285] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(1951), 7, + ACTIONS(2247), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116802,7 +117617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1953), 39, + ACTIONS(2249), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116842,15 +117657,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6337] = 5, + [7346] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(1955), 7, + ACTIONS(2251), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116858,7 +117673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1957), 39, + ACTIONS(2253), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116898,15 +117713,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6398] = 5, + [7407] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(1959), 7, + ACTIONS(2255), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116914,7 +117729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1961), 39, + ACTIONS(2257), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116954,15 +117769,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6459] = 5, + [7468] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(1963), 7, + ACTIONS(2259), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116970,7 +117785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1965), 39, + ACTIONS(2261), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117010,15 +117825,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6520] = 5, + [7529] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(1967), 7, + ACTIONS(2263), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117026,7 +117841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1969), 39, + ACTIONS(2265), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117066,15 +117881,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6581] = 5, + [7590] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(1971), 7, + ACTIONS(2267), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117082,7 +117897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1973), 39, + ACTIONS(2269), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117122,15 +117937,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6642] = 5, + [7651] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(1975), 7, + ACTIONS(2271), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117138,7 +117953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1977), 39, + ACTIONS(2273), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117178,15 +117993,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6703] = 5, + [7712] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(1979), 7, + ACTIONS(2275), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117194,7 +118009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1981), 39, + ACTIONS(2277), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117234,15 +118049,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6764] = 5, + [7773] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(1983), 7, + ACTIONS(2279), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117250,7 +118065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1985), 39, + ACTIONS(2281), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117290,15 +118105,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6825] = 5, + [7834] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(1987), 7, + ACTIONS(2283), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117306,7 +118121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1989), 39, + ACTIONS(2285), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117346,127 +118161,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6886] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1120), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3479), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3477), 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, - [6947] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1121), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3483), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3481), 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, - [7008] = 5, + [7895] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(2013), 7, + ACTIONS(2373), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117474,7 +118177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2015), 39, + ACTIONS(2375), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117514,15 +118217,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7069] = 5, + [7956] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2017), 7, + ACTIONS(2377), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117530,7 +118233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2019), 39, + ACTIONS(2379), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117570,15 +118273,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7130] = 5, + [8017] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(2021), 7, + ACTIONS(2381), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117586,7 +118289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2023), 39, + ACTIONS(2383), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117626,15 +118329,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7191] = 5, + [8078] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2025), 7, + ACTIONS(2385), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117642,7 +118345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2027), 39, + ACTIONS(2387), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117682,15 +118385,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7252] = 5, + [8139] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2029), 7, + ACTIONS(2389), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117698,7 +118401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2031), 39, + ACTIONS(2391), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117738,15 +118441,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7313] = 5, + [8200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2033), 7, + ACTIONS(2393), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117754,7 +118457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2035), 39, + ACTIONS(2395), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117794,15 +118497,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7374] = 5, + [8261] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2037), 7, + ACTIONS(2397), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117810,7 +118513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2039), 39, + ACTIONS(2399), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117850,15 +118553,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7435] = 5, + [8322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(1771), 7, + ACTIONS(2487), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117866,7 +118569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1773), 39, + ACTIONS(2489), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117906,15 +118609,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7496] = 5, + [8383] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2045), 7, + ACTIONS(2491), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117922,7 +118625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2047), 39, + ACTIONS(2493), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117962,15 +118665,298 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7557] = 5, + [8444] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1144), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3557), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3555), 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, + [8505] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3559), 1, + anon_sym_LBRACE, + STATE(1145), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3335), 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(3337), 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, + [8568] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1146), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3563), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3561), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [8629] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3477), 1, + anon_sym_COLON_COLON, + STATE(1147), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3365), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3363), 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, + [8692] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3569), 1, + anon_sym_DASH_GT, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2049), 7, + ACTIONS(3567), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3565), 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, + [8755] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1149), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2511), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117978,7 +118964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2051), 39, + ACTIONS(2513), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118018,15 +119004,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7618] = 5, + [8816] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2053), 7, + ACTIONS(2515), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118034,7 +119020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2055), 39, + ACTIONS(2517), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118074,295 +119060,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7679] = 5, + [8877] = 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(2791), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2793), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7740] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1134), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2061), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2063), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7801] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1135), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2065), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2067), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7862] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1136), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2069), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2071), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7923] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1137), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2073), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2075), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7984] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2077), 7, + ACTIONS(2519), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118370,7 +119076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2079), 39, + ACTIONS(2521), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118410,15 +119116,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8045] = 5, + [8938] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2081), 7, + ACTIONS(2527), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118426,7 +119132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2083), 39, + ACTIONS(2529), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118466,15 +119172,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8106] = 5, + [8999] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2085), 7, + ACTIONS(2531), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118482,7 +119188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2087), 39, + ACTIONS(2533), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118522,15 +119228,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8167] = 5, + [9060] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2089), 7, + ACTIONS(2535), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118538,7 +119244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2091), 39, + ACTIONS(2537), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118578,15 +119284,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8228] = 5, + [9121] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2093), 7, + ACTIONS(2539), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118594,7 +119300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2095), 39, + ACTIONS(2541), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118634,15 +119340,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8289] = 5, + [9182] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2097), 7, + ACTIONS(2543), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118650,7 +119356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2099), 39, + ACTIONS(2545), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118690,15 +119396,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8350] = 5, + [9243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2101), 7, + ACTIONS(2551), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118706,7 +119412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2103), 39, + ACTIONS(2553), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118746,15 +119452,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8411] = 5, + [9304] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2105), 7, + ACTIONS(2555), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118762,7 +119468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2107), 39, + ACTIONS(2557), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118802,15 +119508,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8472] = 5, + [9365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2109), 7, + ACTIONS(2559), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118818,7 +119524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2111), 39, + ACTIONS(2561), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118858,15 +119564,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8533] = 5, + [9426] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2113), 7, + ACTIONS(2563), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118874,7 +119580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2115), 39, + ACTIONS(2565), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118914,15 +119620,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8594] = 5, + [9487] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(2117), 7, + ACTIONS(2567), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118930,7 +119636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2119), 39, + ACTIONS(2569), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118970,15 +119676,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8655] = 5, + [9548] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2121), 7, + ACTIONS(2571), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118986,7 +119692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2123), 39, + ACTIONS(2573), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119026,72 +119732,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8716] = 6, + [9609] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3489), 1, - anon_sym_DASH_GT, - STATE(1150), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3487), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3485), 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, - [8779] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2129), 7, + ACTIONS(2575), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119099,7 +119748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2131), 39, + ACTIONS(2577), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119139,15 +119788,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8840] = 5, + [9670] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2137), 7, + ACTIONS(2579), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119155,7 +119804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2139), 39, + ACTIONS(2581), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119195,15 +119844,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8901] = 5, + [9731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2141), 7, + ACTIONS(2583), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119211,7 +119860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2143), 39, + ACTIONS(2585), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119251,15 +119900,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8962] = 5, + [9792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2145), 7, + ACTIONS(2595), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119267,7 +119916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2147), 39, + ACTIONS(2597), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119307,15 +119956,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9023] = 5, + [9853] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2149), 7, + ACTIONS(2603), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119323,7 +119972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2151), 39, + ACTIONS(2605), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119363,15 +120012,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9084] = 5, + [9914] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2153), 7, + ACTIONS(2607), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119379,7 +120028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2155), 39, + ACTIONS(2609), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119419,15 +120068,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9145] = 5, + [9975] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2157), 7, + ACTIONS(2611), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119435,7 +120084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2159), 39, + ACTIONS(2613), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119475,15 +120124,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9206] = 5, + [10036] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2161), 7, + ACTIONS(2621), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119491,7 +120140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2163), 39, + ACTIONS(2623), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119531,15 +120180,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9267] = 5, + [10097] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2165), 7, + ACTIONS(2625), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119547,7 +120196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2167), 39, + ACTIONS(2627), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119587,15 +120236,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9328] = 5, + [10158] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2169), 7, + ACTIONS(2629), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119603,7 +120252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2171), 39, + ACTIONS(2631), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119643,15 +120292,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9389] = 5, + [10219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2173), 7, + ACTIONS(2633), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119659,7 +120308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2175), 39, + ACTIONS(2635), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119699,15 +120348,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9450] = 5, + [10280] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2177), 7, + ACTIONS(2637), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119715,7 +120364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2179), 39, + ACTIONS(2639), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119755,15 +120404,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9511] = 5, + [10341] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2181), 7, + ACTIONS(2641), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119771,7 +120420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2183), 39, + ACTIONS(2643), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119811,15 +120460,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9572] = 5, + [10402] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2185), 7, + ACTIONS(2645), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119827,7 +120476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2187), 39, + ACTIONS(2647), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119867,15 +120516,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9633] = 5, + [10463] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2189), 7, + ACTIONS(2649), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119883,7 +120532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2191), 39, + ACTIONS(2651), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119923,15 +120572,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9694] = 5, + [10524] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(2193), 7, + ACTIONS(2655), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119939,7 +120588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2195), 39, + ACTIONS(2657), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119979,15 +120628,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9755] = 5, + [10585] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2197), 7, + ACTIONS(2659), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119995,7 +120644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2199), 39, + ACTIONS(2661), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120035,15 +120684,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9816] = 5, + [10646] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2201), 7, + ACTIONS(2663), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120051,7 +120700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2203), 39, + ACTIONS(2665), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120091,15 +120740,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9877] = 5, + [10707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2205), 7, + ACTIONS(2667), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120107,7 +120756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2207), 39, + ACTIONS(2669), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120147,15 +120796,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9938] = 5, + [10768] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2209), 7, + ACTIONS(2671), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120163,7 +120812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2211), 39, + ACTIONS(2673), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120203,15 +120852,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9999] = 5, + [10829] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2213), 7, + ACTIONS(2675), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120219,7 +120868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2215), 39, + ACTIONS(2677), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120259,15 +120908,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10060] = 5, + [10890] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2217), 7, + ACTIONS(2679), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120275,7 +120924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2219), 39, + ACTIONS(2681), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120315,15 +120964,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10121] = 5, + [10951] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2221), 7, + ACTIONS(2691), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120331,7 +120980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2223), 39, + ACTIONS(2693), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120371,33 +121020,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10182] = 6, + [11012] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3495), 1, - anon_sym_RBRACE, - STATE(1174), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(3493), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2695), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3491), 30, + ACTIONS(2697), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120415,28 +121054,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [10245] = 5, + [11073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2985), 7, + ACTIONS(2699), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120444,7 +121092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2987), 39, + ACTIONS(2701), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120484,15 +121132,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10306] = 5, + [11134] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2041), 7, + ACTIONS(2703), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120500,7 +121148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2043), 39, + ACTIONS(2705), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120540,298 +121188,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10367] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1177), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3376), 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(3374), 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, - [10428] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3501), 1, - anon_sym_DASH_GT, - STATE(1178), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3499), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3497), 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, - [10491] = 5, + [11195] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3505), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3503), 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, - [10552] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3507), 1, - anon_sym_COLON_COLON, - STATE(1180), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3345), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3343), 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, - [10615] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3513), 1, - anon_sym_DASH_GT, - STATE(1181), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3511), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3509), 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, - [10678] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2613), 7, + ACTIONS(2707), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120839,7 +121204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2615), 39, + ACTIONS(2709), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120879,301 +121244,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10739] = 6, + [11256] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3519), 1, - anon_sym_DASH_GT, - STATE(1183), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3517), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3515), 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, - [10802] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3525), 1, - anon_sym_DASH_GT, - STATE(1184), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3523), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3521), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10865] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3531), 1, - anon_sym_DASH_GT, - STATE(1185), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3529), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3527), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10928] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3533), 1, - anon_sym_LBRACE, - STATE(1186), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3366), 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(3368), 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, - [10991] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3535), 1, - anon_sym_else, - STATE(1410), 1, - sym_else_clause, - STATE(1187), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1253), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1251), 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, - [11056] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(1871), 7, + ACTIONS(2711), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121181,7 +121260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1873), 39, + ACTIONS(2713), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121221,15 +121300,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11117] = 5, + [11317] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(1879), 7, + ACTIONS(2715), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121237,7 +121316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1881), 39, + ACTIONS(2717), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121277,15 +121356,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11178] = 5, + [11378] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2133), 7, + ACTIONS(2719), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121293,7 +121372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2135), 39, + ACTIONS(2721), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121333,15 +121412,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11239] = 5, + [11439] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2293), 7, + ACTIONS(2723), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121349,7 +121428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2295), 39, + ACTIONS(2725), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121389,15 +121468,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11300] = 5, + [11500] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2297), 7, + ACTIONS(2727), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121405,7 +121484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2299), 39, + ACTIONS(2729), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121445,15 +121524,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11361] = 5, + [11561] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 7, + ACTIONS(2731), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121461,7 +121540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2639), 39, + ACTIONS(2733), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121501,29 +121580,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11422] = 5, + [11622] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(3539), 13, + ACTIONS(2735), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3537), 33, + ACTIONS(2737), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121544,28 +121617,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [11483] = 5, + [11683] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1195), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2301), 7, + ACTIONS(2747), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121573,7 +121652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2303), 39, + ACTIONS(2749), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121613,15 +121692,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11544] = 5, + [11744] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2317), 7, + ACTIONS(2755), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121629,7 +121708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2319), 39, + ACTIONS(2757), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121669,15 +121748,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11605] = 5, + [11805] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1199), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3573), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3571), 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, + [11866] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2321), 7, + ACTIONS(3577), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3575), 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, + [11927] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1201), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3581), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121685,7 +121876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2323), 39, + ACTIONS(3579), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121725,15 +121916,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11666] = 5, + [11988] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2329), 7, + ACTIONS(2769), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121741,7 +121932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2331), 39, + ACTIONS(2771), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121781,15 +121972,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11727] = 5, + [12049] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2353), 7, + ACTIONS(2773), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121797,7 +121988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2355), 39, + ACTIONS(2775), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121837,15 +122028,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11788] = 5, + [12110] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2641), 7, + ACTIONS(2777), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121853,7 +122044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2643), 39, + ACTIONS(2779), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121893,15 +122084,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11849] = 5, + [12171] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2481), 7, + ACTIONS(2781), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121909,7 +122100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2483), 39, + ACTIONS(2783), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121949,15 +122140,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11910] = 5, + [12232] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2485), 7, + ACTIONS(2785), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121965,7 +122156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2487), 39, + ACTIONS(2787), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122005,127 +122196,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11971] = 5, + [12293] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3543), 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(3541), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12032] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1204), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3547), 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(3545), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12093] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2537), 7, + ACTIONS(2789), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122133,7 +122212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2539), 39, + ACTIONS(2791), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122173,15 +122252,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12154] = 5, + [12354] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2541), 7, + ACTIONS(2793), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122189,7 +122268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2543), 39, + ACTIONS(2795), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122229,15 +122308,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12215] = 5, + [12415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2545), 7, + ACTIONS(2797), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122245,7 +122324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2547), 39, + ACTIONS(2799), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122285,15 +122364,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12276] = 5, + [12476] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2553), 7, + ACTIONS(2801), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122301,7 +122380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2555), 39, + ACTIONS(2803), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122341,15 +122420,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12337] = 5, + [12537] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2561), 7, + ACTIONS(2805), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122357,7 +122436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2563), 39, + ACTIONS(2807), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122397,29 +122476,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12398] = 5, + [12598] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(3551), 13, + ACTIONS(2809), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3549), 33, + ACTIONS(2811), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122440,42 +122513,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [12459] = 5, + [12659] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(3555), 13, + ACTIONS(2813), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3553), 33, + ACTIONS(2815), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122496,28 +122569,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [12520] = 5, + [12720] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2565), 7, + ACTIONS(2817), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122525,7 +122604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2567), 39, + ACTIONS(2819), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122565,15 +122644,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12581] = 5, + [12781] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2569), 7, + ACTIONS(2821), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122581,7 +122660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2571), 39, + ACTIONS(2823), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122621,29 +122700,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12642] = 5, + [12842] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(3559), 13, + ACTIONS(2825), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3557), 33, + ACTIONS(2827), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122664,28 +122737,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [12703] = 5, + [12903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2573), 7, + ACTIONS(2829), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122693,7 +122772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2575), 39, + ACTIONS(2831), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122733,15 +122812,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12764] = 5, + [12964] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2577), 7, + ACTIONS(2833), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122749,7 +122828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2579), 39, + ACTIONS(2835), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122789,15 +122868,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12825] = 5, + [13025] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2587), 7, + ACTIONS(2837), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122805,7 +122884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2589), 39, + ACTIONS(2839), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122845,29 +122924,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12886] = 5, + [13086] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(3563), 13, + ACTIONS(2841), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3561), 33, + ACTIONS(2843), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122888,42 +122961,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [12947] = 5, + [13147] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 13, + ACTIONS(2845), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3565), 33, + ACTIONS(2847), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122944,28 +123017,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [13008] = 5, + [13208] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2595), 7, + ACTIONS(2849), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122973,7 +123052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2597), 39, + ACTIONS(2851), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123013,15 +123092,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13069] = 5, + [13269] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2697), 7, + ACTIONS(2861), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123029,7 +123108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2699), 39, + ACTIONS(2863), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123069,15 +123148,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13130] = 5, + [13330] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2709), 7, + ACTIONS(2865), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123085,7 +123164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2711), 39, + ACTIONS(2867), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123125,15 +123204,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13191] = 5, + [13391] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2717), 7, + ACTIONS(2869), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123141,7 +123220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2719), 39, + ACTIONS(2871), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123181,15 +123260,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13252] = 5, + [13452] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 7, + ACTIONS(2873), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123197,7 +123276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2833), 39, + ACTIONS(2875), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123237,15 +123316,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13313] = 5, + [13513] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(2965), 7, + ACTIONS(2877), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123253,7 +123332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2967), 39, + ACTIONS(2879), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123293,15 +123372,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13374] = 5, + [13574] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(2977), 7, + ACTIONS(2881), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123309,7 +123388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2979), 39, + ACTIONS(2883), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123349,72 +123428,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13435] = 6, + [13635] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3569), 1, - anon_sym_LBRACE, - STATE(1227), 2, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(3358), 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(3360), 29, + ACTIONS(2885), 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, - [13498] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2887), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13696] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2981), 7, + ACTIONS(2889), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123422,7 +123500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2983), 39, + ACTIONS(2891), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123462,72 +123540,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13559] = 6, + [13757] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3575), 1, - anon_sym_RBRACE, - STATE(1229), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3573), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3571), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [13622] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2493), 7, + ACTIONS(2893), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123535,7 +123556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2495), 39, + ACTIONS(2895), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123575,15 +123596,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13683] = 5, + [13818] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(1775), 7, + ACTIONS(2897), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123591,7 +123612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1777), 39, + ACTIONS(2899), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123631,15 +123652,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13744] = 5, + [13879] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(1787), 7, + ACTIONS(2901), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123647,7 +123668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1789), 39, + ACTIONS(2903), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123687,23 +123708,33 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13805] = 5, + [13940] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + ACTIONS(3587), 1, + anon_sym_RBRACE, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2357), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3585), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2359), 39, + ACTIONS(3583), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123721,37 +123752,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [13866] = 5, + [14003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2781), 7, + ACTIONS(2909), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123759,7 +123781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2783), 39, + ACTIONS(2911), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123799,29 +123821,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13927] = 5, + [14064] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(3579), 13, + ACTIONS(2913), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3577), 33, + ACTIONS(2915), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123842,28 +123858,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [13988] = 5, + [14125] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2225), 7, + ACTIONS(2917), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123871,7 +123893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2227), 39, + ACTIONS(2919), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123911,15 +123933,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14049] = 5, + [14186] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2285), 7, + ACTIONS(2921), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123927,7 +123949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2287), 39, + ACTIONS(2923), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123967,63 +123989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14110] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1238), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3583), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3581), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14171] = 5, + [14247] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -124031,21 +123997,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(3587), 13, + ACTIONS(2929), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3585), 33, + ACTIONS(2931), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124066,20 +124026,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [14232] = 5, + [14308] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -124087,7 +124053,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2661), 7, + ACTIONS(2933), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124095,7 +124061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2663), 39, + ACTIONS(2935), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124135,7 +124101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14293] = 5, + [14369] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -124143,63 +124109,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(3591), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3589), 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, - [14354] = 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(2689), 7, + ACTIONS(2937), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124207,7 +124117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2691), 39, + ACTIONS(2939), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124247,72 +124157,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14415] = 6, + [14430] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3507), 1, - anon_sym_COLON_COLON, - STATE(1243), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3341), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3339), 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, - [14478] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2693), 7, + ACTIONS(2941), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124320,7 +124173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2695), 39, + ACTIONS(2943), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124360,72 +124213,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14539] = 6, + [14491] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3507), 1, - anon_sym_COLON_COLON, - STATE(1245), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(3329), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3327), 30, + ACTIONS(2945), 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, - [14602] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2947), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14552] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2713), 7, + ACTIONS(2949), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124433,7 +124285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2715), 39, + ACTIONS(2951), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124473,72 +124325,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14663] = 6, + [14613] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3597), 1, - anon_sym_DASH_GT, - STATE(1247), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(3595), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3593), 30, + ACTIONS(2953), 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, - [14726] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2955), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14674] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(2721), 7, + ACTIONS(2957), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124546,7 +124397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2723), 39, + ACTIONS(2959), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124586,15 +124437,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14787] = 5, + [14735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2305), 7, + ACTIONS(2961), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124602,7 +124453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2307), 39, + ACTIONS(2963), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124642,15 +124493,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14848] = 5, + [14796] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2313), 7, + ACTIONS(2965), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124658,7 +124509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2315), 39, + ACTIONS(2967), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124698,15 +124549,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14909] = 5, + [14857] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2325), 7, + ACTIONS(2969), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124714,7 +124565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2327), 39, + ACTIONS(2971), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124754,15 +124605,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14970] = 5, + [14918] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2333), 7, + ACTIONS(2973), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124770,7 +124621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2335), 39, + ACTIONS(2975), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124810,15 +124661,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15031] = 5, + [14979] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2337), 7, + ACTIONS(2977), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124826,7 +124677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2339), 39, + ACTIONS(2979), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124866,7 +124717,119 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15092] = 5, + [15040] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1252), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3591), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3589), 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, + [15101] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1253), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3595), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3593), 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, + [15162] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -124874,7 +124837,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2341), 7, + ACTIONS(2981), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124882,7 +124845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2343), 39, + ACTIONS(2983), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124922,7 +124885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15153] = 5, + [15223] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -124930,7 +124893,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2345), 7, + ACTIONS(2985), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124938,7 +124901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2347), 39, + ACTIONS(2987), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124978,7 +124941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15214] = 5, + [15284] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -124986,7 +124949,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2349), 7, + ACTIONS(1779), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124994,7 +124957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2351), 39, + ACTIONS(1781), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125034,7 +124997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15275] = 5, + [15345] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125042,7 +125005,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2361), 7, + ACTIONS(1783), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125050,7 +125013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2363), 39, + ACTIONS(1785), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125090,7 +125053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15336] = 5, + [15406] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125098,7 +125061,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(2365), 7, + ACTIONS(1787), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125106,7 +125069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2367), 39, + ACTIONS(1789), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125146,7 +125109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15397] = 5, + [15467] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125154,7 +125117,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(2369), 7, + ACTIONS(1791), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125162,7 +125125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2371), 39, + ACTIONS(1793), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125202,7 +125165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15458] = 5, + [15528] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125210,7 +125173,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2373), 7, + ACTIONS(1795), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125218,7 +125181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2375), 39, + ACTIONS(1797), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125258,7 +125221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15519] = 5, + [15589] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125266,7 +125229,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2377), 7, + ACTIONS(1799), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125274,7 +125237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2379), 39, + ACTIONS(1801), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125314,7 +125277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15580] = 5, + [15650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125322,7 +125285,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(2381), 7, + ACTIONS(1803), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125330,7 +125293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2383), 39, + ACTIONS(1805), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125370,7 +125333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15641] = 5, + [15711] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125378,7 +125341,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(2385), 7, + ACTIONS(1807), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125386,7 +125349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2387), 39, + ACTIONS(1809), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125426,7 +125389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15702] = 5, + [15772] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125434,7 +125397,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2389), 7, + ACTIONS(1811), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125442,7 +125405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2391), 39, + ACTIONS(1813), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125482,7 +125445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15763] = 5, + [15833] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125490,7 +125453,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2393), 7, + ACTIONS(1815), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125498,7 +125461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2395), 39, + ACTIONS(1817), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125538,7 +125501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15824] = 5, + [15894] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125546,7 +125509,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2397), 7, + ACTIONS(1819), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125554,7 +125517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2399), 39, + ACTIONS(1821), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125594,7 +125557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15885] = 5, + [15955] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125602,7 +125565,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(2725), 7, + ACTIONS(1823), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125610,7 +125573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2727), 39, + ACTIONS(1825), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125650,7 +125613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15946] = 5, + [16016] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125658,7 +125621,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(2409), 7, + ACTIONS(1827), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125666,7 +125629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2411), 39, + ACTIONS(1829), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125706,7 +125669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16007] = 5, + [16077] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125714,7 +125677,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(2413), 7, + ACTIONS(1831), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125722,7 +125685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2415), 39, + ACTIONS(1833), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125762,7 +125725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16068] = 5, + [16138] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125770,7 +125733,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(2417), 7, + ACTIONS(1835), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125778,7 +125741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2419), 39, + ACTIONS(1837), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125818,7 +125781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16129] = 5, + [16199] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125826,7 +125789,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(2421), 7, + ACTIONS(1839), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125834,7 +125797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2423), 39, + ACTIONS(1841), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125874,7 +125837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16190] = 5, + [16260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125882,7 +125845,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2425), 7, + ACTIONS(1843), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125890,7 +125853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2427), 39, + ACTIONS(1845), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125930,7 +125893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16251] = 5, + [16321] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125938,7 +125901,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(2429), 7, + ACTIONS(1847), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125946,7 +125909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2431), 39, + ACTIONS(1849), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125986,7 +125949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16312] = 5, + [16382] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -125994,7 +125957,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(2433), 7, + ACTIONS(1851), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126002,7 +125965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2435), 39, + ACTIONS(1853), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126042,7 +126005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16373] = 5, + [16443] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126050,7 +126013,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(2437), 7, + ACTIONS(1855), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126058,7 +126021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2439), 39, + ACTIONS(1857), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126098,7 +126061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16434] = 5, + [16504] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126106,7 +126069,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2441), 7, + ACTIONS(1859), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126114,7 +126077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2443), 39, + ACTIONS(1861), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126154,7 +126117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16495] = 5, + [16565] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126162,7 +126125,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2445), 7, + ACTIONS(1867), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126170,7 +126133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2447), 39, + ACTIONS(1869), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126210,7 +126173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16556] = 5, + [16626] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126218,7 +126181,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(2449), 7, + ACTIONS(2989), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126226,7 +126189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2451), 39, + ACTIONS(2991), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126266,7 +126229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16617] = 5, + [16687] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126274,7 +126237,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2453), 7, + ACTIONS(1875), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126282,7 +126245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2455), 39, + ACTIONS(1877), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126322,7 +126285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16678] = 5, + [16748] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126330,7 +126293,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(2457), 7, + ACTIONS(1879), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126338,7 +126301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2459), 39, + ACTIONS(1881), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126378,7 +126341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16739] = 5, + [16809] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126386,7 +126349,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(2461), 7, + ACTIONS(1883), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126394,7 +126357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2463), 39, + ACTIONS(1885), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126434,7 +126397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16800] = 5, + [16870] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126442,7 +126405,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(2465), 7, + ACTIONS(1887), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126450,7 +126413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2467), 39, + ACTIONS(1889), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126490,7 +126453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16861] = 5, + [16931] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126498,7 +126461,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(2469), 7, + ACTIONS(1891), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126506,7 +126469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2471), 39, + ACTIONS(1893), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126546,7 +126509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16922] = 5, + [16992] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126554,7 +126517,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(2473), 7, + ACTIONS(1895), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126562,7 +126525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2475), 39, + ACTIONS(1897), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126602,7 +126565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16983] = 5, + [17053] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126610,7 +126573,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(2477), 7, + ACTIONS(1771), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126618,7 +126581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2479), 39, + ACTIONS(1773), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126658,7 +126621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17044] = 5, + [17114] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126666,7 +126629,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(2489), 7, + ACTIONS(1899), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126674,7 +126637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2491), 39, + ACTIONS(1901), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126714,7 +126677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17105] = 5, + [17175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126722,7 +126685,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(2989), 7, + ACTIONS(1903), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126730,7 +126693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2991), 39, + ACTIONS(1905), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126770,65 +126733,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17166] = 7, + [17236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3601), 1, - anon_sym_LPAREN, - STATE(1407), 1, - sym_arguments, STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(3603), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3599), 29, + ACTIONS(1907), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [17231] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1909), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17297] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126836,7 +126797,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(2497), 7, + ACTIONS(1911), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126844,7 +126805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2499), 39, + ACTIONS(1913), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126884,7 +126845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17292] = 5, + [17358] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126892,7 +126853,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(2501), 7, + ACTIONS(1915), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126900,7 +126861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2503), 39, + ACTIONS(1917), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126940,7 +126901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17353] = 5, + [17419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -126948,7 +126909,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(2505), 7, + ACTIONS(1919), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126956,7 +126917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2507), 39, + ACTIONS(1921), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126996,7 +126957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17414] = 5, + [17480] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -127004,7 +126965,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(2737), 7, + ACTIONS(1923), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127012,7 +126973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2739), 39, + ACTIONS(1925), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127052,7 +127013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17475] = 5, + [17541] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -127060,7 +127021,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(2509), 7, + ACTIONS(1927), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127068,7 +127029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2511), 39, + ACTIONS(1929), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127108,7 +127069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17536] = 5, + [17602] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -127116,7 +127077,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 7, + ACTIONS(1931), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127124,7 +127085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2515), 39, + ACTIONS(1933), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127164,7 +127125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17597] = 5, + [17663] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -127172,7 +127133,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(2517), 7, + ACTIONS(1935), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127180,7 +127141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2519), 39, + ACTIONS(1937), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127220,78 +127181,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17658] = 12, + [17724] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, - anon_sym_LBRACE, - ACTIONS(3305), 1, - anon_sym_BANG, - ACTIONS(3307), 1, - anon_sym_COLON_COLON, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(3605), 1, - anon_sym_move, - STATE(473), 1, - sym_block, - STATE(3637), 1, - sym_label, STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3301), 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, - [17733] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1297), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2521), 7, + ACTIONS(1939), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127299,7 +127197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2523), 39, + ACTIONS(1941), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127339,15 +127237,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17794] = 5, + [17785] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 7, + ACTIONS(1943), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127355,7 +127253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2527), 39, + ACTIONS(1945), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127395,15 +127293,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17855] = 5, + [17846] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2529), 7, + ACTIONS(1947), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127411,7 +127309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2531), 39, + ACTIONS(1949), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127451,15 +127349,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17916] = 5, + [17907] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(2533), 7, + ACTIONS(1951), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127467,7 +127365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2535), 39, + ACTIONS(1953), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127507,128 +127405,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17977] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1301), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1583), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1585), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [18038] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3607), 1, - anon_sym_COLON_COLON, - STATE(1302), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3372), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3370), 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, - [18101] = 5, + [17968] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1303), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(2549), 7, + ACTIONS(1955), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127636,7 +127421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2551), 39, + ACTIONS(1957), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127676,15 +127461,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18162] = 5, + [18029] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(2557), 7, + ACTIONS(1959), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127692,7 +127477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2559), 39, + ACTIONS(1961), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127732,17 +127517,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18223] = 6, + [18090] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3609), 1, - anon_sym_COLON_COLON, - STATE(1305), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3599), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -127758,7 +127541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3370), 30, + ACTIONS(3597), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127786,75 +127569,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, - [18286] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3507), 1, anon_sym_COLON_COLON, - STATE(1306), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3372), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3370), 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, - [18349] = 5, + [18151] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(3613), 15, + ACTIONS(3603), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -127870,7 +127597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3611), 31, + ACTIONS(3601), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127898,19 +127625,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_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18410] = 5, + [18212] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(2729), 7, + ACTIONS(1963), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127918,7 +127645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2731), 39, + ACTIONS(1965), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127958,71 +127685,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18471] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1309), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3617), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3615), 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, - [18532] = 5, + [18273] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 7, + ACTIONS(1967), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128030,7 +127701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2747), 39, + ACTIONS(1969), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128070,72 +127741,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18593] = 6, + [18334] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3619), 1, - anon_sym_LBRACE, - STATE(1311), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3378), 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(3380), 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, - [18656] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(2591), 7, + ACTIONS(1971), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128143,7 +127757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2593), 39, + ACTIONS(1973), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128183,15 +127797,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18717] = 5, + [18395] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(2599), 7, + ACTIONS(1975), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128199,7 +127813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2601), 39, + ACTIONS(1977), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128239,15 +127853,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18778] = 5, + [18456] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(3623), 7, + ACTIONS(1979), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128255,7 +127869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3621), 39, + ACTIONS(1981), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128295,72 +127909,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18839] = 6, + [18517] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3625), 1, - anon_sym_LBRACE, - STATE(1315), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3335), 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(3337), 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, - [18902] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(2609), 7, + ACTIONS(1983), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128368,7 +127925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2611), 39, + ACTIONS(1985), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128408,127 +127965,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18963] = 5, + [18578] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(3629), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3627), 31, + ACTIONS(1987), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19024] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1318), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3633), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3631), 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, - [19085] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1989), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18639] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(2617), 7, + ACTIONS(1991), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128536,7 +128037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2619), 39, + ACTIONS(1993), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128576,15 +128077,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19146] = 5, + [18700] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(2621), 7, + ACTIONS(1995), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128592,7 +128093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2623), 39, + ACTIONS(1997), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128632,15 +128133,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19207] = 5, + [18761] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2229), 7, + ACTIONS(1999), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128648,7 +128149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2231), 39, + ACTIONS(2001), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128688,15 +128189,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19268] = 5, + [18822] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(2625), 7, + ACTIONS(2003), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128704,7 +128205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2627), 39, + ACTIONS(2005), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128744,15 +128245,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19329] = 5, + [18883] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(2289), 7, + ACTIONS(2011), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128760,7 +128261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2291), 39, + ACTIONS(2013), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128800,15 +128301,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19390] = 5, + [18944] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2629), 7, + ACTIONS(2015), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128816,7 +128317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2631), 39, + ACTIONS(2017), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128856,15 +128357,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19451] = 5, + [19005] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2633), 7, + ACTIONS(2019), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128872,7 +128373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2635), 39, + ACTIONS(2021), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128912,15 +128413,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19512] = 5, + [19066] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2645), 7, + ACTIONS(2023), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128928,7 +128429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2647), 39, + ACTIONS(2025), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128968,15 +128469,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19573] = 5, + [19127] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2649), 7, + ACTIONS(2027), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128984,7 +128485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2651), 39, + ACTIONS(2029), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129024,15 +128525,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19634] = 5, + [19188] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2653), 7, + ACTIONS(2031), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129040,7 +128541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2655), 39, + ACTIONS(2033), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129080,15 +128581,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19695] = 5, + [19249] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(2657), 7, + ACTIONS(2035), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129096,7 +128597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2659), 39, + ACTIONS(2037), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129136,15 +128637,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19756] = 5, + [19310] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(2665), 7, + ACTIONS(2039), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129152,7 +128653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2667), 39, + ACTIONS(2041), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129192,15 +128693,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19817] = 5, + [19371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2669), 7, + ACTIONS(2043), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129208,7 +128709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2671), 39, + ACTIONS(2045), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129248,15 +128749,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19878] = 5, + [19432] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 7, + ACTIONS(2047), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129264,7 +128765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2675), 39, + ACTIONS(2049), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129304,15 +128805,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19939] = 5, + [19493] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 7, + ACTIONS(2051), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129320,7 +128821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2679), 39, + ACTIONS(2053), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129360,78 +128861,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20000] = 12, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3307), 1, - anon_sym_COLON_COLON, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(3465), 1, - anon_sym_BANG, - ACTIONS(3635), 1, - anon_sym_move, - STATE(390), 1, - sym_block, - STATE(3600), 1, - sym_label, - STATE(1334), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3303), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3301), 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, - [20075] = 5, + [19554] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 7, + ACTIONS(2055), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129439,7 +128877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2683), 39, + ACTIONS(2057), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129479,15 +128917,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20136] = 5, + [19615] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(2685), 7, + ACTIONS(2059), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129495,7 +128933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2687), 39, + ACTIONS(2061), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129535,15 +128973,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20197] = 5, + [19676] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2701), 7, + ACTIONS(2063), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129551,7 +128989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2703), 39, + ACTIONS(2065), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129591,15 +129029,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20258] = 5, + [19737] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2705), 7, + ACTIONS(2067), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129607,7 +129045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2707), 39, + ACTIONS(2069), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129647,15 +129085,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20319] = 5, + [19798] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(2733), 7, + ACTIONS(2071), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129663,7 +129101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2735), 39, + ACTIONS(2073), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129703,15 +129141,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20380] = 5, + [19859] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 7, + ACTIONS(2075), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129719,7 +129157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2751), 39, + ACTIONS(2077), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129759,15 +129197,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20441] = 5, + [19920] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 7, + ACTIONS(2079), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129775,7 +129213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2755), 39, + ACTIONS(2081), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129815,15 +129253,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20502] = 5, + [19981] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2757), 7, + ACTIONS(2083), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129831,7 +129269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2759), 39, + ACTIONS(2085), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129871,15 +129309,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20563] = 5, + [20042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 7, + ACTIONS(2087), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129887,7 +129325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2763), 39, + ACTIONS(2089), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129927,15 +129365,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20624] = 5, + [20103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(2765), 7, + ACTIONS(2091), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129943,7 +129381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2767), 39, + ACTIONS(2093), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129983,15 +129421,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20685] = 5, + [20164] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(2769), 7, + ACTIONS(2095), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129999,7 +129437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2771), 39, + ACTIONS(2097), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130039,15 +129477,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20746] = 5, + [20225] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2773), 7, + ACTIONS(2099), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130055,7 +129493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2775), 39, + ACTIONS(2101), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130095,15 +129533,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20807] = 5, + [20286] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2777), 7, + ACTIONS(2103), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130111,7 +129549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2779), 39, + ACTIONS(2105), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130151,15 +129589,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20868] = 5, + [20347] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2795), 7, + ACTIONS(2111), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130167,7 +129605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2797), 39, + ACTIONS(2113), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130207,15 +129645,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20929] = 5, + [20408] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2799), 7, + ACTIONS(2115), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130223,7 +129661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2801), 39, + ACTIONS(2117), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130263,15 +129701,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20990] = 5, + [20469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2803), 7, + ACTIONS(2119), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130279,7 +129717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2805), 39, + ACTIONS(2121), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130319,15 +129757,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21051] = 5, + [20530] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2807), 7, + ACTIONS(2123), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130335,7 +129773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2809), 39, + ACTIONS(2125), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130375,15 +129813,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21112] = 5, + [20591] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2811), 7, + ACTIONS(2127), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130391,7 +129829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2813), 39, + ACTIONS(2129), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130431,15 +129869,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21173] = 5, + [20652] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1353), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(2815), 7, + ACTIONS(2131), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130447,7 +129885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2817), 39, + ACTIONS(2133), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130487,15 +129925,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21234] = 5, + [20713] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2819), 7, + ACTIONS(2135), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130503,7 +129941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2821), 39, + ACTIONS(2137), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130543,15 +129981,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21295] = 5, + [20774] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 7, + ACTIONS(2139), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130559,7 +129997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2825), 39, + ACTIONS(2141), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130599,15 +130037,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21356] = 5, + [20835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 7, + ACTIONS(2143), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130615,7 +130053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2829), 39, + ACTIONS(2145), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130655,15 +130093,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21417] = 5, + [20896] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2835), 7, + ACTIONS(2147), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130671,7 +130109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2837), 39, + ACTIONS(2149), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130711,15 +130149,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21478] = 5, + [20957] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2839), 7, + ACTIONS(2151), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130727,7 +130165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2841), 39, + ACTIONS(2153), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130767,15 +130205,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21539] = 5, + [21018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 7, + ACTIONS(2155), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130783,7 +130221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2845), 39, + ACTIONS(2157), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130823,15 +130261,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21600] = 5, + [21079] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 7, + ACTIONS(2159), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130839,7 +130277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2849), 39, + ACTIONS(2161), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130879,15 +130317,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21661] = 5, + [21140] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 7, + ACTIONS(2163), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130895,7 +130333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2853), 39, + ACTIONS(2165), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130935,15 +130373,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21722] = 5, + [21201] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 7, + ACTIONS(2167), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130951,7 +130389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2857), 39, + ACTIONS(2169), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130991,15 +130429,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21783] = 5, + [21262] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 7, + ACTIONS(2171), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131007,7 +130445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2861), 39, + ACTIONS(2173), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131047,19 +130485,128 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21844] = 7, + [21323] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, + ACTIONS(3605), 1, + anon_sym_LBRACE, + STATE(1355), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3371), 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(3373), 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, + [21386] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1356), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3609), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3607), 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, - STATE(1445), 1, - sym_label, - STATE(1364), 2, + anon_sym_as, + anon_sym_else, + [21447] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(3639), 15, + ACTIONS(3613), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131075,7 +130622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3637), 29, + ACTIONS(3611), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131103,17 +130650,77 @@ 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, - [21909] = 5, + [21508] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + ACTIONS(3617), 1, + anon_sym_LPAREN, + STATE(1430), 1, + sym_arguments, + STATE(1358), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3619), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3615), 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, + [21573] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 7, + ACTIONS(2107), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131121,7 +130728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2865), 39, + ACTIONS(2109), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131161,15 +130768,85 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21970] = 5, + [21634] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(3261), 15, + ACTIONS(3623), 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(3621), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21695] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3307), 1, + anon_sym_COLON_COLON, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(3625), 1, + anon_sym_move, + STATE(382), 1, + sym_block, + STATE(3522), 1, + sym_label, + STATE(1361), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131185,15 +130862,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3263), 31, + ACTIONS(3301), 24, 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, @@ -131213,99 +130886,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_as, - anon_sym_else, - [22031] = 21, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1657), 1, - anon_sym_DASH, - ACTIONS(1681), 1, - aux_sym_string_literal_token1, - ACTIONS(1689), 1, - sym__raw_string_literal_start, - ACTIONS(3269), 1, - anon_sym_if, - ACTIONS(3641), 1, - sym_identifier, - ACTIONS(3645), 1, - anon_sym_COLON_COLON, - ACTIONS(3649), 1, - sym_metavariable, - STATE(2655), 1, - sym_scoped_identifier, - STATE(2832), 1, - sym__literal_pattern, - STATE(3515), 1, - sym_bracketed_type, - STATE(3527), 1, - sym_generic_type_with_turbofish, - ACTIONS(1683), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3267), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1367), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1679), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3647), 3, - sym_self, - sym_super, - sym_crate, - STATE(2344), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3643), 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, - [22124] = 6, + [21770] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3651), 1, - anon_sym_COLON_COLON, - STATE(1368), 2, + ACTIONS(3627), 1, + anon_sym_LBRACE, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3359), 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, @@ -131315,13 +130914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 30, + ACTIONS(3361), 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, @@ -131343,24 +130941,27 @@ 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_COLON_COLON, anon_sym_as, anon_sym_else, - [22187] = 5, + [21833] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + ACTIONS(3629), 1, + anon_sym_LBRACE, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(3655), 15, + ACTIONS(3343), 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, @@ -131370,13 +130971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3653), 31, + ACTIONS(3345), 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, @@ -131399,26 +130999,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22248] = 5, + [21896] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2867), 7, + ACTIONS(3633), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2869), 39, + ACTIONS(3631), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131439,106 +131044,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_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22309] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [21957] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1657), 1, - anon_sym_DASH, - ACTIONS(1681), 1, - aux_sym_string_literal_token1, - ACTIONS(1689), 1, - sym__raw_string_literal_start, - ACTIONS(3281), 1, - anon_sym_if, - ACTIONS(3645), 1, + ACTIONS(1229), 1, + anon_sym_LBRACE, + ACTIONS(3305), 1, + anon_sym_BANG, + ACTIONS(3307), 1, anon_sym_COLON_COLON, - ACTIONS(3657), 1, - sym_identifier, - ACTIONS(3663), 1, - sym_metavariable, - STATE(2628), 1, - sym_scoped_identifier, - STATE(2854), 1, - sym__literal_pattern, - STATE(3515), 1, - sym_bracketed_type, - STATE(3527), 1, - sym_generic_type_with_turbofish, - ACTIONS(1683), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3279), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1371), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1679), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3661), 3, - sym_self, - sym_super, - sym_crate, - STATE(2344), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3659), 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, - [22402] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1372), 2, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(3635), 1, + anon_sym_move, + STATE(482), 1, + sym_block, + STATE(3596), 1, + sym_label, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(3667), 15, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131554,13 +131095,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3665), 31, - anon_sym_SEMI, + ACTIONS(3301), 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, @@ -131582,19 +131119,16 @@ 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, - [22463] = 5, + [22032] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, + ACTIONS(1583), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131610,7 +131144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3669), 31, + ACTIONS(1585), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131618,6 +131152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131638,27 +131173,32 @@ 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, - [22524] = 5, + [22093] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(2871), 7, + ACTIONS(3639), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2873), 39, + ACTIONS(3637), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131679,42 +131219,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22585] = 5, + [22154] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + ACTIONS(3641), 1, + anon_sym_COLON_COLON, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(2875), 7, + ACTIONS(1419), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1421), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22217] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3647), 1, anon_sym_RBRACE, + STATE(1369), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3645), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2877), 39, + ACTIONS(3643), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131732,37 +131333,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [22646] = 5, + [22280] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(1867), 7, + ACTIONS(2905), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131770,7 +131362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1869), 39, + ACTIONS(2907), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131810,7 +131402,337 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22707] = 5, + [22341] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1371), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3651), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3649), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22401] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1372), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1401), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1399), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22461] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1373), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(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, + [22521] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1374), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(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, + [22581] = 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(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, + [22641] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1376), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1493), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1491), 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, + [22701] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -131818,7 +131740,62 @@ static const uint16_t ts_small_parse_table[] = { STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(3675), 15, + ACTIONS(1405), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1403), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [22761] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1378), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1489), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131834,7 +131811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3673), 30, + ACTIONS(1487), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131865,15 +131842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22767] = 5, + [22821] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(3679), 15, + ACTIONS(1457), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131889,7 +131866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 30, + ACTIONS(1455), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131920,15 +131897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22827] = 5, + [22881] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(3683), 15, + ACTIONS(1479), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131944,7 +131921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3681), 30, + ACTIONS(1477), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131975,15 +131952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22887] = 5, + [22941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(3687), 15, + ACTIONS(1445), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131999,7 +131976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3685), 30, + ACTIONS(1443), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132030,15 +132007,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22947] = 5, + [23001] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(2357), 12, + ACTIONS(3253), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -132051,7 +132028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_integer_literal, sym_metavariable, - ACTIONS(2359), 33, + ACTIONS(3251), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132085,15 +132062,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23007] = 5, + [23061] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(3691), 15, + ACTIONS(1437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132109,7 +132086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3689), 30, + ACTIONS(1435), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132140,15 +132117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23067] = 5, + [23121] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(3695), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132164,7 +132141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3693), 30, + ACTIONS(1421), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132195,15 +132172,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23127] = 5, + [23181] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(3345), 15, + ACTIONS(1013), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132219,7 +132196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3343), 30, + ACTIONS(1015), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132250,15 +132227,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23187] = 5, + [23241] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 15, + ACTIONS(3657), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132272,17 +132255,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3697), 30, + ACTIONS(3653), 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, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -132305,15 +132285,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23247] = 5, + [23307] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(1259), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132329,7 +132309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1457), 30, + ACTIONS(1257), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132360,15 +132340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23307] = 5, + [23367] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 15, + ACTIONS(1387), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132384,7 +132364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3701), 30, + ACTIONS(1385), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132415,15 +132395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23367] = 5, + [23427] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132439,7 +132419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3705), 30, + ACTIONS(1447), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132470,61 +132450,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23427] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1389), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2305), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2307), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, [23487] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, @@ -132533,7 +132458,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 15, + ACTIONS(1485), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132549,7 +132474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3701), 30, + ACTIONS(1483), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132588,7 +132513,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(3341), 15, + ACTIONS(3665), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132604,7 +132529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3339), 30, + ACTIONS(3663), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132643,7 +132568,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(3669), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132659,7 +132584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1471), 30, + ACTIONS(3667), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132698,7 +132623,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 15, + ACTIONS(1383), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132714,7 +132639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3709), 30, + ACTIONS(1381), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132753,7 +132678,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 15, + ACTIONS(3673), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132769,7 +132694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 30, + ACTIONS(3671), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132808,7 +132733,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(1005), 15, + ACTIONS(3677), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132824,7 +132749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1007), 30, + ACTIONS(3675), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132863,7 +132788,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(3715), 15, + ACTIONS(1335), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132879,7 +132804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3713), 30, + ACTIONS(1333), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132910,29 +132835,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23907] = 12, + [23907] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(3717), 1, - anon_sym_BANG, - ACTIONS(3719), 1, - anon_sym_COLON_COLON, - ACTIONS(3721), 1, - anon_sym_move, - STATE(1863), 1, - sym_block, - STATE(3638), 1, - sym_label, STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, + ACTIONS(3681), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132948,10 +132859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3301), 23, + ACTIONS(3679), 30, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132971,8 +132886,11 @@ 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, - [23981] = 5, + anon_sym_else, + [23967] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -132980,7 +132898,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(3725), 15, + ACTIONS(3685), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132996,7 +132914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3723), 30, + ACTIONS(3683), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133027,7 +132945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24041] = 5, + [24027] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133035,7 +132953,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, + ACTIONS(3689), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133051,7 +132969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1047), 30, + ACTIONS(3687), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133082,7 +133000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24101] = 5, + [24087] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133090,7 +133008,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(3729), 15, + ACTIONS(1471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133106,7 +133024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3727), 30, + ACTIONS(1469), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133137,7 +133055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24161] = 5, + [24147] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133145,7 +133063,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(1481), 15, + ACTIONS(3693), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133161,7 +133079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1479), 30, + ACTIONS(3691), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133192,7 +133110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24221] = 5, + [24207] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133200,7 +133118,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(3733), 15, + ACTIONS(3697), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133216,7 +133134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3731), 30, + ACTIONS(3695), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133247,7 +133165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24281] = 5, + [24267] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133255,7 +133173,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(3737), 15, + ACTIONS(3701), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133271,7 +133189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3735), 30, + ACTIONS(3699), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133302,7 +133220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24341] = 5, + [24327] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133310,7 +133228,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(3741), 15, + ACTIONS(3705), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133326,7 +133244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3739), 30, + ACTIONS(3703), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133357,7 +133275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24401] = 5, + [24387] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133365,7 +133283,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(1049), 15, + ACTIONS(1369), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133381,7 +133299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1051), 30, + ACTIONS(1367), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133412,7 +133330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24461] = 5, + [24447] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -133420,117 +133338,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1437), 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, - [24521] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1407), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3745), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3743), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24581] = 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(1419), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133546,7 +133354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1417), 30, + ACTIONS(1427), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133577,21 +133385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24641] = 8, + [24507] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - STATE(1409), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(3751), 14, + ACTIONS(3709), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133605,14 +133407,17 @@ 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(3747), 28, + ACTIONS(3707), 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, @@ -133635,15 +133440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24707] = 5, + [24567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 15, + ACTIONS(3713), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133659,7 +133464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1395), 30, + ACTIONS(3711), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133690,15 +133495,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24767] = 5, + [24627] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(1451), 15, + ACTIONS(3717), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133712,17 +133523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1449), 30, + ACTIONS(3715), 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, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -133745,15 +133553,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24827] = 5, + [24693] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 15, + ACTIONS(3721), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133769,7 +133577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1453), 30, + ACTIONS(3719), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133800,15 +133608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24887] = 5, + [24753] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(3759), 15, + ACTIONS(3725), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133824,7 +133632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3757), 30, + ACTIONS(3723), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133855,15 +133663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [24947] = 5, + [24813] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1414), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(3763), 15, + ACTIONS(3729), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133879,7 +133687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3761), 30, + ACTIONS(3727), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133910,21 +133718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25007] = 8, + [24873] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - STATE(1415), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(3767), 14, + ACTIONS(3733), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133938,14 +133740,17 @@ 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(3765), 28, + ACTIONS(3731), 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, @@ -133968,15 +133773,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25073] = 5, + [24933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(3771), 15, + ACTIONS(3737), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133992,7 +133797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3769), 30, + ACTIONS(3735), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134023,15 +133828,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25133] = 5, + [24993] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1417), 2, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 15, + ACTIONS(3741), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134047,7 +133852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1421), 30, + ACTIONS(3739), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134078,15 +133883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25193] = 5, + [25053] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1418), 2, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(3775), 15, + ACTIONS(3365), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134102,7 +133907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3773), 30, + ACTIONS(3363), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134133,15 +133938,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25253] = 5, + [25113] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1419), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(3779), 15, + ACTIONS(3329), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134157,7 +133962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3777), 30, + ACTIONS(3327), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134188,15 +133993,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25313] = 5, + [25173] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1420), 2, + ACTIONS(3745), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(1497), 15, + ACTIONS(3747), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134212,13 +134020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1495), 30, + ACTIONS(3743), 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, @@ -134240,24 +134047,17 @@ 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, - [25373] = 8, + [25235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - STATE(1421), 2, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(3783), 14, + ACTIONS(3751), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134271,14 +134071,17 @@ 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(3781), 28, + ACTIONS(3749), 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, @@ -134301,19 +134104,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25439] = 7, + [25295] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_BANG, - ACTIONS(3307), 1, - anon_sym_COLON_COLON, - STATE(1422), 2, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, + ACTIONS(3755), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134329,12 +134128,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3301), 28, + ACTIONS(3753), 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, @@ -134356,127 +134156,128 @@ 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, - [25503] = 5, + [25355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(3787), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3759), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3785), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25563] = 5, + ACTIONS(3757), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(3791), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3755), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3789), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25623] = 5, + ACTIONS(3753), 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, + [25475] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(3795), 15, + ACTIONS(1019), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134492,7 +134293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3793), 30, + ACTIONS(1021), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134523,15 +134324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25683] = 5, + [25535] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1424), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(1005), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134547,7 +134348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1355), 30, + ACTIONS(1007), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134578,15 +134379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25743] = 5, + [25595] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(3799), 15, + ACTIONS(1049), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134602,7 +134403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3797), 30, + ACTIONS(1051), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134633,70 +134434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25803] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1428), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3493), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3491), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [25863] = 5, + [25655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(1365), 15, + ACTIONS(3763), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134712,7 +134458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1363), 30, + ACTIONS(3761), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134743,125 +134489,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25923] = 5, + [25715] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1487), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1489), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3655), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3659), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25983] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1431), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3803), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, + ACTIONS(3661), 1, anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3801), 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, + ACTIONS(3769), 1, anon_sym_as, - anon_sym_else, - [26043] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1432), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(3807), 15, + ACTIONS(3767), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134875,17 +134519,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3805), 30, + ACTIONS(3765), 27, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -134906,17 +134547,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_else, - [26103] = 5, + [25783] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(3811), 15, + ACTIONS(3773), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134932,7 +134572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3809), 30, + ACTIONS(3771), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134963,15 +134603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26163] = 5, + [25843] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(3815), 15, + ACTIONS(3777), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134987,7 +134627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3813), 30, + ACTIONS(3775), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135018,15 +134658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26223] = 5, + [25903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3781), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135042,7 +134682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 30, + ACTIONS(3779), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135073,88 +134713,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26283] = 23, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3402), 1, - sym_identifier, - ACTIONS(3406), 1, - anon_sym_LPAREN, - ACTIONS(3408), 1, - anon_sym_STAR, - ACTIONS(3412), 1, - anon_sym_AMP, - ACTIONS(3414), 1, - anon_sym_COLON_COLON, - ACTIONS(3416), 1, - anon_sym_SQUOTE, - ACTIONS(3420), 1, - anon_sym_for, - ACTIONS(3424), 1, - sym_metavariable, - STATE(2441), 1, - sym_where_predicate, - STATE(2646), 1, - sym_scoped_type_identifier, - STATE(2984), 1, - sym_generic_type, - STATE(3369), 1, - sym_scoped_identifier, - STATE(3385), 1, - sym_generic_type_with_turbofish, - STATE(3519), 1, - sym_bracketed_type, - STATE(1436), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3418), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3422), 3, - sym_self, - sym_super, - sym_crate, - STATE(3299), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3410), 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, - [26379] = 5, + [25963] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(3819), 15, + ACTIONS(3785), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135170,7 +134737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3817), 30, + ACTIONS(3783), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135201,15 +134768,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26439] = 5, + [26023] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + ACTIONS(3787), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(3823), 15, + ACTIONS(3747), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135225,13 +134795,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3821), 30, + ACTIONS(3743), 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, @@ -135253,18 +134822,17 @@ 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, - [26499] = 5, + [26085] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3827), 15, + ACTIONS(3791), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135280,7 +134848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3825), 30, + ACTIONS(3789), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135311,15 +134879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26559] = 5, + [26145] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(3573), 15, + ACTIONS(3585), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -135335,7 +134903,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3571), 30, + ACTIONS(3583), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135366,15 +134934,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26619] = 5, + [26205] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135390,7 +134958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1433), 30, + ACTIONS(1421), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135421,15 +134989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26679] = 5, + [26265] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, + ACTIONS(3795), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135445,7 +135013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3829), 30, + ACTIONS(3793), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135476,15 +135044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26739] = 5, + [26325] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(997), 15, + ACTIONS(3799), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135500,7 +135068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(999), 30, + ACTIONS(3797), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135531,15 +135099,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26799] = 5, + [26385] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1438), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2107), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(2109), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26445] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, + ACTIONS(3803), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135555,7 +135178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3833), 30, + ACTIONS(3801), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135586,15 +135209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26859] = 5, + [26505] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, + ACTIONS(921), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135610,7 +135233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3837), 30, + ACTIONS(923), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135641,15 +135264,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26919] = 5, + [26565] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, + ACTIONS(3807), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135665,7 +135288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3841), 30, + ACTIONS(3805), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135696,15 +135319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26979] = 5, + [26625] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(3847), 15, + ACTIONS(3811), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135720,7 +135343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 30, + ACTIONS(3809), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135751,28 +135374,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27039] = 5, + [26685] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(3253), 12, + ACTIONS(2511), 15, + sym__raw_string_literal_start, + sym_float_literal, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DASH, anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, - anon_sym_SQUOTE, sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(3251), 33, + ACTIONS(2513), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135790,31 +135416,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, anon_sym_gen, - anon_sym_impl, - anon_sym_pub, anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [27099] = 5, + [26745] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1444), 2, sym_line_comment, sym_block_comment, - ACTIONS(981), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135830,7 +135453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(983), 30, + ACTIONS(1421), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135861,70 +135484,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27159] = 5, + [26805] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3851), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3849), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3655), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3659), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27219] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1451), 2, + ACTIONS(3661), 1, + anon_sym_DOT, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(3855), 15, + ACTIONS(3815), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135938,17 +135512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3853), 30, + ACTIONS(3813), 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, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -135971,15 +135542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27279] = 5, + [26871] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3819), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135995,7 +135566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 30, + ACTIONS(3817), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136026,70 +135597,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27339] = 5, + [26931] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1369), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1367), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(407), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + ACTIONS(3309), 1, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27399] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1454), 2, + ACTIONS(3821), 1, + anon_sym_BANG, + ACTIONS(3823), 1, + anon_sym_COLON_COLON, + ACTIONS(3825), 1, + anon_sym_move, + STATE(1662), 1, + sym_block, + STATE(3597), 1, + sym_label, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(3859), 15, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136105,14 +135635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3857), 30, - anon_sym_SEMI, + ACTIONS(3301), 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, @@ -136132,19 +135658,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, - [27459] = 5, + [27005] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3863), 15, + ACTIONS(3829), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136160,7 +135683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3861), 30, + ACTIONS(3827), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136191,15 +135714,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27519] = 5, + [27065] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(3867), 15, + ACTIONS(3833), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136215,7 +135738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3865), 30, + ACTIONS(3831), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136246,15 +135769,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27579] = 5, + [27125] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3871), 15, + ACTIONS(975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136270,7 +135793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3869), 30, + ACTIONS(977), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136301,15 +135824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27639] = 5, + [27185] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3875), 15, + ACTIONS(1045), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136325,7 +135848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3873), 30, + ACTIONS(1047), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136356,15 +135879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27699] = 5, + [27245] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1459), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3353), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136380,7 +135903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3370), 30, + ACTIONS(3351), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136411,15 +135934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27759] = 5, + [27305] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3329), 15, + ACTIONS(3837), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136435,7 +135958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3327), 30, + ACTIONS(3835), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136466,15 +135989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27819] = 5, + [27365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(1405), 15, + ACTIONS(3841), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136490,7 +136013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1403), 30, + ACTIONS(3839), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136521,15 +136044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27879] = 5, + [27425] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(1013), 15, + ACTIONS(3845), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136545,7 +136068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1015), 30, + ACTIONS(3843), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136576,15 +136099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27939] = 5, + [27485] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3879), 15, + ACTIONS(3849), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136600,7 +136123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3877), 30, + ACTIONS(3847), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136631,15 +136154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27999] = 5, + [27545] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(1409), 15, + ACTIONS(3853), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136655,7 +136178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1407), 30, + ACTIONS(3851), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136686,15 +136209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28059] = 5, + [27605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(1425), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136710,7 +136233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 30, + ACTIONS(1423), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136741,15 +136264,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28119] = 5, + [27665] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3857), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136763,17 +136292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 30, + ACTIONS(3855), 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, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136796,15 +136322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28179] = 5, + [27731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(1427), 15, + ACTIONS(3861), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136820,7 +136346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1425), 30, + ACTIONS(3859), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136851,18 +136377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28239] = 6, + [27791] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3881), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1468), 2, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3675), 15, + ACTIONS(1467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136878,12 +136401,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3673), 28, + ACTIONS(1465), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -136905,17 +136429,18 @@ 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, - [28301] = 5, + [27851] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(1493), 15, + ACTIONS(3349), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136931,7 +136456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1491), 30, + ACTIONS(3347), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136962,15 +136487,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28361] = 5, + [27911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 15, + ACTIONS(1441), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136986,7 +136511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1429), 30, + ACTIONS(1439), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137017,15 +136542,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28421] = 5, + [27971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(3885), 15, + ACTIONS(3865), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137041,7 +136566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3883), 30, + ACTIONS(3863), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137072,15 +136597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28481] = 5, + [28031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(1501), 15, + ACTIONS(3869), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137096,7 +136621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1499), 30, + ACTIONS(3867), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137127,15 +136652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28541] = 5, + [28091] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3889), 15, + ACTIONS(1501), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137151,7 +136676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3887), 30, + ACTIONS(1499), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137182,15 +136707,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28601] = 5, + [28151] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3603), 15, + ACTIONS(3619), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137206,7 +136731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3599), 30, + ACTIONS(3615), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137237,74 +136762,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28661] = 9, + [28211] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(1599), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - STATE(1475), 2, + ACTIONS(3422), 1, + anon_sym_LPAREN, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3436), 1, + sym_metavariable, + ACTIONS(3444), 1, + sym_identifier, + ACTIONS(3448), 1, + anon_sym_STAR, + ACTIONS(3452), 1, + anon_sym_AMP, + ACTIONS(3454), 1, + anon_sym_SQUOTE, + ACTIONS(3456), 1, + anon_sym_for, + STATE(2544), 1, + sym_where_predicate, + STATE(2669), 1, + sym_scoped_type_identifier, + STATE(2862), 1, + sym_generic_type, + STATE(3344), 1, + sym_generic_type_with_turbofish, + STATE(3477), 1, + sym_bracketed_type, + STATE(3571), 1, + sym_scoped_identifier, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(3893), 14, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3432), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3434), 3, + sym_self, + sym_super, + sym_crate, + STATE(3269), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3450), 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, + [28307] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1469), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3873), 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_DOT, - ACTIONS(3891), 27, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3871), 30, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28367] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1470), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3877), 15, + sym__raw_string_literal_start, + sym_float_literal, 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, - [28729] = 5, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3875), 30, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28427] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 15, + ACTIONS(1475), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137320,7 +136969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3897), 30, + ACTIONS(1473), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137351,15 +137000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28789] = 5, + [28487] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1477), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(1505), 15, + ACTIONS(3881), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137375,7 +137024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1503), 30, + ACTIONS(3879), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137406,72 +137055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28849] = 7, + [28547] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_BANG, - ACTIONS(3901), 1, - anon_sym_COLON_COLON, - STATE(1478), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1487), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1489), 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, - [28913] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1479), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(1387), 15, + ACTIONS(3885), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137487,7 +137079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1385), 30, + ACTIONS(3883), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137518,15 +137110,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28973] = 5, + [28607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3905), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137542,7 +137134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3903), 30, + ACTIONS(1421), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137573,15 +137165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29033] = 5, + [28667] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3909), 15, + ACTIONS(3889), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137597,7 +137189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3907), 30, + ACTIONS(3887), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137628,15 +137220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29093] = 5, + [28727] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1482), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3913), 15, + ACTIONS(3893), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137652,7 +137244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3911), 30, + ACTIONS(3891), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137683,15 +137275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29153] = 5, + [28787] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1483), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(1401), 15, + ACTIONS(3897), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137707,7 +137299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1399), 30, + ACTIONS(3895), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137738,18 +137330,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29213] = 6, + [28847] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3915), 2, - anon_sym_LBRACE, + ACTIONS(3295), 1, + anon_sym_BANG, + ACTIONS(3899), 1, anon_sym_COLON_COLON, - STATE(1484), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(3675), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137765,7 +137358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3673), 28, + ACTIONS(1421), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137794,15 +137387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [29275] = 5, + [28911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1485), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(3919), 15, + ACTIONS(3903), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137818,7 +137411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3917), 30, + ACTIONS(3901), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137849,15 +137442,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29335] = 5, + [28971] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + ACTIONS(3305), 1, + anon_sym_BANG, + ACTIONS(3307), 1, + anon_sym_COLON_COLON, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3923), 15, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137873,13 +137470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3921), 30, + ACTIONS(3301), 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, @@ -137901,18 +137497,17 @@ 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, - [29395] = 5, + [29035] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1487), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3927), 15, + ACTIONS(3907), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137928,7 +137523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3925), 30, + ACTIONS(3905), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137959,70 +137554,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29455] = 5, + [29095] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1488), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1487), 15, - anon_sym_PLUS, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(3422), 1, + anon_sym_LPAREN, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3436), 1, + sym_metavariable, + ACTIONS(3444), 1, + sym_identifier, + ACTIONS(3448), 1, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3452), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1489), 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, + ACTIONS(3454), 1, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [29515] = 5, + ACTIONS(3456), 1, + anon_sym_for, + STATE(2400), 1, + sym_where_predicate, + STATE(2669), 1, + sym_scoped_type_identifier, + STATE(2862), 1, + sym_generic_type, + STATE(3344), 1, + sym_generic_type_with_turbofish, + STATE(3477), 1, + sym_bracketed_type, + STATE(3571), 1, + sym_scoped_identifier, + STATE(1482), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3432), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3434), 3, + sym_self, + sym_super, + sym_crate, + STATE(3269), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3450), 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, + [29191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(991), 15, + ACTIONS(3911), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138038,7 +137651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(993), 30, + ACTIONS(3909), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138069,15 +137682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29575] = 5, + [29251] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(1383), 15, + ACTIONS(3915), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138093,7 +137706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1381), 30, + ACTIONS(3913), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138124,88 +137737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29635] = 23, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3402), 1, - sym_identifier, - ACTIONS(3406), 1, - anon_sym_LPAREN, - ACTIONS(3408), 1, - anon_sym_STAR, - ACTIONS(3412), 1, - anon_sym_AMP, - ACTIONS(3414), 1, - anon_sym_COLON_COLON, - ACTIONS(3416), 1, - anon_sym_SQUOTE, - ACTIONS(3420), 1, - anon_sym_for, - ACTIONS(3424), 1, - sym_metavariable, - STATE(2555), 1, - sym_where_predicate, - STATE(2646), 1, - sym_scoped_type_identifier, - STATE(2984), 1, - sym_generic_type, - STATE(3369), 1, - sym_scoped_identifier, - STATE(3385), 1, - sym_generic_type_with_turbofish, - STATE(3519), 1, - sym_bracketed_type, - STATE(1491), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3418), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3422), 3, - sym_self, - sym_super, - sym_crate, - STATE(3299), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3410), 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, - [29731] = 5, + [29311] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1492), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3931), 15, + ACTIONS(3919), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138221,7 +137761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3929), 30, + ACTIONS(3917), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138252,15 +137792,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29791] = 5, + [29371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1493), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(3935), 15, + ACTIONS(1509), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138276,7 +137816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3933), 30, + ACTIONS(1507), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138307,15 +137847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29851] = 5, + [29431] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(3939), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138331,7 +137871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3937), 30, + ACTIONS(1421), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138362,15 +137902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29911] = 5, + [29491] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1495), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3943), 15, + ACTIONS(3923), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138386,7 +137926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3941), 30, + ACTIONS(3921), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138417,15 +137957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29971] = 5, + [29551] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1496), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(3947), 15, + ACTIONS(3927), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138441,7 +137981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3945), 30, + ACTIONS(3925), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138472,21 +138012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30031] = 8, + [29611] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - STATE(1497), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(3951), 14, + ACTIONS(3931), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138500,14 +138034,17 @@ 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(3949), 28, + ACTIONS(3929), 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, @@ -138530,15 +138067,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30097] = 5, + [29671] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1498), 2, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3955), 15, + ACTIONS(3645), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3643), 30, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29731] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1492), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3747), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138554,7 +138146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3953), 30, + ACTIONS(3743), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138585,63 +138177,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30157] = 25, + [29791] = 25, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1299), 1, - anon_sym_fn, - ACTIONS(1307), 1, + ACTIONS(1311), 1, anon_sym_extern, - ACTIONS(3201), 1, - anon_sym_for, - ACTIONS(3414), 1, + ACTIONS(3127), 1, + anon_sym_fn, + ACTIONS(3410), 1, anon_sym_COLON_COLON, - ACTIONS(3424), 1, - sym_metavariable, - ACTIONS(3452), 1, + ACTIONS(3412), 1, anon_sym_default, - ACTIONS(3957), 1, + ACTIONS(3418), 1, + sym_metavariable, + ACTIONS(3933), 1, sym_identifier, - STATE(1578), 1, - sym_for_lifetimes, - STATE(1948), 1, + ACTIONS(3935), 1, + anon_sym_for, + STATE(1541), 1, sym_scoped_type_identifier, - STATE(1972), 1, + STATE(1587), 1, + sym_for_lifetimes, + STATE(1646), 1, sym_generic_type, - STATE(2250), 1, + STATE(2204), 1, aux_sym_function_modifiers_repeat1, - STATE(2365), 1, + STATE(2386), 1, sym_extern_modifier, - STATE(3369), 1, + STATE(3517), 1, sym_scoped_identifier, - STATE(3385), 1, + STATE(3533), 1, sym_generic_type_with_turbofish, - STATE(3519), 1, + STATE(3539), 1, sym_bracketed_type, - STATE(3549), 1, + STATE(3617), 1, sym_function_modifiers, - ACTIONS(3418), 2, + ACTIONS(3414), 2, anon_sym_gen, anon_sym_union, - STATE(1499), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - STATE(2006), 2, + STATE(1806), 2, sym_higher_ranked_trait_bound, sym_function_type, - ACTIONS(1293), 3, + ACTIONS(1297), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3422), 3, + ACTIONS(3416), 3, sym_self, sym_super, sym_crate, - ACTIONS(3450), 17, + ACTIONS(3408), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138659,27 +138251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [30256] = 11, + [29890] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_BANG, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(3311), 1, - anon_sym_move, - ACTIONS(3959), 1, + ACTIONS(3937), 1, anon_sym_COLON_COLON, - STATE(1467), 1, - sym_block, - STATE(3589), 1, - sym_label, - STATE(1500), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138695,10 +138277,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3301), 23, + ACTIONS(1421), 28, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138718,18 +138303,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_as, - [30327] = 6, + anon_sym_else, + [29951] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3961), 1, + ACTIONS(3307), 1, anon_sym_COLON_COLON, - STATE(1501), 2, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138745,7 +138332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 28, + ACTIONS(3301), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138774,7 +138361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [30388] = 10, + [30012] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -138783,13 +138370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3311), 1, anon_sym_move, - ACTIONS(3959), 1, + ACTIONS(3939), 1, anon_sym_COLON_COLON, - STATE(1467), 1, + STATE(1372), 1, sym_block, - STATE(3589), 1, + STATE(3547), 1, sym_label, - STATE(1502), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, ACTIONS(3303), 15, @@ -138833,59 +138420,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [30457] = 25, + [30081] = 25, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1307), 1, + ACTIONS(1311), 1, anon_sym_extern, - ACTIONS(3167), 1, + ACTIONS(3165), 1, anon_sym_fn, ACTIONS(3392), 1, anon_sym_COLON_COLON, ACTIONS(3394), 1, anon_sym_default, - ACTIONS(3400), 1, + ACTIONS(3402), 1, sym_metavariable, - ACTIONS(3963), 1, + ACTIONS(3941), 1, sym_identifier, - ACTIONS(3965), 1, + ACTIONS(3943), 1, anon_sym_for, - STATE(1044), 1, + STATE(1040), 1, sym_scoped_type_identifier, - STATE(1180), 1, + STATE(1081), 1, sym_generic_type, - STATE(1588), 1, + STATE(1585), 1, sym_for_lifetimes, - STATE(2250), 1, + STATE(2204), 1, aux_sym_function_modifiers_repeat1, - STATE(2365), 1, + STATE(2386), 1, sym_extern_modifier, - STATE(3383), 1, + STATE(3342), 1, sym_function_modifiers, - STATE(3532), 1, + STATE(3491), 1, sym_scoped_identifier, - STATE(3566), 1, + STATE(3526), 1, sym_generic_type_with_turbofish, - STATE(3576), 1, + STATE(3535), 1, sym_bracketed_type, - ACTIONS(3396), 2, + ACTIONS(3398), 2, anon_sym_gen, anon_sym_union, - STATE(1384), 2, + STATE(1462), 2, sym_higher_ranked_trait_bound, sym_function_type, - STATE(1503), 2, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(1293), 3, + ACTIONS(1297), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3398), 3, + ACTIONS(3400), 3, sym_self, sym_super, sym_crate, @@ -138907,88 +138494,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [30556] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1307), 1, - anon_sym_extern, - ACTIONS(3129), 1, - anon_sym_fn, - ACTIONS(3436), 1, - anon_sym_COLON_COLON, - ACTIONS(3438), 1, - anon_sym_default, - ACTIONS(3446), 1, - sym_metavariable, - ACTIONS(3967), 1, - sym_identifier, - ACTIONS(3969), 1, - anon_sym_for, - STATE(1557), 1, - sym_scoped_type_identifier, - STATE(1595), 1, - sym_for_lifetimes, - STATE(1642), 1, - sym_generic_type, - STATE(2250), 1, - aux_sym_function_modifiers_repeat1, - STATE(2365), 1, - sym_extern_modifier, - STATE(3557), 1, - sym_scoped_identifier, - STATE(3574), 1, - sym_generic_type_with_turbofish, - STATE(3580), 1, - sym_bracketed_type, - STATE(3659), 1, - sym_function_modifiers, - ACTIONS(3442), 2, - anon_sym_gen, - anon_sym_union, - STATE(1504), 2, - sym_line_comment, - sym_block_comment, - STATE(1805), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1293), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3444), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3434), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [30655] = 6, + [30180] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3307), 1, + ACTIONS(3305), 1, + anon_sym_BANG, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(3311), 1, + anon_sym_move, + ACTIONS(3939), 1, anon_sym_COLON_COLON, - STATE(1505), 2, + STATE(1372), 1, + sym_block, + STATE(3547), 1, + sym_label, + STATE(1498), 2, sym_line_comment, sym_block_comment, ACTIONS(3303), 15, @@ -139007,13 +138530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3301), 28, - anon_sym_SEMI, + ACTIONS(3301), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139033,123 +138553,64 @@ 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, - [30716] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(389), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1506), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(387), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30802] = 19, + [30251] = 25, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1657), 1, - anon_sym_DASH, - ACTIONS(1681), 1, - aux_sym_string_literal_token1, - ACTIONS(1689), 1, - sym__raw_string_literal_start, - ACTIONS(3645), 1, + ACTIONS(1303), 1, + anon_sym_fn, + ACTIONS(1311), 1, + anon_sym_extern, + ACTIONS(3181), 1, + anon_sym_for, + ACTIONS(3426), 1, anon_sym_COLON_COLON, - ACTIONS(3657), 1, - sym_identifier, - ACTIONS(3663), 1, + ACTIONS(3428), 1, + anon_sym_default, + ACTIONS(3436), 1, sym_metavariable, - STATE(2628), 1, - sym_scoped_identifier, - STATE(2854), 1, - sym__literal_pattern, - STATE(3515), 1, - sym_bracketed_type, - STATE(3527), 1, + ACTIONS(3945), 1, + sym_identifier, + STATE(1572), 1, + sym_for_lifetimes, + STATE(1937), 1, + sym_scoped_type_identifier, + STATE(1965), 1, + sym_generic_type, + STATE(2204), 1, + aux_sym_function_modifiers_repeat1, + STATE(2386), 1, + sym_extern_modifier, + STATE(3344), 1, sym_generic_type_with_turbofish, - ACTIONS(1683), 2, - anon_sym_true, - anon_sym_false, - STATE(1507), 2, + STATE(3417), 1, + sym_function_modifiers, + STATE(3477), 1, + sym_bracketed_type, + STATE(3571), 1, + sym_scoped_identifier, + ACTIONS(3432), 2, + anon_sym_gen, + anon_sym_union, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3661), 3, + STATE(2013), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1297), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3434), 3, sym_self, sym_super, sym_crate, - STATE(2344), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3659), 20, + ACTIONS(3424), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139167,107 +138628,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [30888] = 10, + [30350] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - STATE(1508), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3893), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3951), 1, anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(3971), 1, + anon_sym_DOT_DOT, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3891), 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, + ACTIONS(3973), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30956] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3382), 1, - anon_sym_LBRACE, - ACTIONS(3384), 1, - anon_sym_COLON_COLON, - ACTIONS(3991), 1, - anon_sym_BANG, - STATE(1444), 1, - sym_field_initializer_list, - STATE(1509), 2, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, - anon_sym_PLUS, + ACTIONS(3949), 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(1489), 24, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3801), 7, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139278,56 +138698,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [31022] = 13, + [30442] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3977), 1, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3971), 2, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3971), 1, + anon_sym_DOT_DOT, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1510), 2, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3973), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3891), 25, + ACTIONS(3967), 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_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139338,56 +138765,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31096] = 12, + [30532] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3971), 2, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3971), 1, + anon_sym_DOT_DOT, + ACTIONS(3977), 1, + anon_sym_EQ, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1511), 2, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3973), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3891), 25, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3975), 17, 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, @@ -139398,51 +138834,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31168] = 14, + [30622] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3971), 2, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1512), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 5, - anon_sym_PIPE, + ACTIONS(3767), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3891), 25, + ACTIONS(3765), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139468,57 +138899,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31244] = 17, + [30700] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3893), 2, - anon_sym_EQ, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3971), 1, anon_sym_DOT_DOT, - ACTIONS(3971), 2, + ACTIONS(3981), 1, + anon_sym_EQ, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - STATE(1513), 2, + ACTIONS(3973), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3891), 21, + ACTIONS(3979), 17, 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, @@ -139529,61 +138966,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31326] = 18, + [30790] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3440), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + anon_sym_COLON_COLON, + ACTIONS(3983), 1, + anon_sym_BANG, + STATE(1392), 1, + sym_field_initializer_list, + STATE(1505), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1419), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3893), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1514), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3891), 20, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1421), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + 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, @@ -139595,34 +139018,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31410] = 11, + anon_sym_as, + [30856] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1515), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 9, + ACTIONS(3767), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -139632,7 +139058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3891), 25, + ACTIONS(3765), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139658,58 +139084,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31480] = 21, + [30926] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(3995), 1, - anon_sym_EQ, - ACTIONS(3997), 1, - anon_sym_DOT_DOT, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3999), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1516), 2, + ACTIONS(3987), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3993), 17, + ACTIONS(3985), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139725,122 +139147,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31570] = 21, + [31012] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(3997), 1, - anon_sym_DOT_DOT, - ACTIONS(4003), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(3971), 2, + ACTIONS(3971), 1, + anon_sym_DOT_DOT, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3999), 2, + ACTIONS(3973), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1517), 2, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4001), 17, + ACTIONS(3879), 7, 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, - [31660] = 15, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1518), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3893), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3891), 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(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139851,62 +139221,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31738] = 19, + [31104] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(3971), 2, + ACTIONS(3971), 1, + anon_sym_DOT_DOT, + ACTIONS(3991), 1, + anon_sym_EQ, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4007), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - STATE(1519), 2, + ACTIONS(3973), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4005), 19, + ACTIONS(3989), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139922,70 +139288,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [31824] = 22, + [31194] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1657), 1, + anon_sym_DASH, + ACTIONS(1681), 1, + aux_sym_string_literal_token1, + ACTIONS(1689), 1, + sym__raw_string_literal_start, + ACTIONS(3483), 1, + anon_sym_COLON_COLON, + ACTIONS(3493), 1, + sym_identifier, + ACTIONS(3499), 1, + sym_metavariable, + STATE(2527), 1, + sym_scoped_identifier, + STATE(2819), 1, + sym__literal_pattern, + STATE(3473), 1, + sym_bracketed_type, + STATE(3486), 1, + sym_generic_type_with_turbofish, + ACTIONS(1683), 2, + anon_sym_true, + anon_sym_false, + STATE(1510), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1679), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3497), 3, + sym_self, + sym_super, + sym_crate, + STATE(2361), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3495), 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, + [31280] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(3997), 1, + ACTIONS(3971), 1, anon_sym_DOT_DOT, - ACTIONS(4011), 1, + ACTIONS(3995), 1, anon_sym_EQ, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3999), 2, + ACTIONS(3973), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1520), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3873), 7, + ACTIONS(3993), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139996,24 +139424,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31916] = 11, + anon_sym_COMMA, + anon_sym_else, + [31370] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4013), 1, + ACTIONS(3997), 1, anon_sym_LPAREN, - ACTIONS(4015), 1, + ACTIONS(3999), 1, anon_sym_BANG, - ACTIONS(4017), 1, + ACTIONS(4001), 1, anon_sym_COLON_COLON, - ACTIONS(4019), 1, + ACTIONS(4003), 1, anon_sym_LT2, - STATE(1634), 1, - sym_type_arguments, - STATE(1645), 1, + STATE(1593), 1, sym_parameters, - STATE(1521), 2, + STATE(1611), 1, + sym_type_arguments, + STATE(1512), 2, sym_line_comment, sym_block_comment, ACTIONS(3293), 17, @@ -140055,66 +139485,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [31986] = 22, + [31440] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + STATE(1513), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3997), 1, - anon_sym_DOT_DOT, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3999), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1522), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3845), 7, + anon_sym_DOT_DOT, + ACTIONS(3765), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4009), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140125,63 +139535,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32078] = 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_COMMA, + anon_sym_else, + [31508] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(3997), 1, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(3971), 1, anon_sym_DOT_DOT, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3999), 2, + ACTIONS(3973), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1523), 2, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 17, + ACTIONS(3847), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140192,55 +139613,53 @@ 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, - [32168] = 19, + [31600] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1271), 1, + ACTIONS(1657), 1, anon_sym_DASH, - ACTIONS(1317), 1, + ACTIONS(1681), 1, aux_sym_string_literal_token1, - ACTIONS(1327), 1, + ACTIONS(1689), 1, sym__raw_string_literal_start, - ACTIONS(2243), 1, - anon_sym_COLON_COLON, - ACTIONS(3265), 1, + ACTIONS(3479), 1, sym_identifier, - ACTIONS(3275), 1, + ACTIONS(3483), 1, + anon_sym_COLON_COLON, + ACTIONS(3487), 1, sym_metavariable, - STATE(2085), 1, + STATE(2512), 1, sym_scoped_identifier, - STATE(2128), 1, + STATE(2790), 1, sym__literal_pattern, - STATE(3370), 1, + STATE(3473), 1, sym_bracketed_type, - STATE(3395), 1, + STATE(3486), 1, sym_generic_type_with_turbofish, - ACTIONS(1319), 2, + ACTIONS(1683), 2, anon_sym_true, anon_sym_false, - STATE(1524), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(1315), 3, + ACTIONS(1679), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3273), 3, + ACTIONS(3485), 3, sym_self, sym_super, sym_crate, - STATE(2027), 4, + STATE(2361), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3271), 20, + ACTIONS(3481), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -140261,109 +139680,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [32254] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3997), 1, - anon_sym_DOT_DOT, - ACTIONS(4023), 1, - anon_sym_EQ, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3999), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1525), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4021), 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, - [32344] = 19, + [31686] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1271), 1, + ACTIONS(1275), 1, anon_sym_DASH, - ACTIONS(1317), 1, + ACTIONS(1321), 1, aux_sym_string_literal_token1, - ACTIONS(1327), 1, + ACTIONS(1331), 1, sym__raw_string_literal_start, - ACTIONS(2243), 1, + ACTIONS(2437), 1, anon_sym_COLON_COLON, ACTIONS(3277), 1, sym_identifier, ACTIONS(3287), 1, sym_metavariable, - STATE(2071), 1, + STATE(2082), 1, sym_scoped_identifier, - STATE(2107), 1, + STATE(2094), 1, sym__literal_pattern, - STATE(3370), 1, + STATE(3328), 1, sym_bracketed_type, - STATE(3395), 1, + STATE(3354), 1, sym_generic_type_with_turbofish, - ACTIONS(1319), 2, + ACTIONS(1323), 2, anon_sym_true, anon_sym_false, - STATE(1526), 2, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(1315), 3, + ACTIONS(1319), 3, sym_float_literal, sym_integer_literal, sym_char_literal, @@ -140371,7 +139721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2027), 4, + STATE(2031), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, @@ -140397,58 +139747,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [32430] = 21, + [31772] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1517), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 6, anon_sym_CARET, - ACTIONS(3977), 1, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3765), 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, + [31846] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(3997), 1, + ACTIONS(381), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1518), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(379), 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, + [31932] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1519), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3765), 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, + [32004] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3971), 1, anon_sym_DOT_DOT, - ACTIONS(4027), 1, + ACTIONS(4007), 1, anon_sym_EQ, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3999), 2, + ACTIONS(3973), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1527), 2, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4025), 17, + ACTIONS(4005), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140466,53 +140004,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [32520] = 19, + [32094] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1657), 1, + ACTIONS(1275), 1, anon_sym_DASH, - ACTIONS(1681), 1, + ACTIONS(1321), 1, aux_sym_string_literal_token1, - ACTIONS(1689), 1, + ACTIONS(1331), 1, sym__raw_string_literal_start, - ACTIONS(3641), 1, - sym_identifier, - ACTIONS(3645), 1, + ACTIONS(2437), 1, anon_sym_COLON_COLON, - ACTIONS(3649), 1, + ACTIONS(3265), 1, + sym_identifier, + ACTIONS(3275), 1, sym_metavariable, - STATE(2655), 1, + STATE(2049), 1, sym_scoped_identifier, - STATE(2832), 1, + STATE(2114), 1, sym__literal_pattern, - STATE(3515), 1, + STATE(3328), 1, sym_bracketed_type, - STATE(3527), 1, + STATE(3354), 1, sym_generic_type_with_turbofish, - ACTIONS(1683), 2, + ACTIONS(1323), 2, anon_sym_true, anon_sym_false, - STATE(1528), 2, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(1679), 3, + ACTIONS(1319), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3647), 3, + ACTIONS(3273), 3, sym_self, sym_super, sym_crate, - STATE(2344), 4, + STATE(2031), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3643), 20, + ACTIONS(3271), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -140533,66 +140071,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [32606] = 22, + [32180] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1522), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 5, anon_sym_PIPE, - ACTIONS(3981), 1, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3765), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, - ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(3997), 1, - anon_sym_DOT_DOT, - ACTIONS(4011), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_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, + [32256] = 17, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3767), 2, anon_sym_EQ, - ACTIONS(3971), 2, + anon_sym_DOT_DOT, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3999), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1529), 2, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3801), 7, + ACTIONS(3765), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4009), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140603,63 +140194,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32698] = 21, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [32338] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3997), 1, - anon_sym_DOT_DOT, - ACTIONS(4031), 1, + ACTIONS(3767), 2, anon_sym_EQ, - ACTIONS(3971), 2, + anon_sym_DOT_DOT, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3999), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1530), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4029), 17, + ACTIONS(3765), 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, @@ -140670,80 +140260,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32788] = 6, + [32422] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4035), 1, - anon_sym_LPAREN, - STATE(1531), 2, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4009), 1, + anon_sym_LBRACE, + ACTIONS(4011), 1, + anon_sym_COLON_COLON, + STATE(1827), 1, + sym_field_initializer_list, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(4038), 9, - anon_sym_LBRACK, + ACTIONS(1419), 15, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_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_SQUOTE, - sym_metavariable, - ACTIONS(4033), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32847] = 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1421), 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, + [32487] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3295), 1, + anon_sym_BANG, ACTIONS(4013), 1, - anon_sym_LPAREN, - ACTIONS(4019), 1, - anon_sym_LT2, - ACTIONS(4040), 1, anon_sym_COLON_COLON, - STATE(1634), 1, - sym_type_arguments, - STATE(1645), 1, - sym_parameters, - STATE(1532), 2, + STATE(1392), 1, + sym_field_initializer_list, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(3325), 17, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140754,16 +140345,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3323), 20, + ACTIONS(1421), 24, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140775,74 +140365,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [32914] = 5, + [32550] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1533), 2, + ACTIONS(3997), 1, + anon_sym_LPAREN, + ACTIONS(4003), 1, + anon_sym_LT2, + ACTIONS(4015), 1, + anon_sym_COLON_COLON, + STATE(1593), 1, + sym_parameters, + STATE(1611), 1, + sym_type_arguments, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3315), 17, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3541), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32971] = 5, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3313), 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, + [32617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1534), 2, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(4044), 10, + ACTIONS(4019), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -140853,7 +140451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4042), 32, + ACTIONS(4017), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -140886,17 +140484,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33028] = 6, + [32674] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4046), 1, - anon_sym_COLON_COLON, - STATE(1535), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(4038), 9, + ACTIONS(4023), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -140904,9 +140500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_AMP, anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4033), 32, + ACTIONS(4021), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -140939,73 +140536,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33087] = 5, + [32731] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1536), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4051), 10, + ACTIONS(3997), 1, 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(4049), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33144] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3307), 1, + ACTIONS(4003), 1, + anon_sym_LT2, + ACTIONS(4015), 1, anon_sym_COLON_COLON, - ACTIONS(3465), 1, - anon_sym_BANG, - ACTIONS(4053), 1, - sym_identifier, - STATE(1537), 2, + STATE(1593), 1, + sym_parameters, + STATE(1611), 1, + sym_type_arguments, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 16, + ACTIONS(3321), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141016,17 +140565,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, - anon_sym_as, - ACTIONS(3301), 23, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3319), 20, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141038,23 +140586,22 @@ 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, - [33207] = 5, + anon_sym_as, + [32798] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1538), 2, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 10, + ACTIONS(4027), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -141065,7 +140612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3565), 32, + ACTIONS(4025), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -141098,25 +140645,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33264] = 10, + [32855] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4013), 1, + ACTIONS(3997), 1, anon_sym_LPAREN, - ACTIONS(4019), 1, + ACTIONS(4003), 1, anon_sym_LT2, - ACTIONS(4040), 1, + ACTIONS(4015), 1, anon_sym_COLON_COLON, - STATE(1634), 1, - sym_type_arguments, - STATE(1645), 1, + STATE(1593), 1, sym_parameters, - STATE(1539), 2, + STATE(1611), 1, + sym_type_arguments, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(3315), 17, + ACTIONS(3325), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141134,7 +140681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 20, + ACTIONS(3323), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -141155,21 +140702,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33331] = 8, + [32922] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_BANG, - ACTIONS(4055), 1, + ACTIONS(3307), 1, anon_sym_COLON_COLON, - STATE(1444), 1, - sym_field_initializer_list, - STATE(1540), 2, + ACTIONS(3382), 1, + anon_sym_BANG, + ACTIONS(4029), 1, + sym_identifier, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3303), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141185,10 +140732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 24, + anon_sym_as, + ACTIONS(3301), 23, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141208,18 +140757,70 @@ 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, - [33394] = 5, + [32985] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1541), 2, + ACTIONS(4035), 1, + anon_sym_COLON_COLON, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(4059), 10, + ACTIONS(4033), 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(4031), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33044] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4038), 1, + anon_sym_LPAREN, + STATE(1535), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4033), 9, anon_sym_LBRACK, anon_sym_STAR, anon_sym_QMARK, @@ -141229,7 +140830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4057), 32, + ACTIONS(4031), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -141262,25 +140863,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33451] = 10, + [33103] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4013), 1, + ACTIONS(3997), 1, anon_sym_LPAREN, - ACTIONS(4019), 1, + ACTIONS(4003), 1, anon_sym_LT2, - ACTIONS(4040), 1, - anon_sym_COLON_COLON, - STATE(1634), 1, - sym_type_arguments, - STATE(1645), 1, + STATE(1601), 1, sym_parameters, - STATE(1542), 2, + STATE(1613), 1, + sym_type_arguments, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 17, + ACTIONS(3329), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141298,7 +140897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3319), 20, + ACTIONS(3327), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -141319,29 +140918,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33518] = 9, + [33167] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4015), 1, - anon_sym_BANG, - ACTIONS(4061), 1, + ACTIONS(3629), 1, anon_sym_LBRACE, - ACTIONS(4063), 1, - anon_sym_COLON_COLON, - STATE(1769), 1, - sym_field_initializer_list, - STATE(1543), 2, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3343), 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, @@ -141351,7 +140945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 23, + ACTIONS(3345), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141374,18 +140968,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [33583] = 6, + [33225] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3619), 1, + ACTIONS(3627), 1, anon_sym_LBRACE, - STATE(1544), 2, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(3378), 16, + ACTIONS(3359), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141402,7 +140997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3380), 24, + ACTIONS(3361), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141427,19 +141022,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [33641] = 7, + [33283] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_BANG, - ACTIONS(3959), 1, - anon_sym_COLON_COLON, - STATE(1545), 2, + ACTIONS(3997), 1, + anon_sym_LPAREN, + ACTIONS(4003), 1, + anon_sym_LT2, + STATE(1601), 1, + sym_parameters, + STATE(1613), 1, + sym_type_arguments, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, + ACTIONS(3353), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141450,12 +141049,60 @@ 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(3301), 24, + ACTIONS(3351), 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, + [33347] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1540), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3343), 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(3345), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -141478,37 +141125,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_SQUOTE, anon_sym_as, - [33701] = 6, + [33403] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3569), 1, - anon_sym_LBRACE, - STATE(1546), 2, + ACTIONS(3997), 1, + anon_sym_LPAREN, + ACTIONS(4003), 1, + anon_sym_LT2, + STATE(1601), 1, + sym_parameters, + STATE(1613), 1, + sym_type_arguments, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(3358), 16, + ACTIONS(3349), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3360), 24, - anon_sym_LPAREN, + ACTIONS(3347), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -141522,27 +141176,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_COLON_COLON, anon_sym_as, - [33759] = 6, + [33467] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3533), 1, + ACTIONS(3559), 1, anon_sym_LBRACE, - STATE(1547), 2, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(3366), 16, + ACTIONS(3335), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141559,7 +141210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3368), 24, + ACTIONS(3337), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141584,15 +141235,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [33817] = 5, + [33525] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1548), 2, + ACTIONS(3605), 1, + anon_sym_LBRACE, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(3335), 16, + ACTIONS(3371), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141609,10 +141262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3337), 25, + ACTIONS(3373), 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, @@ -141633,21 +141286,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [33873] = 7, + [33583] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3335), 1, + ACTIONS(3359), 1, anon_sym_BANG, - ACTIONS(3337), 1, + ACTIONS(3361), 1, anon_sym_COLON_COLON, - STATE(1549), 2, + STATE(1544), 2, sym_line_comment, sym_block_comment, - ACTIONS(3333), 17, + ACTIONS(3357), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141665,7 +141317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3331), 22, + ACTIONS(3355), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141688,34 +141340,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_LT2, - [33933] = 6, + [33643] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3625), 1, - anon_sym_LBRACE, - STATE(1550), 2, + ACTIONS(3335), 1, + anon_sym_BANG, + ACTIONS(3337), 1, + anon_sym_COLON_COLON, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(3335), 16, + ACTIONS(3333), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3337), 24, + ACTIONS(3331), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141730,30 +141385,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_COLON_COLON, anon_sym_as, - [33991] = 9, + anon_sym_LT2, + [33703] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4013), 1, - anon_sym_LPAREN, - ACTIONS(4019), 1, - anon_sym_LT2, - STATE(1635), 1, - sym_type_arguments, - STATE(1646), 1, - sym_parameters, - STATE(1551), 2, + ACTIONS(3343), 1, + anon_sym_BANG, + ACTIONS(3345), 1, + anon_sym_COLON_COLON, + STATE(1546), 2, sym_line_comment, sym_block_comment, ACTIONS(3341), 17, @@ -141774,7 +141423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3339), 20, + ACTIONS(3339), 22, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -141795,25 +141445,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34055] = 7, + anon_sym_LT2, + [33763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_BANG, - ACTIONS(4065), 1, - anon_sym_COLON_COLON, - STATE(1552), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3335), 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, @@ -141823,7 +141471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 24, + ACTIONS(3337), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -141846,17 +141494,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [34115] = 5, + [33819] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1553), 2, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(3358), 16, + ACTIONS(3359), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141873,7 +141522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3360), 25, + ACTIONS(3361), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -141899,43 +141548,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [34171] = 9, + [33875] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4013), 1, - anon_sym_LPAREN, - ACTIONS(4019), 1, - anon_sym_LT2, - STATE(1635), 1, - sym_type_arguments, - STATE(1646), 1, - sym_parameters, - STATE(1554), 2, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(3329), 17, + ACTIONS(3371), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3327), 20, + ACTIONS(3373), 25, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141947,29 +141588,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [34235] = 5, + [33931] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1555), 2, + ACTIONS(3899), 1, + anon_sym_COLON_COLON, + ACTIONS(3983), 1, + anon_sym_BANG, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(3378), 16, + ACTIONS(1419), 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, @@ -141979,10 +141627,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3380), 25, + ACTIONS(1421), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142002,26 +141651,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_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [34291] = 9, + [33991] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4013), 1, + ACTIONS(3997), 1, anon_sym_LPAREN, - ACTIONS(4019), 1, + ACTIONS(4003), 1, anon_sym_LT2, - STATE(1635), 1, - sym_type_arguments, - STATE(1646), 1, + STATE(1601), 1, sym_parameters, - STATE(1556), 2, + STATE(1613), 1, + sym_type_arguments, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 17, + ACTIONS(3365), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142039,7 +141686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3370), 20, + ACTIONS(3363), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -142060,23 +141707,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34355] = 9, + [34055] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4013), 1, - anon_sym_LPAREN, - ACTIONS(4019), 1, - anon_sym_LT2, - STATE(1635), 1, - sym_type_arguments, - STATE(1646), 1, - sym_parameters, - STATE(1557), 2, + ACTIONS(3371), 1, + anon_sym_BANG, + ACTIONS(3373), 1, + anon_sym_COLON_COLON, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(3345), 17, + ACTIONS(3369), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142094,7 +141737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3343), 20, + ACTIONS(3367), 22, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -142115,19 +141759,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34419] = 7, + anon_sym_LT2, + [34115] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3366), 1, + ACTIONS(3305), 1, anon_sym_BANG, - ACTIONS(3368), 1, + ACTIONS(3939), 1, anon_sym_COLON_COLON, - STATE(1558), 2, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(3364), 17, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142138,17 +141783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3362), 22, + ACTIONS(3301), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142160,27 +141803,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_LT2, - [34479] = 7, + [34175] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_COLON_COLON, - ACTIONS(3991), 1, + ACTIONS(3295), 1, anon_sym_BANG, - STATE(1559), 2, + ACTIONS(4041), 1, + anon_sym_COLON_COLON, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142196,11 +141841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 24, - anon_sym_SEMI, + ACTIONS(1421), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142220,16 +141864,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [34539] = 5, + [34235] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1560), 2, + ACTIONS(897), 1, + anon_sym_RBRACK, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4043), 1, + anon_sym_SEMI, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4049), 1, + anon_sym_COMMA, + STATE(2939), 1, + aux_sym_arguments_repeat1, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1555), 2, sym_line_comment, sym_block_comment, - ACTIONS(3366), 16, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34330] = 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(3359), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142246,10 +141961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3368), 25, + ACTIONS(3361), 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, @@ -142270,21 +141985,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [34595] = 7, + [34385] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 1, - anon_sym_BANG, - ACTIONS(3360), 1, - anon_sym_COLON_COLON, - STATE(1561), 2, + ACTIONS(4051), 1, + anon_sym_SQUOTE, + STATE(1812), 1, + sym_label, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(3356), 17, + ACTIONS(3471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142295,14 +142009,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(3354), 22, + ACTIONS(3469), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142317,45 +142029,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [34655] = 7, + [34444] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 1, - anon_sym_BANG, - ACTIONS(3380), 1, - anon_sym_COLON_COLON, - STATE(1562), 2, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(3376), 17, + ACTIONS(3335), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 22, + ACTIONS(3337), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142370,74 +142078,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_LT2, - [34715] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [34499] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4071), 1, + ACTIONS(3745), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1559), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3747), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_AMP_AMP, - ACTIONS(4079), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4085), 1, - anon_sym_EQ, - ACTIONS(4091), 1, - anon_sym_DOT_DOT, - STATE(407), 1, - sym_block, - STATE(3600), 1, - sym_label, - ACTIONS(4067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4093), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1563), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4069), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4083), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3743), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142448,66 +142132,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34810] = 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, + [34556] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(881), 1, - anon_sym_RBRACK, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, + STATE(1560), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3371), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3977), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4095), 1, - anon_sym_SEMI, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4101), 1, - anon_sym_COMMA, - STATE(2999), 1, - aux_sym_arguments_repeat1, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1564), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3373), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142518,17 +142181,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34905] = 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_COLON_COLON, + anon_sym_as, + [34611] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3915), 1, + ACTIONS(3787), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - STATE(1565), 2, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(3675), 15, + ACTIONS(3747), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142544,10 +142216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3673), 24, + ACTIONS(3743), 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, @@ -142567,68 +142239,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [34962] = 25, + [34668] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(923), 1, - anon_sym_RBRACK, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, + STATE(1562), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3557), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4103), 1, - anon_sym_SEMI, - ACTIONS(4105), 1, - anon_sym_COMMA, - STATE(2783), 1, - aux_sym_arguments_repeat1, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1566), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3555), 25, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142639,15 +142282,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35057] = 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_COLON_COLON, + anon_sym_as, + [34723] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1567), 2, + STATE(1563), 2, sym_line_comment, sym_block_comment, - ACTIONS(3583), 15, + ACTIONS(3573), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142663,7 +142314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3581), 25, + ACTIONS(3571), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -142689,17 +142340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35112] = 6, + [34778] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3881), 1, - anon_sym_COLON_COLON, - STATE(1568), 2, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(3675), 15, + ACTIONS(3591), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142715,10 +142364,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3673), 24, + ACTIONS(3589), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142738,17 +142388,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_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [35169] = 5, + [34833] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1569), 2, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(3613), 15, + ACTIONS(3599), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142764,7 +142414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3611), 25, + ACTIONS(3597), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -142790,19 +142440,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35224] = 7, + [34888] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4107), 1, - anon_sym_SQUOTE, - STATE(1719), 1, - sym_label, - STATE(1570), 2, + ACTIONS(4053), 1, + anon_sym_else, + STATE(1689), 1, + sym_else_clause, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(3639), 15, + ACTIONS(1253), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142818,7 +142468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3637), 23, + ACTIONS(1251), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142842,66 +142492,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35283] = 25, + [34947] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(3749), 1, + ACTIONS(867), 1, + anon_sym_RBRACK, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4071), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4075), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4079), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4085), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4091), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - STATE(1411), 1, - sym_block, - STATE(3589), 1, - sym_label, - ACTIONS(4067), 2, + ACTIONS(4055), 1, + anon_sym_SEMI, + ACTIONS(4057), 1, + anon_sym_COMMA, + STATE(2966), 1, + aux_sym_arguments_repeat1, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4081), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4093), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1571), 2, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4087), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4083), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142912,91 +142562,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35378] = 7, + [35042] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4109), 1, - anon_sym_else, - STATE(1699), 1, - sym_else_clause, - STATE(1572), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1253), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(925), 1, + anon_sym_RBRACK, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4059), 1, + anon_sym_SEMI, + ACTIONS(4061), 1, + anon_sym_COMMA, + STATE(2750), 1, + aux_sym_arguments_repeat1, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1251), 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(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [35437] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1445), 1, - sym_label, - STATE(1573), 2, + STATE(1568), 2, sym_line_comment, sym_block_comment, - ACTIONS(3639), 15, - anon_sym_PLUS, + ACTIONS(3949), 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(3637), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143007,49 +142632,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [35494] = 7, + [35137] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4015), 1, - anon_sym_BANG, - ACTIONS(4111), 1, - anon_sym_COLON_COLON, - STATE(1574), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1487), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1017), 1, + anon_sym_RBRACK, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4063), 1, + anon_sym_SEMI, + ACTIONS(4065), 1, + anon_sym_COMMA, + STATE(2928), 1, + aux_sym_arguments_repeat1, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1489), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1569), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143060,14 +142702,7 @@ 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, - [35553] = 25, + [35232] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -143076,13 +142711,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, ACTIONS(4071), 1, anon_sym_CARET, @@ -143098,9 +142733,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(4091), 1, anon_sym_DOT_DOT, - STATE(1401), 1, + STATE(1458), 1, sym_block, - STATE(3589), 1, + STATE(3547), 1, sym_label, ACTIONS(4067), 2, anon_sym_PLUS, @@ -143114,7 +142749,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4093), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1575), 2, + STATE(1570), 2, sym_line_comment, sym_block_comment, ACTIONS(4069), 3, @@ -143137,16 +142772,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35648] = 7, + [35327] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3717), 1, + ACTIONS(3821), 1, anon_sym_BANG, - ACTIONS(3719), 1, + ACTIONS(3823), 1, anon_sym_COLON_COLON, - STATE(1576), 2, + STATE(1571), 2, sym_line_comment, sym_block_comment, ACTIONS(3303), 15, @@ -143189,106 +142824,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35707] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1577), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3366), 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(3368), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [35762] = 22, + [35386] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1307), 1, + ACTIONS(1311), 1, anon_sym_extern, - ACTIONS(3414), 1, + ACTIONS(3426), 1, anon_sym_COLON_COLON, - ACTIONS(3424), 1, - sym_metavariable, - ACTIONS(3452), 1, + ACTIONS(3428), 1, anon_sym_default, - ACTIONS(4113), 1, + ACTIONS(3436), 1, + sym_metavariable, + ACTIONS(4095), 1, sym_identifier, - ACTIONS(4115), 1, + ACTIONS(4097), 1, anon_sym_fn, - STATE(2250), 1, + STATE(2204), 1, aux_sym_function_modifiers_repeat1, - STATE(2365), 1, + STATE(2386), 1, sym_extern_modifier, - STATE(2554), 1, + STATE(2661), 1, sym_scoped_type_identifier, - STATE(3369), 1, - sym_scoped_identifier, - STATE(3385), 1, + STATE(3335), 1, + sym_generic_type, + STATE(3344), 1, sym_generic_type_with_turbofish, - STATE(3447), 1, - sym_function_modifiers, - STATE(3519), 1, + STATE(3477), 1, sym_bracketed_type, - STATE(3596), 1, - sym_generic_type, - ACTIONS(3418), 2, + STATE(3519), 1, + sym_function_modifiers, + STATE(3571), 1, + sym_scoped_identifier, + ACTIONS(3432), 2, anon_sym_gen, anon_sym_union, - STATE(1578), 2, + STATE(1572), 2, sym_line_comment, sym_block_comment, - ACTIONS(1293), 3, + ACTIONS(1297), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3422), 3, + ACTIONS(3434), 3, sym_self, sym_super, sym_crate, - ACTIONS(3450), 17, + ACTIONS(3424), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143306,40 +142891,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [35851] = 6, + [35475] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4085), 1, + anon_sym_EQ, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + STATE(390), 1, + sym_block, + STATE(3522), 1, + sym_label, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4089), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1573), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4083), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35570] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3915), 2, + ACTIONS(343), 1, anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1579), 2, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4085), 1, + anon_sym_EQ, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + STATE(1378), 1, + sym_block, + STATE(3547), 1, + sym_label, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4089), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(3675), 15, - anon_sym_PLUS, + ACTIONS(4069), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4083), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35665] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4085), 1, + anon_sym_EQ, + ACTIONS(4091), 1, + anon_sym_DOT_DOT, + STATE(409), 1, + sym_block, + STATE(3522), 1, + sym_label, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3673), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4093), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1575), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143350,19 +143101,14 @@ 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, - [35908] = 5, + [35760] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1580), 2, + STATE(1473), 1, + sym_label, + STATE(1576), 2, sym_line_comment, sym_block_comment, ACTIONS(3471), 15, @@ -143381,11 +143127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3469), 25, + ACTIONS(3469), 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, @@ -143405,24 +143150,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_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [35963] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [35817] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1229), 1, + anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, ACTIONS(4071), 1, anon_sym_CARET, @@ -143438,9 +143183,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(4091), 1, anon_sym_DOT_DOT, - STATE(397), 1, + STATE(468), 1, sym_block, - STATE(3600), 1, + STATE(3596), 1, sym_label, ACTIONS(4067), 2, anon_sym_PLUS, @@ -143454,7 +143199,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4093), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1581), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, ACTIONS(4069), 3, @@ -143477,22 +143222,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36058] = 25, + [35912] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(1229), 1, anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, ACTIONS(4071), 1, anon_sym_CARET, @@ -143508,9 +143253,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(4091), 1, anon_sym_DOT_DOT, - STATE(483), 1, + STATE(476), 1, sym_block, - STATE(3637), 1, + STATE(3596), 1, sym_label, ACTIONS(4067), 2, anon_sym_PLUS, @@ -143524,7 +143269,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4093), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1582), 2, + STATE(1578), 2, sym_line_comment, sym_block_comment, ACTIONS(4069), 3, @@ -143547,7 +143292,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36153] = 25, + [36007] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1579), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3343), 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(3345), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [36062] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -143556,13 +143351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, ACTIONS(4071), 1, anon_sym_CARET, @@ -143578,9 +143373,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(4091), 1, anon_sym_DOT_DOT, - STATE(1718), 1, + STATE(1695), 1, sym_block, - STATE(3638), 1, + STATE(3597), 1, sym_label, ACTIONS(4067), 2, anon_sym_PLUS, @@ -143594,7 +143389,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4093), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1583), 2, + STATE(1580), 2, sym_line_comment, sym_block_comment, ACTIONS(4069), 3, @@ -143617,7 +143412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36248] = 25, + [36157] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -143626,13 +143421,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, ACTIONS(4071), 1, anon_sym_CARET, @@ -143648,9 +143443,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(4091), 1, anon_sym_DOT_DOT, - STATE(1733), 1, + STATE(1700), 1, sym_block, - STATE(3638), 1, + STATE(3597), 1, sym_label, ACTIONS(4067), 2, anon_sym_PLUS, @@ -143664,7 +143459,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4093), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1584), 2, + STATE(1581), 2, sym_line_comment, sym_block_comment, ACTIONS(4069), 3, @@ -143687,15 +143482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36343] = 5, + [36252] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1585), 2, + ACTIONS(3939), 1, + anon_sym_COLON_COLON, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(3479), 15, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143711,11 +143508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3477), 25, + ACTIONS(3301), 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, @@ -143735,19 +143531,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [36398] = 6, + [36309] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3959), 1, + ACTIONS(4099), 1, anon_sym_COLON_COLON, - STATE(1586), 2, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143763,7 +143559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3301), 24, + ACTIONS(1421), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -143788,17 +143584,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [36455] = 6, + [36366] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4117), 1, + ACTIONS(3999), 1, + anon_sym_BANG, + ACTIONS(4101), 1, anon_sym_COLON_COLON, - STATE(1587), 2, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143814,10 +143612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 24, + ACTIONS(1421), 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, @@ -143837,58 +143635,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_SQUOTE, anon_sym_as, - [36512] = 22, + [36425] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1307), 1, + ACTIONS(1311), 1, anon_sym_extern, - ACTIONS(3414), 1, + ACTIONS(3426), 1, anon_sym_COLON_COLON, - ACTIONS(3424), 1, - sym_metavariable, - ACTIONS(3452), 1, + ACTIONS(3428), 1, anon_sym_default, - ACTIONS(4119), 1, + ACTIONS(3436), 1, + sym_metavariable, + ACTIONS(4103), 1, sym_identifier, - ACTIONS(4121), 1, + ACTIONS(4105), 1, anon_sym_fn, - STATE(2250), 1, + STATE(2204), 1, aux_sym_function_modifiers_repeat1, - STATE(2365), 1, + STATE(2386), 1, sym_extern_modifier, - STATE(2639), 1, + STATE(2716), 1, sym_scoped_type_identifier, - STATE(3369), 1, - sym_scoped_identifier, - STATE(3385), 1, + STATE(3335), 1, + sym_generic_type, + STATE(3344), 1, sym_generic_type_with_turbofish, - STATE(3416), 1, + STATE(3375), 1, sym_function_modifiers, - STATE(3519), 1, + STATE(3477), 1, sym_bracketed_type, - STATE(3596), 1, - sym_generic_type, - ACTIONS(3418), 2, + STATE(3571), 1, + sym_scoped_identifier, + ACTIONS(3432), 2, anon_sym_gen, anon_sym_union, - STATE(1588), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(1293), 3, + ACTIONS(1297), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3422), 3, + ACTIONS(3434), 3, sym_self, sym_super, sym_crate, - ACTIONS(3450), 17, + ACTIONS(3424), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143906,22 +143703,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [36601] = 5, + [36514] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1589), 2, + ACTIONS(3787), 1, + anon_sym_COLON_COLON, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(3358), 16, + ACTIONS(3747), 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, @@ -143931,10 +143729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3360), 24, + ACTIONS(3743), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143954,140 +143752,86 @@ 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, - [36656] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(893), 1, - anon_sym_RBRACK, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, + anon_sym_SQUOTE, anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4123), 1, - anon_sym_SEMI, - ACTIONS(4125), 1, - anon_sym_COMMA, - STATE(2837), 1, - aux_sym_arguments_repeat1, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, + [36571] = 22, + ACTIONS(29), 1, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1590), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1591), 2, + ACTIONS(1311), 1, + anon_sym_extern, + ACTIONS(3426), 1, + anon_sym_COLON_COLON, + ACTIONS(3428), 1, + anon_sym_default, + ACTIONS(3436), 1, + sym_metavariable, + ACTIONS(4107), 1, + sym_identifier, + ACTIONS(4109), 1, + anon_sym_fn, + STATE(2204), 1, + aux_sym_function_modifiers_repeat1, + STATE(2386), 1, + sym_extern_modifier, + STATE(2596), 1, + sym_scoped_type_identifier, + STATE(3335), 1, + sym_generic_type, + STATE(3344), 1, + sym_generic_type_with_turbofish, + STATE(3477), 1, + sym_bracketed_type, + STATE(3492), 1, + sym_function_modifiers, + STATE(3571), 1, + sym_scoped_identifier, + ACTIONS(3432), 2, + anon_sym_gen, + anon_sym_union, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(3378), 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(3380), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [36806] = 6, + ACTIONS(1297), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3434), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3424), 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, + [36660] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3881), 2, - anon_sym_LBRACE, + ACTIONS(3745), 1, anon_sym_COLON_COLON, - STATE(1592), 2, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(3675), 15, + ACTIONS(3747), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144103,10 +143847,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3673), 23, + ACTIONS(3743), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -144126,117 +143870,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, anon_sym_as, - [36863] = 5, + [36717] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1593), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3335), 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, + ACTIONS(347), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3337), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [36918] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(903), 1, - anon_sym_RBRACK, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4111), 1, anon_sym_DOT_DOT, - ACTIONS(4127), 1, - anon_sym_SEMI, - ACTIONS(4129), 1, - anon_sym_COMMA, - STATE(2946), 1, - aux_sym_arguments_repeat1, - ACTIONS(3971), 2, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4113), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1594), 2, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(341), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144247,89 +143936,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37013] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1307), 1, - anon_sym_extern, - ACTIONS(3414), 1, - anon_sym_COLON_COLON, - ACTIONS(3424), 1, - sym_metavariable, - ACTIONS(3452), 1, - anon_sym_default, - ACTIONS(4131), 1, - sym_identifier, - ACTIONS(4133), 1, - anon_sym_fn, - STATE(2250), 1, - aux_sym_function_modifiers_repeat1, - STATE(2365), 1, - sym_extern_modifier, - STATE(2552), 1, - sym_scoped_type_identifier, - STATE(3369), 1, - sym_scoped_identifier, - STATE(3385), 1, - sym_generic_type_with_turbofish, - STATE(3519), 1, - sym_bracketed_type, - STATE(3533), 1, - sym_function_modifiers, - STATE(3596), 1, - sym_generic_type, - ACTIONS(3418), 2, - anon_sym_gen, - anon_sym_union, - STATE(1595), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1293), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3422), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3450), 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, - [37102] = 25, + anon_sym_SQUOTE, + [36803] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, ACTIONS(4071), 1, anon_sym_CARET, @@ -144343,12 +143962,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(4085), 1, anon_sym_EQ, - ACTIONS(4091), 1, + ACTIONS(4111), 1, anon_sym_DOT_DOT, - STATE(467), 1, - sym_block, - STATE(3637), 1, - sym_label, ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, @@ -144358,12 +143973,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4093), 2, + ACTIONS(4113), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1596), 2, + STATE(1590), 2, sym_line_comment, sym_block_comment, + ACTIONS(3847), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, @@ -144384,15 +144003,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37197] = 5, + [36891] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1597), 2, + ACTIONS(4115), 1, + anon_sym_LPAREN, + STATE(1771), 1, + sym_arguments, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(3629), 15, + ACTIONS(3619), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144408,8 +144031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3627), 24, - anon_sym_LPAREN, + ACTIONS(3615), 22, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -144431,66 +144053,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, - [37251] = 24, + [36949] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, + STATE(1592), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3603), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4135), 1, - anon_sym_RPAREN, - ACTIONS(4137), 1, - anon_sym_COMMA, - STATE(2876), 1, - aux_sym_arguments_repeat1, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1598), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3601), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144501,17 +144095,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37343] = 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_DASH_GT, + anon_sym_as, + [37003] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4139), 1, + ACTIONS(4117), 1, anon_sym_DASH_GT, - STATE(1599), 2, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 15, + ACTIONS(3517), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144527,7 +144129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3521), 23, + ACTIONS(3515), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144551,83 +144153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37399] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(933), 1, - anon_sym_RBRACK, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4141), 1, - anon_sym_COMMA, - STATE(2888), 1, - aux_sym_arguments_repeat1, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1600), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37491] = 5, + [37059] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1601), 2, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(3617), 15, + ACTIONS(1387), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144643,7 +144177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3615), 24, + ACTIONS(1385), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144666,19 +144200,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_DASH_GT, anon_sym_as, - [37545] = 6, + anon_sym_else, + [37113] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4143), 1, - anon_sym_COLON_COLON, - STATE(1602), 2, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(1259), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144694,7 +144226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3370), 23, + ACTIONS(1257), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144718,192 +144250,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37601] = 18, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_else, + [37167] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4145), 1, - sym_identifier, - ACTIONS(4147), 1, - anon_sym_LBRACE, - ACTIONS(4149), 1, - anon_sym_RBRACE, - ACTIONS(4151), 1, - anon_sym_STAR, - ACTIONS(4155), 1, - anon_sym_COMMA, - ACTIONS(4157), 1, - anon_sym_COLON_COLON, - ACTIONS(4161), 1, - sym_metavariable, - STATE(2486), 1, - sym_scoped_identifier, - STATE(3056), 1, - sym__use_clause, - STATE(3408), 1, - sym_generic_type_with_turbofish, - STATE(3426), 1, - sym_bracketed_type, - STATE(1603), 2, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(4159), 3, - sym_self, - sym_super, - sym_crate, - STATE(3045), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4153), 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, - [37681] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(943), 1, - anon_sym_RPAREN, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4163), 1, - anon_sym_COMMA, - STATE(2952), 1, - aux_sym_arguments_repeat1, - ACTIONS(3971), 2, + ACTIONS(1335), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1604), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37773] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1605), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4165), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1333), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144914,17 +144292,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37861] = 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, + anon_sym_else, + [37221] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - STATE(1606), 2, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(1369), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144940,7 +144324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3370), 23, + ACTIONS(1367), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144964,17 +144348,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37917] = 6, + anon_sym_else, + [37275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4169), 1, - anon_sym_COLON_COLON, - STATE(1607), 2, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(1383), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144990,7 +144373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3370), 23, + ACTIONS(1381), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145014,17 +144397,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37973] = 6, + anon_sym_else, + [37329] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3719), 1, + ACTIONS(4119), 1, anon_sym_COLON_COLON, - STATE(1608), 2, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 15, + ACTIONS(3329), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145040,7 +144424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3301), 23, + ACTIONS(3327), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145064,17 +144448,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38029] = 6, + [37385] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, + ACTIONS(4121), 1, anon_sym_COLON_COLON, - STATE(1609), 2, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3329), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145090,7 +144474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 23, + ACTIONS(3327), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145114,19 +144498,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38085] = 7, + [37441] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - anon_sym_LPAREN, - STATE(1781), 1, - sym_arguments, - STATE(1610), 2, + ACTIONS(4123), 1, + anon_sym_DASH_GT, + STATE(1601), 2, sym_line_comment, sym_block_comment, - ACTIONS(3603), 15, + ACTIONS(3523), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145142,7 +144524,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3599), 22, + ACTIONS(3521), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145165,39 +144548,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38143] = 6, + [37497] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_COLON_COLON, - STATE(1611), 2, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(381), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4089), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, - anon_sym_PLUS, + ACTIONS(4069), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(379), 15, + 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, + anon_sym_SQUOTE, + [37579] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3995), 1, + anon_sym_EQ, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1489), 23, + ACTIONS(4113), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1603), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3993), 13, anon_sym_LPAREN, - anon_sym_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, @@ -145208,26 +144675,87 @@ 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, + [37665] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4007), 1, + anon_sym_EQ, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4089), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4113), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1604), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4087), 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, - [38199] = 19, + ACTIONS(4005), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_SQUOTE, + [37751] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, + ACTIONS(3991), 1, + anon_sym_EQ, ACTIONS(4071), 1, anon_sym_CARET, ACTIONS(4073), 1, @@ -145238,8 +144766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(389), 2, - anon_sym_EQ, + ACTIONS(4111), 1, anon_sym_DOT_DOT, ACTIONS(4067), 2, anon_sym_PLUS, @@ -145250,7 +144777,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - STATE(1612), 2, + ACTIONS(4113), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1605), 2, sym_line_comment, sym_block_comment, ACTIONS(4069), 3, @@ -145262,7 +144792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(387), 15, + ACTIONS(3989), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -145275,23 +144805,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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [38281] = 21, + [37837] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, ACTIONS(4071), 1, anon_sym_CARET, @@ -145303,7 +144829,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4177), 1, + ACTIONS(4085), 1, + anon_sym_EQ, + ACTIONS(4111), 1, anon_sym_DOT_DOT, ACTIONS(4067), 2, anon_sym_PLUS, @@ -145314,12 +144842,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4179), 2, + ACTIONS(4113), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1613), 2, + STATE(1606), 2, sym_line_comment, sym_block_comment, + ACTIONS(3801), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, @@ -145329,9 +144861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145342,18 +144872,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_SQUOTE, - [38367] = 6, + [37925] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4181), 1, - anon_sym_DASH_GT, - STATE(1614), 2, + ACTIONS(3823), 1, + anon_sym_COLON_COLON, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(3529), 15, + ACTIONS(3303), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145369,7 +144898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3527), 23, + ACTIONS(3301), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145393,64 +144922,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38423] = 24, + [37981] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, - anon_sym_RBRACK, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4183), 1, + ACTIONS(4125), 1, + anon_sym_RPAREN, + ACTIONS(4127), 1, anon_sym_COMMA, - STATE(3058), 1, + STATE(2789), 1, aux_sym_arguments_repeat1, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1615), 2, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38073] = 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(3491), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_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), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145461,60 +145031,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38515] = 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_COLON_COLON, + anon_sym_as, + [38127] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(943), 1, + anon_sym_RBRACK, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4031), 1, - anon_sym_EQ, - ACTIONS(4071), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4075), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4079), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4177), 1, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4067), 2, + ACTIONS(4129), 1, + anon_sym_COMMA, + STATE(2791), 1, + aux_sym_arguments_repeat1, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4081), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4179), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1616), 2, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4087), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4029), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145525,30 +145107,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_SQUOTE, - [38601] = 10, + [38219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - STATE(1617), 2, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(3503), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -145557,10 +145129,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(3891), 21, + ACTIONS(3501), 24, 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, @@ -145579,61 +145154,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_SQUOTE, - [38665] = 21, + anon_sym_COLON_COLON, + anon_sym_as, + [38273] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(955), 1, + anon_sym_RPAREN, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4027), 1, - anon_sym_EQ, - ACTIONS(4071), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4075), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4079), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4177), 1, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4067), 2, + ACTIONS(4131), 1, + anon_sym_COMMA, + STATE(2830), 1, + aux_sym_arguments_repeat1, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4081), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4179), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1618), 2, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4087), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4025), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145644,16 +145224,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, - [38751] = 5, + [38365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1619), 2, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 15, + ACTIONS(3507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145669,7 +145248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3473), 24, + ACTIONS(3505), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145692,46 +145271,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_as, - [38805] = 13, + [38419] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4073), 1, - anon_sym_AMP, - ACTIONS(4067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1620), 2, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(3333), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 6, 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(3891), 21, + ACTIONS(3331), 22, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145742,73 +145314,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_SQUOTE, - [38875] = 24, + anon_sym_as, + anon_sym_LT2, + [38473] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4077), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(4085), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4111), 1, anon_sym_DOT_DOT, - ACTIONS(4185), 1, - anon_sym_RPAREN, - ACTIONS(4187), 1, - anon_sym_COMMA, - STATE(3004), 1, - aux_sym_arguments_repeat1, - ACTIONS(3971), 2, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4113), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1621), 2, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3879), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145819,15 +145388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38967] = 5, + [38561] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1622), 2, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(3633), 15, + ACTIONS(3535), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145843,7 +145412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3631), 24, + ACTIONS(3533), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145866,17 +145435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_as, - [39021] = 5, + [38615] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1623), 2, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(3483), 15, + ACTIONS(3595), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145892,7 +145461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3481), 24, + ACTIONS(3593), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145917,43 +145486,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_DASH_GT, anon_sym_as, - [39075] = 12, + [38669] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1624), 2, + ACTIONS(4133), 1, + anon_sym_DASH_GT, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(3545), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 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(3891), 21, + ACTIONS(3543), 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, @@ -145972,16 +145535,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39143] = 5, + anon_sym_as, + [38725] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1625), 2, + ACTIONS(4135), 1, + anon_sym_COLON_COLON, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(3591), 15, + ACTIONS(3329), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145997,7 +145562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3589), 24, + ACTIONS(3327), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146020,66 +145585,40 @@ 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, - [39197] = 24, + [38781] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1023), 1, - anon_sym_RPAREN, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4137), 1, + anon_sym_COLON_COLON, + STATE(1620), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1419), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4189), 1, - anon_sym_COMMA, - STATE(3073), 1, - aux_sym_arguments_repeat1, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1626), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1421), 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, @@ -146090,43 +145629,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39289] = 14, + anon_sym_EQ_EQ, + 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, + [38837] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_AMP, - ACTIONS(4067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1627), 2, + STATE(1621), 2, sym_line_comment, sym_block_comment, ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 5, + ACTIONS(3767), 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(3891), 21, + ACTIONS(3765), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -146148,15 +145690,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [39361] = 5, + [38901] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1628), 2, + ACTIONS(4139), 1, + anon_sym_DASH_GT, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(3505), 15, + ACTIONS(3551), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146172,7 +145716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3503), 24, + ACTIONS(3549), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146195,58 +145739,97 @@ 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, + [38957] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4141), 1, anon_sym_DASH_GT, + STATE(1623), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3511), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3509), 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, - [39415] = 19, + [39013] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4071), 1, - anon_sym_CARET, ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4075), 1, - anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_AMP_AMP, - ACTIONS(4079), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4007), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1629), 2, + STATE(1624), 2, sym_line_comment, sym_block_comment, ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4005), 15, + ACTIONS(3767), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3765), 21, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146257,20 +145840,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [39497] = 6, + [39083] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4191), 1, - anon_sym_DASH_GT, - STATE(1630), 2, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(3517), 15, + ACTIONS(3563), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146286,7 +145871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3515), 23, + ACTIONS(3561), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146309,63 +145894,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_DASH_GT, anon_sym_as, - [39553] = 22, + [39137] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4071), 1, + ACTIONS(4135), 1, + anon_sym_COLON_COLON, + STATE(1626), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3365), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_AMP_AMP, - ACTIONS(4079), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4085), 1, - anon_sym_EQ, - ACTIONS(4177), 1, - anon_sym_DOT_DOT, - ACTIONS(4067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4179), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1631), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3845), 3, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3363), 23, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4069), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4083), 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, @@ -146376,35 +145939,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39641] = 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, + [39193] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1632), 2, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(3655), 15, - anon_sym_PLUS, + ACTIONS(4069), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3767), 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(3653), 24, + ACTIONS(3765), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146423,64 +146001,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_COLON_COLON, - anon_sym_as, - [39695] = 22, + anon_sym_SQUOTE, + [39261] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4071), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4075), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4079), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4085), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4177), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4067), 2, + ACTIONS(4143), 1, + anon_sym_RPAREN, + ACTIONS(4145), 1, + anon_sym_COMMA, + STATE(2829), 1, + aux_sym_arguments_repeat1, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4081), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4179), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1633), 2, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(3801), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4069), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4087), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4083), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146491,35 +146070,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39783] = 5, + [39353] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1634), 2, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(3667), 15, - anon_sym_PLUS, + ACTIONS(4069), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3767), 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(3665), 24, + ACTIONS(3765), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146538,37 +146127,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_COLON_COLON, - anon_sym_as, - [39837] = 5, + anon_sym_SQUOTE, + [39425] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1635), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3671), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(3767), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3669), 24, + STATE(1630), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3765), 17, 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, @@ -146581,28 +146186,95 @@ 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, + [39503] = 18, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4071), 1, + anon_sym_CARET, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(3767), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4089), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1631), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3765), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + 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_COLON_COLON, - anon_sym_as, - [39891] = 5, + anon_sym_SQUOTE, + [39583] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1636), 2, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1632), 2, sym_line_comment, sym_block_comment, - ACTIONS(1369), 15, - anon_sym_PLUS, + ACTIONS(4069), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3767), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -146611,13 +146283,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(1367), 24, + ACTIONS(3765), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146636,22 +146305,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_as, - anon_sym_else, - [39945] = 21, + anon_sym_SQUOTE, + [39649] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4023), 1, + ACTIONS(3981), 1, anon_sym_EQ, ACTIONS(4071), 1, anon_sym_CARET, @@ -146663,7 +146331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4177), 1, + ACTIONS(4111), 1, anon_sym_DOT_DOT, ACTIONS(4067), 2, anon_sym_PLUS, @@ -146674,10 +146342,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4179), 2, + ACTIONS(4113), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1637), 2, + STATE(1633), 2, sym_line_comment, sym_block_comment, ACTIONS(4069), 3, @@ -146689,7 +146357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4021), 13, + ACTIONS(3979), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -146703,17 +146371,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [40031] = 6, + [39735] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4193), 1, + ACTIONS(4147), 1, anon_sym_DASH_GT, - STATE(1638), 2, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(3487), 15, + ACTIONS(3567), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146729,7 +146397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3485), 23, + ACTIONS(3565), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146753,86 +146421,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40087] = 5, + [39791] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1639), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1383), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_EQ, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4111), 1, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1381), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4113), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [40141] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1640), 2, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(1365), 15, - anon_sym_PLUS, + ACTIONS(4069), 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(1363), 24, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3975), 13, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146843,47 +146485,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [40195] = 6, + anon_sym_SQUOTE, + [39877] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4169), 1, - anon_sym_COLON_COLON, - STATE(1641), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3329), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3327), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1636), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4149), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146894,44 +146552,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [40251] = 6, + [39965] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4169), 1, - anon_sym_COLON_COLON, - STATE(1642), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3345), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1637), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3343), 23, + ACTIONS(3765), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146950,16 +146610,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_as, - [40307] = 5, + anon_sym_SQUOTE, + [40039] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1643), 2, + ACTIONS(4135), 1, + anon_sym_COLON_COLON, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(1387), 15, + ACTIONS(3353), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146975,7 +146637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1385), 24, + ACTIONS(3351), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146999,16 +146661,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, - [40361] = 5, + [40095] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1644), 2, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3577), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147024,7 +146685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1355), 24, + ACTIONS(3575), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147047,19 +146708,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_DASH_GT, anon_sym_as, - anon_sym_else, - [40415] = 6, + [40149] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4195), 1, - anon_sym_DASH_GT, - STATE(1645), 2, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(3499), 15, + ACTIONS(3609), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147075,7 +146734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3497), 23, + ACTIONS(3607), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147098,18 +146757,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [40471] = 6, + [40203] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4197), 1, - anon_sym_DASH_GT, - STATE(1646), 2, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(3613), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147125,7 +146783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 23, + ACTIONS(3611), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147148,40 +146806,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [40527] = 6, + [40257] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4199), 1, - anon_sym_DASH_GT, - STATE(1647), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3595), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4071), 1, anon_sym_CARET, + ACTIONS(4073), 1, anon_sym_AMP, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4077), 1, + anon_sym_AMP_AMP, + ACTIONS(4079), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3987), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4067), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3593), 23, + STATE(1642), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4087), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3985), 15, 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, @@ -147192,69 +146868,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_EQ_EQ, - 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, - [40583] = 22, + anon_sym_SQUOTE, + [40339] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(1003), 1, + anon_sym_RBRACK, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4071), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4075), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4079), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4085), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4177), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4067), 2, + ACTIONS(4151), 1, + anon_sym_COMMA, + STATE(2871), 1, + aux_sym_arguments_repeat1, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4081), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4179), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1648), 2, + STATE(1643), 2, sym_line_comment, - sym_block_comment, - ACTIONS(3873), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4069), 3, + sym_block_comment, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4087), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4083), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147265,54 +146939,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40671] = 17, + [40431] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(1025), 1, + anon_sym_RPAREN, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4071), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4075), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3893), 2, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, anon_sym_EQ, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4067), 2, + ACTIONS(4153), 1, + anon_sym_COMMA, + STATE(2857), 1, + aux_sym_arguments_repeat1, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4081), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - STATE(1649), 2, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4087), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3891), 17, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147323,57 +147007,88 @@ 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, - [40749] = 18, + [40523] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4071), 1, + ACTIONS(4155), 1, + anon_sym_COLON_COLON, + STATE(1645), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1419), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4077), 1, - anon_sym_AMP_AMP, - ACTIONS(3893), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1650), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1421), 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, + [40579] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4135), 1, + anon_sym_COLON_COLON, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(3349), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4087), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3891), 16, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3347), 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, @@ -147385,65 +147100,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40829] = 22, + anon_sym_as, + [40635] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1651), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4201), 3, + ACTIONS(4157), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147454,30 +147173,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40917] = 11, + [40723] = 18, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4067), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1652), 2, + ACTIONS(4159), 1, + sym_identifier, + ACTIONS(4161), 1, + anon_sym_LBRACE, + ACTIONS(4163), 1, + anon_sym_RBRACE, + ACTIONS(4165), 1, + anon_sym_STAR, + ACTIONS(4169), 1, + anon_sym_COMMA, + ACTIONS(4171), 1, + anon_sym_COLON_COLON, + ACTIONS(4175), 1, + sym_metavariable, + STATE(2452), 1, + sym_scoped_identifier, + STATE(2768), 1, + sym__use_clause, + STATE(3448), 1, + sym_generic_type_with_turbofish, + STATE(3600), 1, + sym_bracketed_type, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(4173), 3, + sym_self, + sym_super, + sym_crate, + STATE(2850), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4167), 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, + [40803] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4177), 1, + anon_sym_DASH_GT, + STATE(1649), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3539), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -147486,10 +147259,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(3891), 21, + ACTIONS(3537), 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, @@ -147508,61 +147284,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40983] = 21, + anon_sym_as, + [40859] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3995), 1, - anon_sym_EQ, - ACTIONS(4071), 1, + ACTIONS(4179), 1, + anon_sym_LBRACE, + ACTIONS(4185), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4187), 1, anon_sym_AMP, - ACTIONS(4075), 1, + ACTIONS(4189), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(4191), 1, anon_sym_AMP_AMP, - ACTIONS(4079), 1, + ACTIONS(4193), 1, anon_sym_PIPE_PIPE, - ACTIONS(4177), 1, + ACTIONS(4199), 1, + anon_sym_EQ, + ACTIONS(4205), 1, anon_sym_DOT_DOT, - ACTIONS(4067), 2, + STATE(393), 1, + sym_match_block, + ACTIONS(4181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4081), 2, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4179), 2, + ACTIONS(4207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1653), 2, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(4183), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4087), 4, + ACTIONS(4201), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3993), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4197), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147573,16 +147351,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, - [41069] = 5, + [40948] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1654), 2, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(3376), 17, + ACTIONS(3685), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147593,14 +147370,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(3374), 22, + ACTIONS(3683), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147615,68 +147390,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, - [41123] = 21, + [41001] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4003), 1, - anon_sym_EQ, - ACTIONS(4071), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4075), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4077), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4079), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4177), 1, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4067), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4081), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4179), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1655), 2, + ACTIONS(4209), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4087), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4001), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147687,47 +147464,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_SQUOTE, - [41209] = 15, + [41088] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4071), 1, - anon_sym_CARET, - ACTIONS(4073), 1, - anon_sym_AMP, - ACTIONS(4075), 1, - anon_sym_PIPE, - ACTIONS(4067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4081), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1656), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(3673), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 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(3891), 21, + ACTIONS(3671), 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, @@ -147746,18 +147511,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, - [41283] = 6, + anon_sym_as, + [41141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4169), 1, - anon_sym_COLON_COLON, - STATE(1657), 2, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(3341), 15, + ACTIONS(3677), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147773,7 +147536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3339), 23, + ACTIONS(3675), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147797,15 +147560,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41339] = 5, + [41194] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1658), 2, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(3913), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147821,7 +147584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3911), 23, + ACTIONS(1421), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147845,62 +147608,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41392] = 23, + [41247] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4203), 1, - anon_sym_LBRACE, - ACTIONS(4209), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4211), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4213), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4215), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4217), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4223), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - STATE(399), 1, - sym_match_block, - ACTIONS(4205), 2, + ACTIONS(4211), 1, + anon_sym_RPAREN, + ACTIONS(4213), 1, + anon_sym_COMMA, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4219), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4227), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4231), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1659), 2, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4225), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4221), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147911,15 +147674,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41481] = 5, + [41336] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1660), 2, + ACTIONS(4215), 1, + anon_sym_LBRACK, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_DOT, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(3695), 15, + ACTIONS(3657), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147933,13 +147702,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(3693), 23, + ACTIONS(3653), 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, @@ -147959,29 +147725,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41534] = 10, + [41395] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, - anon_sym_QMARK, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_as, - STATE(1661), 2, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(3819), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -147990,10 +147747,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(3891), 20, + ACTIONS(3817), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148012,44 +147772,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [41597] = 13, + anon_sym_as, + [41448] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, - anon_sym_QMARK, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1662), 2, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(3829), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 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(3891), 20, + ACTIONS(3827), 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, @@ -148068,15 +147820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [41666] = 5, + anon_sym_as, + [41501] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1663), 2, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(3879), 15, + ACTIONS(1583), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148092,7 +147845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3877), 23, + ACTIONS(1585), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148116,15 +147869,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41719] = 5, + [41554] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1664), 2, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(3931), 15, + ACTIONS(1441), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148140,7 +147893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3929), 23, + ACTIONS(1439), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148164,62 +147917,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41772] = 23, + [41607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, + STATE(1662), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1401), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4249), 1, - anon_sym_SEMI, - ACTIONS(4251), 1, - anon_sym_else, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1665), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1399), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148230,43 +147958,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41861] = 12, + anon_sym_EQ_EQ, + 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, + [41660] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, - anon_sym_QMARK, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1666), 2, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(1505), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 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(3891), 20, + ACTIONS(1503), 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, @@ -148285,194 +148012,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [41928] = 23, + anon_sym_as, + [41713] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1111), 1, - anon_sym_RPAREN, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4253), 1, - anon_sym_COMMA, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1667), 2, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(1405), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [42017] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4255), 1, - anon_sym_RBRACE, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1668), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [42106] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1403), 23, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3753), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4259), 1, - anon_sym_RBRACE, - ACTIONS(4261), 1, - anon_sym_COMMA, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1669), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148483,111 +148054,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42195] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(303), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1670), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [42284] = 14, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [41766] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, - anon_sym_QMARK, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, - anon_sym_CARET, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1671), 2, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(1445), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 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(3891), 20, + ACTIONS(1443), 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, @@ -148606,54 +148108,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [42355] = 17, + anon_sym_as, + [41819] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(4241), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4267), 1, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3893), 2, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, anon_sym_EQ, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(3801), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4247), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - STATE(1672), 2, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4269), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3891), 16, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148664,56 +148174,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, - [42432] = 18, + [41906] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, - anon_sym_QMARK, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, - anon_sym_CARET, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(4273), 1, - anon_sym_AMP_AMP, - ACTIONS(3893), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, + STATE(1667), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3713), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4247), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1673), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4235), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4269), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3891), 15, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3711), 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, @@ -148725,32 +148215,27 @@ 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, - [42511] = 11, + anon_sym_as, + [41959] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, - anon_sym_QMARK, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1674), 2, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(1497), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -148759,10 +148244,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(3891), 20, + ACTIONS(1495), 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, @@ -148781,53 +148269,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [42576] = 21, + anon_sym_as, + [42012] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3995), 1, anon_sym_EQ, - ACTIONS(4233), 1, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(4219), 1, anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(4267), 1, + ACTIONS(4227), 1, + anon_sym_AMP, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(4273), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(4275), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, + ACTIONS(4241), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4247), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, + ACTIONS(4239), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4243), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1675), 2, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4269), 4, + ACTIONS(4237), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -148845,56 +148334,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42661] = 19, + [42097] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4209), 1, + STATE(1670), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1479), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(4215), 1, - anon_sym_AMP_AMP, - ACTIONS(4217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(389), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4227), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1676), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4207), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4225), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(387), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1477), 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, @@ -148905,62 +148375,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, - [42742] = 21, + anon_sym_as, + [42150] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4209), 1, + STATE(1671), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4183), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(4215), 1, - anon_sym_AMP_AMP, - ACTIONS(4217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4281), 1, - anon_sym_DOT_DOT, - ACTIONS(4205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4227), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4283), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1677), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4207), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4225), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 12, + anon_sym_DOT_DOT, + ACTIONS(3765), 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, @@ -148971,190 +148429,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42827] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4209), 1, - anon_sym_CARET, - ACTIONS(4211), 1, - anon_sym_AMP, - ACTIONS(4213), 1, - anon_sym_PIPE, - ACTIONS(4215), 1, - anon_sym_AMP_AMP, - ACTIONS(4217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4223), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_DOT_DOT, - ACTIONS(4285), 1, - anon_sym_LBRACE, - STATE(485), 1, - sym_match_block, - ACTIONS(4205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4219), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4227), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4231), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1678), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4207), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4225), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4221), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [42916] = 21, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [42213] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4031), 1, - anon_sym_EQ, - ACTIONS(4209), 1, - anon_sym_CARET, - ACTIONS(4211), 1, - anon_sym_AMP, - ACTIONS(4213), 1, - anon_sym_PIPE, - ACTIONS(4215), 1, - anon_sym_AMP_AMP, - ACTIONS(4217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4281), 1, - anon_sym_DOT_DOT, - ACTIONS(4205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4219), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4227), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4283), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1679), 2, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(1437), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4225), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4029), 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, - [43001] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4027), 1, - anon_sym_EQ, - ACTIONS(4209), 1, anon_sym_CARET, - ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(4215), 1, - anon_sym_AMP_AMP, - ACTIONS(4217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4281), 1, - anon_sym_DOT_DOT, - ACTIONS(4205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4227), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4283), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1680), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4207), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4225), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4025), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1435), 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, @@ -149165,62 +148476,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43086] = 23, + anon_sym_EQ_EQ, + 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, + [42266] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(305), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(3847), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1681), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149231,15 +148548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43175] = 5, + [42353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1682), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(1449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149255,7 +148572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 23, + ACTIONS(1447), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149279,60 +148596,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43228] = 21, + [42406] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4003), 1, - anon_sym_EQ, - ACTIONS(4233), 1, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(4219), 1, anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_as, ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, - anon_sym_CARET, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(4273), 1, - anon_sym_AMP_AMP, - ACTIONS(4275), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, + anon_sym_as, + STATE(1675), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 11, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4247), 2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1683), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4235), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4269), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4001), 12, + anon_sym_DOT_DOT, + ACTIONS(3765), 20, anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149343,44 +148643,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43313] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [42469] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(4219), 1, anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4245), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4265), 1, - anon_sym_CARET, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(4243), 2, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4247), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1684), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 4, + ACTIONS(3767), 6, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3891), 20, + ACTIONS(3765), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -149401,35 +148705,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43386] = 5, + [42538] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, + ACTIONS(4215), 1, + anon_sym_LBRACK, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_DOT, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(3919), 15, - anon_sym_PLUS, + ACTIONS(4223), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3767), 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(3917), 23, + ACTIONS(3765), 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, @@ -149448,57 +148760,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43439] = 19, + [42605] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(4219), 1, anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(4273), 1, - anon_sym_AMP_AMP, - ACTIONS(4275), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4007), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4227), 1, + anon_sym_AMP, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4247), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1686), 2, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4269), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4005), 14, + ACTIONS(3767), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3765), 20, anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149509,38 +148811,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, - [43520] = 8, + [42676] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(4219), 1, anon_sym_DOT, - STATE(1687), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3951), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4225), 1, anon_sym_CARET, + ACTIONS(4227), 1, anon_sym_AMP, + ACTIONS(4229), 1, anon_sym_PIPE, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(3767), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4239), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3949), 21, + STATE(1679), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4237), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3765), 16, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -149555,68 +148875,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, - [43579] = 22, + [42753] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(4219), 1, anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(3767), 2, anon_sym_EQ, - ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(3873), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3971), 2, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4239), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1688), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4237), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3765), 15, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149627,26 +148936,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43666] = 8, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [42832] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(4219), 1, anon_sym_DOT, - STATE(1689), 2, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(3783), 14, - anon_sym_PLUS, + ACTIONS(4223), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3767), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -149656,7 +148971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3781), 21, + ACTIONS(3765), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -149677,63 +148992,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, - [43725] = 23, + [42897] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3981), 1, + anon_sym_EQ, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(4219), 1, anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4209), 1, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(4211), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4213), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(4215), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(4217), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(4223), 1, - anon_sym_EQ, - ACTIONS(4229), 1, + ACTIONS(4241), 1, anon_sym_DOT_DOT, - ACTIONS(4287), 1, - anon_sym_LBRACE, - STATE(1386), 1, - sym_match_block, - ACTIONS(4205), 2, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4219), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4227), 2, + ACTIONS(4239), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4231), 2, + ACTIONS(4243), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1690), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4225), 4, + ACTIONS(4237), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4221), 10, + ACTIONS(3979), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149744,35 +149056,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43814] = 5, + [42982] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1691), 2, + ACTIONS(3977), 1, + anon_sym_EQ, + ACTIONS(4215), 1, + anon_sym_LBRACK, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_DOT, + ACTIONS(4225), 1, + anon_sym_CARET, + ACTIONS(4227), 1, + anon_sym_AMP, + ACTIONS(4229), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_AMP_AMP, + ACTIONS(4233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4241), 1, + anon_sym_DOT_DOT, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4239), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4243), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(3863), 15, - anon_sym_PLUS, + ACTIONS(4223), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4237), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3975), 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, + [43067] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4215), 1, + anon_sym_LBRACK, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_DOT, + ACTIONS(4225), 1, anon_sym_CARET, + ACTIONS(4227), 1, anon_sym_AMP, + ACTIONS(4229), 1, anon_sym_PIPE, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1684), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3861), 23, + ACTIONS(3765), 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, @@ -149791,62 +149178,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, - [43867] = 22, + [43140] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(4219), 1, anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4071), 1, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4075), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(4079), 1, + ACTIONS(4231), 1, + anon_sym_AMP_AMP, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(4085), 1, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(3987), 2, anon_sym_EQ, - ACTIONS(4091), 1, anon_sym_DOT_DOT, - ACTIONS(4291), 1, - anon_sym_AMP_AMP, - ACTIONS(4067), 2, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4081), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, + ACTIONS(4239), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4093), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4289), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1692), 2, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4087), 4, + ACTIONS(4237), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4083), 10, + ACTIONS(3985), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149857,15 +149238,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43954] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [43221] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1693), 2, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(1493), 15, + ACTIONS(3697), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149881,7 +149264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1491), 23, + ACTIONS(3695), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149905,15 +149288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44007] = 5, + [43274] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1694), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(3871), 15, + ACTIONS(3701), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149929,7 +149312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3869), 23, + ACTIONS(3699), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149953,15 +149336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44060] = 5, + [43327] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1695), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, + ACTIONS(3833), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149977,7 +149360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3841), 23, + ACTIONS(3831), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150001,147 +149384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44113] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(307), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1696), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44202] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4293), 1, - anon_sym_SEMI, - ACTIONS(4295), 1, - anon_sym_else, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1697), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44291] = 5, + [43380] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1698), 2, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(3867), 15, + ACTIONS(1509), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150157,7 +149408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3865), 23, + ACTIONS(1507), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150181,15 +149432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44344] = 5, + [43433] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1699), 2, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 15, + ACTIONS(1457), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150205,7 +149456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1395), 23, + ACTIONS(1455), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150229,61 +149480,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44397] = 22, + [43486] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(3971), 2, + ACTIONS(3879), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4297), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1700), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150294,15 +149545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44484] = 5, + [43573] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1701), 2, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(1423), 15, + ACTIONS(1471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150318,7 +149569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1421), 23, + ACTIONS(1469), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150342,127 +149593,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44537] = 23, + [43626] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(4299), 1, - anon_sym_RBRACE, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1702), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3709), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44626] = 22, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(3801), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1703), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3707), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150473,15 +149634,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44713] = 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, + [43679] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1704), 2, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(3759), 15, + ACTIONS(3807), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150497,7 +149665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3757), 23, + ACTIONS(3805), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150521,122 +149689,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44766] = 23, + [43732] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4301), 1, - anon_sym_RPAREN, - ACTIONS(4303), 1, - anon_sym_COMMA, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1705), 2, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(1425), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44855] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4233), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, - anon_sym_QMARK, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, anon_sym_CARET, - ACTIONS(4267), 1, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4273), 1, - anon_sym_AMP_AMP, - ACTIONS(4275), 1, - anon_sym_PIPE_PIPE, - ACTIONS(389), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1706), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4235), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4269), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(387), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1423), 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, @@ -150647,17 +149730,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44936] = 5, + anon_sym_as, + [43785] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1707), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(1443), 15, + ACTIONS(1467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150673,7 +149761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1441), 23, + ACTIONS(1465), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150697,128 +149785,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44989] = 23, + [43838] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1057), 1, - anon_sym_RPAREN, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4253), 1, - anon_sym_COMMA, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1708), 2, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(1493), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45078] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(311), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1709), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, + 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, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150829,15 +149826,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45167] = 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, + [43891] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1710), 2, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(3775), 15, + ACTIONS(1429), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150853,7 +149857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3773), 23, + ACTIONS(1427), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150877,128 +149881,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45220] = 23, + [43944] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4209), 1, - anon_sym_CARET, - ACTIONS(4211), 1, - anon_sym_AMP, - ACTIONS(4213), 1, - anon_sym_PIPE, - ACTIONS(4215), 1, - anon_sym_AMP_AMP, - ACTIONS(4217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4223), 1, - anon_sym_EQ, - ACTIONS(4229), 1, - anon_sym_DOT_DOT, - ACTIONS(4305), 1, - anon_sym_LBRACE, - STATE(1800), 1, - sym_match_block, - ACTIONS(4205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4219), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4227), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4231), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1711), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(1475), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4225), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4221), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45309] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, anon_sym_CARET, - ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1712), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, + 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, @@ -151009,15 +149922,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45398] = 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, + [43997] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1713), 2, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(3691), 15, + ACTIONS(1489), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151033,7 +149953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3689), 23, + ACTIONS(1487), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151057,60 +149977,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45451] = 21, + [44050] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(4233), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, - anon_sym_QMARK, - ACTIONS(4239), 1, - anon_sym_DOT, - ACTIONS(4241), 1, - anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, - anon_sym_CARET, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(4273), 1, - anon_sym_AMP_AMP, - ACTIONS(4275), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, + STATE(1701), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1005), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4247), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1714), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4235), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4269), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1007), 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, @@ -151121,15 +150018,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45536] = 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, + [44103] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1715), 2, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 15, + ACTIONS(1013), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151145,7 +150049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3697), 23, + ACTIONS(1015), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151169,101 +150073,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45589] = 21, + [44156] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4071), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4075), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4079), 1, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4085), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4091), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4067), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4081), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4093), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1716), 2, + ACTIONS(4247), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4307), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4087), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4083), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45674] = 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(3939), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3937), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151274,22 +150138,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, - [45727] = 5, + [44243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1718), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(1451), 15, + ACTIONS(1501), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151305,7 +150162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1449), 23, + ACTIONS(1499), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151329,15 +150186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45780] = 5, + [44296] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1719), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, + ACTIONS(1019), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151353,7 +150210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3837), 23, + ACTIONS(1021), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151377,15 +150234,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45833] = 5, + [44349] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1720), 2, + ACTIONS(4215), 1, + anon_sym_LBRACK, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_DOT, + ACTIONS(4225), 1, + anon_sym_CARET, + ACTIONS(4227), 1, + anon_sym_AMP, + ACTIONS(4229), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_AMP_AMP, + ACTIONS(4233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4241), 1, + anon_sym_DOT_DOT, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4251), 1, + anon_sym_EQ, + ACTIONS(3801), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4239), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4243), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1706), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4237), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4249), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44436] = 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(3779), 15, + ACTIONS(975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151401,7 +150323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3777), 23, + ACTIONS(977), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151425,15 +150347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45886] = 5, + [44489] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1721), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(3675), 15, + ACTIONS(1433), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151449,7 +150371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3673), 23, + ACTIONS(1431), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151473,62 +150395,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45939] = 23, + [44542] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(315), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(4219), 1, anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4241), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4251), 1, + anon_sym_EQ, + ACTIONS(3847), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4239), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4243), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1722), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4237), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(4249), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151539,15 +150460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46028] = 5, + [44629] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1723), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 15, + ACTIONS(921), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151563,7 +150484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1453), 23, + ACTIONS(923), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151587,15 +150508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46081] = 5, + [44682] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1724), 2, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(1497), 15, + ACTIONS(1485), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151611,7 +150532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1495), 23, + ACTIONS(1483), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151635,62 +150556,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46134] = 23, + [44735] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(4219), 1, anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4241), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(4309), 1, - anon_sym_RBRACE, - ACTIONS(3971), 2, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4251), 1, + anon_sym_EQ, + ACTIONS(3879), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4239), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4243), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1725), 2, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4237), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(4249), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151701,40 +150621,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46223] = 9, + [44822] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(4241), 1, + ACTIONS(3769), 1, anon_sym_as, - STATE(1726), 2, + ACTIONS(4187), 1, + anon_sym_AMP, + ACTIONS(4181), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(3893), 14, - anon_sym_PLUS, + ACTIONS(4183), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3767), 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_DOT, - ACTIONS(3891), 20, + ACTIONS(3765), 20, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -151753,35 +150677,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46284] = 5, + [44891] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1727), 2, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4181), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(3905), 15, - anon_sym_PLUS, + ACTIONS(4183), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3767), 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(3903), 23, + ACTIONS(3765), 20, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [44958] = 14, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3659), 1, anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4185), 1, + anon_sym_CARET, + ACTIONS(4187), 1, + anon_sym_AMP, + ACTIONS(4181), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1715), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4183), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3765), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -151800,16 +150789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46337] = 5, + [45029] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1728), 2, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(1401), 15, + ACTIONS(1045), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151825,7 +150813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1399), 23, + ACTIONS(1047), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151849,15 +150837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46390] = 5, + [45082] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1729), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(1419), 15, + ACTIONS(1049), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151873,7 +150861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1417), 23, + ACTIONS(1051), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151897,101 +150885,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46443] = 23, + [45135] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(319), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4185), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4187), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4189), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3767), 2, anon_sym_EQ, - ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1730), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4183), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4201), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [46532] = 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(3799), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3797), 23, + ACTIONS(3765), 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, @@ -152004,69 +150943,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, - [46585] = 23, + [45212] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4185), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4187), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4189), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4191), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3767), 2, anon_sym_EQ, - ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1732), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4183), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4201), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3765), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152077,15 +151004,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46674] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [45291] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1733), 2, + ACTIONS(4215), 1, + anon_sym_LBRACK, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_DOT, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(1481), 15, + ACTIONS(3717), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152099,13 +151034,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(1479), 23, + ACTIONS(3715), 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, @@ -152125,84 +151057,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46727] = 21, + [45350] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4031), 1, - anon_sym_EQ, - ACTIONS(4233), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(4241), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, - anon_sym_CARET, - ACTIONS(4267), 1, - anon_sym_PIPE, - ACTIONS(4273), 1, - anon_sym_AMP_AMP, - ACTIONS(4275), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4271), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4279), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1734), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4235), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4269), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4029), 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, - [46812] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1735), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(981), 15, - anon_sym_PLUS, + ACTIONS(4183), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3767), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -152211,13 +151089,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(983), 23, + ACTIONS(3765), 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, @@ -152236,16 +151111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46865] = 5, + [45415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1736), 2, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(3683), 15, + ACTIONS(3665), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152261,7 +151135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3681), 23, + ACTIONS(3663), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152285,61 +151159,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46918] = 22, + [45468] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(127), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(3971), 2, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4311), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1737), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152350,62 +151225,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47005] = 23, + [45557] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3981), 1, + anon_sym_EQ, + ACTIONS(4185), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4187), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4189), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4191), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4193), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4255), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(4313), 1, - anon_sym_RBRACE, - ACTIONS(3971), 2, + ACTIONS(4181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1738), 2, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4183), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4201), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3979), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152416,37 +151289,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47094] = 5, + [45642] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1739), 2, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4259), 1, + anon_sym_RPAREN, + ACTIONS(4261), 1, + anon_sym_COMMA, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(991), 15, - anon_sym_PLUS, + ACTIONS(3949), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45731] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3977), 1, + anon_sym_EQ, + ACTIONS(4185), 1, anon_sym_CARET, + ACTIONS(4187), 1, anon_sym_AMP, + ACTIONS(4189), 1, anon_sym_PIPE, + ACTIONS(4191), 1, + anon_sym_AMP_AMP, + ACTIONS(4193), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4255), 1, + anon_sym_DOT_DOT, + ACTIONS(4181), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(993), 23, + ACTIONS(4257), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1726), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4183), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4201), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3975), 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, @@ -152457,69 +151419,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, - [47147] = 23, + [45816] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, ACTIONS(4263), 1, anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4265), 1, + anon_sym_else, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1740), 2, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152530,37 +151485,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47236] = 5, + [45905] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1741), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3687), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(295), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3685), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1728), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152571,69 +151551,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, - [47289] = 23, + [45994] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(4315), 1, + ACTIONS(4267), 1, anon_sym_RBRACE, - ACTIONS(3971), 2, + ACTIONS(4269), 1, + anon_sym_COMMA, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1742), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152644,15 +151617,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47378] = 5, + [46083] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1743), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(3341), 15, + ACTIONS(3803), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152668,7 +151641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3339), 23, + ACTIONS(3801), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152692,62 +151665,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47431] = 23, + [46136] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4185), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4187), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4189), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1744), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4183), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3767), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3765), 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, @@ -152758,37 +151717,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47520] = 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, + [46209] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1745), 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, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4185), 1, anon_sym_CARET, + ACTIONS(4187), 1, anon_sym_AMP, + ACTIONS(4189), 1, anon_sym_PIPE, + ACTIONS(4191), 1, + anon_sym_AMP_AMP, + ACTIONS(4193), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3987), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4181), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1499), 23, + STATE(1732), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4183), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4201), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3985), 14, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152799,69 +151783,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47573] = 23, + [46290] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(329), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4185), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4187), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4189), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4191), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4193), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(4199), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4205), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4271), 1, + anon_sym_LBRACE, + STATE(1383), 1, + sym_match_block, + ACTIONS(4181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1746), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4183), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4201), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(4197), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152872,15 +151851,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47662] = 5, + [46379] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1747), 2, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(1409), 15, + ACTIONS(3681), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152896,7 +151875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1407), 23, + ACTIONS(3679), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152920,81 +151899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47715] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4317), 1, - anon_sym_SEMI, - ACTIONS(4319), 1, - anon_sym_else, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1748), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47804] = 5, + [46432] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1749), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(997), 15, + ACTIONS(3881), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153010,7 +151923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(999), 23, + ACTIONS(3879), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153034,15 +151947,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47857] = 5, + [46485] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1750), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153058,7 +151971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 23, + ACTIONS(1421), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153082,15 +151995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47910] = 5, + [46538] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1751), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, + ACTIONS(3689), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153106,7 +152019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3829), 23, + ACTIONS(3687), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153130,61 +152043,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47963] = 22, + [46591] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, + ACTIONS(297), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(4241), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4267), 1, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4273), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4275), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, - anon_sym_DOT_DOT, - ACTIONS(4323), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(3873), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4243), 2, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4247), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1752), 2, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4269), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4321), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153195,15 +152109,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48050] = 5, + [46680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1753), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(1005), 15, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153219,7 +152133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1007), 23, + ACTIONS(1421), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153243,62 +152157,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48103] = 23, + [46733] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(331), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, + STATE(1740), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3693), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3691), 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(1754), 2, + anon_sym_as, + [46786] = 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(3973), 3, + ACTIONS(3261), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 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(3263), 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, @@ -153309,62 +152246,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48192] = 23, + anon_sym_EQ_EQ, + 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, + [46839] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(299), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(1211), 1, + anon_sym_RPAREN, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4213), 1, + anon_sym_COMMA, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1755), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153375,103 +152319,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48281] = 23, + [46928] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(4325), 1, - anon_sym_RBRACE, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1756), 2, + ACTIONS(4273), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [48370] = 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(1435), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1433), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153482,69 +152384,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, - [48423] = 23, + [47015] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(335), 1, + ACTIONS(289), 1, anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, + ACTIONS(4253), 1, anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1758), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153555,15 +152450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48512] = 5, + [47104] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1759), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(3851), 15, + ACTIONS(3903), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153579,7 +152474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3849), 23, + ACTIONS(3901), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153603,62 +152498,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48565] = 23, + [47157] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(1181), 1, + anon_sym_RPAREN, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4213), 1, + anon_sym_COMMA, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1760), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153669,61 +152564,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48654] = 22, + [47246] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(4241), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4267), 1, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4273), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4275), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, - anon_sym_DOT_DOT, - ACTIONS(4323), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(3845), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4243), 2, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4275), 1, + anon_sym_SEMI, + ACTIONS(4277), 1, + anon_sym_else, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4247), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1761), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4269), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4321), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153734,62 +152630,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48741] = 23, + [47335] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(119), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1762), 2, + ACTIONS(4279), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153800,163 +152695,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48830] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4145), 1, - sym_identifier, - ACTIONS(4147), 1, - anon_sym_LBRACE, - ACTIONS(4151), 1, - anon_sym_STAR, - ACTIONS(4157), 1, - anon_sym_COLON_COLON, - ACTIONS(4161), 1, - sym_metavariable, - ACTIONS(4327), 1, - anon_sym_RBRACE, - STATE(2486), 1, - sym_scoped_identifier, - STATE(3232), 1, - sym__use_clause, - STATE(3408), 1, - sym_generic_type_with_turbofish, - STATE(3426), 1, - sym_bracketed_type, - STATE(1763), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4159), 3, - sym_self, - sym_super, - sym_crate, - STATE(3045), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4153), 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, - [48907] = 23, + [47422] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(4219), 1, anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(381), 2, anon_sym_EQ, - ACTIONS(4097), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(4329), 1, - anon_sym_RBRACE, - ACTIONS(3971), 2, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4239), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1764), 2, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4237), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [48996] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1765), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3847), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3845), 23, + ACTIONS(379), 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, @@ -153967,68 +152755,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49049] = 22, + [47503] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(299), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4209), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4211), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4213), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4215), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4217), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4223), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4281), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(3873), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4205), 2, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4219), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4227), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4283), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1766), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4225), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4221), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154039,60 +152823,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49136] = 21, + [47592] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4027), 1, - anon_sym_EQ, - ACTIONS(4233), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(4241), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4267), 1, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4273), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4275), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4247), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1767), 2, + ACTIONS(4281), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4269), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4025), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154103,15 +152888,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49221] = 5, + [47679] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1768), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(1013), 15, + ACTIONS(3889), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154127,7 +152912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1015), 23, + ACTIONS(3887), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154151,15 +152936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49274] = 5, + [47732] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1769), 2, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, + ACTIONS(3837), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154175,7 +152960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3833), 23, + ACTIONS(3835), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154199,15 +152984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49327] = 5, + [47785] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 15, + ACTIONS(3329), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154223,7 +153008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 23, + ACTIONS(3327), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154247,37 +153032,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49380] = 5, + [47838] = 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(3947), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1069), 1, + anon_sym_RPAREN, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4213), 1, + anon_sym_COMMA, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3945), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1755), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154288,22 +153098,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, - [49433] = 5, + [47927] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1772), 2, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 15, + ACTIONS(3755), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154319,7 +153122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1429), 23, + ACTIONS(3753), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154339,85 +153142,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, 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, - [49486] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4331), 1, - anon_sym_SEMI, - ACTIONS(4333), 1, - anon_sym_else, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1773), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [49575] = 5, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47980] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1774), 2, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(3603), 15, + ACTIONS(3755), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154433,7 +153170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3599), 23, + ACTIONS(3753), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154457,61 +153194,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49628] = 22, + [48033] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(4241), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4267), 1, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4273), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4275), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, - anon_sym_DOT_DOT, - ACTIONS(4323), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(3801), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4243), 2, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4283), 1, + anon_sym_SEMI, + ACTIONS(4285), 1, + anon_sym_else, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4247), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1775), 2, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4269), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4321), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154522,62 +153260,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49715] = 23, + [48122] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(297), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, + ACTIONS(4253), 1, anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4287), 1, + anon_sym_RBRACE, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1776), 2, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154588,62 +153326,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49804] = 23, + [48211] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1083), 1, - anon_sym_RPAREN, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 1, + ACTIONS(4213), 1, anon_sym_COMMA, - ACTIONS(3971), 2, + ACTIONS(4289), 1, + anon_sym_RPAREN, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1777), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154654,15 +153392,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49893] = 5, + [48300] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1778), 2, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(3737), 15, + ACTIONS(3907), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154678,7 +153416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3735), 23, + ACTIONS(3905), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154702,15 +153440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49946] = 5, + [48353] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1779), 2, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(3795), 15, + ACTIONS(3353), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154726,7 +153464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3793), 23, + ACTIONS(3351), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154750,15 +153488,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49999] = 5, + [48406] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1780), 2, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4291), 1, + anon_sym_SEMI, + ACTIONS(4293), 1, + anon_sym_else, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(3885), 15, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48495] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4185), 1, + anon_sym_CARET, + ACTIONS(4187), 1, + anon_sym_AMP, + ACTIONS(4189), 1, + anon_sym_PIPE, + ACTIONS(4191), 1, + anon_sym_AMP_AMP, + ACTIONS(4193), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4199), 1, + anon_sym_EQ, + ACTIONS(4255), 1, + anon_sym_DOT_DOT, + ACTIONS(3801), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4181), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4195), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4203), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4257), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1764), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4183), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4201), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4197), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48582] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1765), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1419), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154774,7 +153643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3883), 23, + ACTIONS(1421), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154798,15 +153667,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50052] = 5, + [48635] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1781), 2, + ACTIONS(4159), 1, + sym_identifier, + ACTIONS(4161), 1, + anon_sym_LBRACE, + ACTIONS(4165), 1, + anon_sym_STAR, + ACTIONS(4171), 1, + anon_sym_COLON_COLON, + ACTIONS(4175), 1, + sym_metavariable, + ACTIONS(4295), 1, + anon_sym_RBRACE, + STATE(2452), 1, + sym_scoped_identifier, + STATE(3271), 1, + sym__use_clause, + STATE(3448), 1, + sym_generic_type_with_turbofish, + STATE(3600), 1, + sym_bracketed_type, + STATE(1766), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4173), 3, + sym_self, + sym_super, + sym_crate, + STATE(2850), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4167), 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, + [48712] = 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(3745), 15, + ACTIONS(3845), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154822,7 +153751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3743), 23, + ACTIONS(3843), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154846,60 +153775,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50105] = 21, + [48765] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4023), 1, - anon_sym_EQ, - ACTIONS(4233), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(4241), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4245), 1, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4265), 1, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4297), 1, + anon_sym_SEMI, + ACTIONS(4299), 1, + anon_sym_else, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1768), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48854] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4267), 1, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4273), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4275), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4301), 1, + anon_sym_SEMI, + ACTIONS(4303), 1, + anon_sym_else, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4247), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1782), 2, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4269), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4021), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154910,15 +153907,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50190] = 5, + [48943] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1783), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 15, + ACTIONS(3777), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154934,7 +153931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3709), 23, + ACTIONS(3775), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154958,15 +153955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50243] = 5, + [48996] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1784), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3781), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154982,7 +153979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3370), 23, + ACTIONS(3779), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155006,141 +154003,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50296] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4335), 1, - anon_sym_RPAREN, - ACTIONS(4337), 1, - anon_sym_COMMA, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1785), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [50385] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4145), 1, - sym_identifier, - ACTIONS(4147), 1, - anon_sym_LBRACE, - ACTIONS(4151), 1, - anon_sym_STAR, - ACTIONS(4157), 1, - anon_sym_COLON_COLON, - ACTIONS(4161), 1, - sym_metavariable, - ACTIONS(4339), 1, - anon_sym_RBRACE, - STATE(2486), 1, - sym_scoped_identifier, - STATE(3232), 1, - sym__use_clause, - STATE(3408), 1, - sym_generic_type_with_turbofish, - STATE(3426), 1, - sym_bracketed_type, - STATE(1786), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4159), 3, - sym_self, - sym_super, - sym_crate, - STATE(3045), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4153), 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, - [50462] = 5, + [49049] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1787), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(3741), 15, + ACTIONS(3911), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155156,7 +154027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3739), 23, + ACTIONS(3909), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155180,62 +154051,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50515] = 23, + [49102] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1097), 1, - anon_sym_RPAREN, - ACTIONS(3749), 1, + ACTIONS(303), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, ACTIONS(4253), 1, - anon_sym_COMMA, - ACTIONS(3971), 2, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1788), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155246,15 +154117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50604] = 5, + [49191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1789), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(3935), 15, + ACTIONS(3915), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155270,7 +154141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3933), 23, + ACTIONS(3913), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155294,15 +154165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50657] = 5, + [49244] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1790), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(3763), 15, + ACTIONS(3919), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155318,7 +154189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3761), 23, + ACTIONS(3917), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155342,37 +154213,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50710] = 5, + [49297] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1791), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1487), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4185), 1, anon_sym_CARET, + ACTIONS(4187), 1, anon_sym_AMP, + ACTIONS(4189), 1, anon_sym_PIPE, + ACTIONS(4191), 1, + anon_sym_AMP_AMP, + ACTIONS(4193), 1, + anon_sym_PIPE_PIPE, + ACTIONS(381), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4181), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1489), 23, + STATE(1776), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4183), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4201), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(379), 14, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155383,44 +154273,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, - [50763] = 5, + [49378] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1792), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3943), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(4185), 1, anon_sym_CARET, + ACTIONS(4187), 1, anon_sym_AMP, + ACTIONS(4189), 1, anon_sym_PIPE, + ACTIONS(4191), 1, + anon_sym_AMP_AMP, + ACTIONS(4193), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4255), 1, + anon_sym_DOT_DOT, + ACTIONS(4181), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3941), 23, + ACTIONS(4257), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1777), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4183), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4201), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 12, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155431,69 +154339,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, - [50816] = 23, + [49463] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4185), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4187), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4189), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4191), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4193), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(4199), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4205), 1, anon_sym_DOT_DOT, - ACTIONS(4341), 1, - anon_sym_SEMI, - ACTIONS(4343), 1, - anon_sym_else, - ACTIONS(3971), 2, + ACTIONS(4305), 1, + anon_sym_LBRACE, + STATE(470), 1, + sym_match_block, + ACTIONS(4181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1793), 2, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4183), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4201), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(4197), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155504,61 +154405,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50905] = 22, + [49552] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4007), 1, + anon_sym_EQ, + ACTIONS(4185), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4187), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4189), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4191), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4193), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4255), 1, anon_sym_DOT_DOT, - ACTIONS(3971), 2, + ACTIONS(4181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4345), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1794), 2, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4183), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4201), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(4005), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155569,37 +154469,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50992] = 5, + [49637] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1795), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3261), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3991), 1, + anon_sym_EQ, + ACTIONS(4185), 1, anon_sym_CARET, + ACTIONS(4187), 1, anon_sym_AMP, + ACTIONS(4189), 1, anon_sym_PIPE, + ACTIONS(4191), 1, + anon_sym_AMP_AMP, + ACTIONS(4193), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4255), 1, + anon_sym_DOT_DOT, + ACTIONS(4181), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3263), 23, + ACTIONS(4257), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1780), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4183), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4201), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3989), 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, @@ -155610,69 +154533,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, - [51045] = 23, + [49722] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(291), 1, + ACTIONS(305), 1, anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, + ACTIONS(4253), 1, anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1796), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155683,15 +154599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51134] = 5, + [49811] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1797), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, + ACTIONS(3763), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155707,7 +154623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1437), 23, + ACTIONS(3761), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155731,15 +154647,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51187] = 5, + [49864] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1798), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(1505), 15, + ACTIONS(3861), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155755,7 +154671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1503), 23, + ACTIONS(3859), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155779,62 +154695,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51240] = 23, + [49917] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(295), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4185), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4187), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4189), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4191), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4193), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(4199), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4255), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(3879), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1799), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4183), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4201), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(4197), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155845,15 +154760,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51329] = 5, + [50004] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1800), 2, + ACTIONS(4215), 1, + anon_sym_LBRACK, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_DOT, + ACTIONS(4245), 1, + anon_sym_as, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(1459), 15, + ACTIONS(3767), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155867,13 +154790,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(1457), 23, + ACTIONS(3765), 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, @@ -155892,38 +154812,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [51382] = 5, + [50065] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1801), 2, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(4307), 1, + anon_sym_RBRACE, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(3329), 15, - anon_sym_PLUS, + ACTIONS(3949), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50154] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(307), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3327), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1787), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155934,68 +154944,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, - [51435] = 22, + [50243] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4347), 2, + ACTIONS(4309), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1802), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156006,37 +155009,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51522] = 5, + [50330] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1803), 2, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(4311), 1, + anon_sym_RBRACE, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, - anon_sym_PLUS, + ACTIONS(3949), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50419] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4215), 1, + anon_sym_LBRACK, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_DOT, + ACTIONS(4225), 1, anon_sym_CARET, + ACTIONS(4227), 1, anon_sym_AMP, + ACTIONS(4229), 1, anon_sym_PIPE, + ACTIONS(4231), 1, + anon_sym_AMP_AMP, + ACTIONS(4233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4241), 1, + anon_sym_DOT_DOT, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4239), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1047), 23, + ACTIONS(4243), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1790), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4237), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156047,22 +155139,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [50504] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4313), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1791), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 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, - [51575] = 5, + ACTIONS(3963), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50591] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1804), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(1049), 15, + ACTIONS(3923), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156078,7 +155228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1051), 23, + ACTIONS(3921), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156102,37 +155252,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51628] = 5, + [50644] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1805), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3345), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3343), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1793), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156143,22 +155318,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, - [51681] = 5, + [50733] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1806), 2, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(3889), 15, + ACTIONS(3927), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156174,7 +155342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3887), 23, + ACTIONS(3925), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156198,62 +155366,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51734] = 23, + [50786] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4185), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4187), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4189), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4191), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4193), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(4199), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4205), 1, anon_sym_DOT_DOT, - ACTIONS(4349), 1, - anon_sym_SEMI, - ACTIONS(4351), 1, - anon_sym_else, - ACTIONS(3971), 2, + ACTIONS(4315), 1, + anon_sym_LBRACE, + STATE(1672), 1, + sym_match_block, + ACTIONS(4181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4207), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1807), 2, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4183), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4201), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(4197), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156264,61 +155432,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51823] = 22, + [50875] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(313), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(3845), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3971), 2, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1808), 2, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156329,62 +155498,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51910] = 23, + [50964] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, + ACTIONS(4317), 1, anon_sym_SEMI, - ACTIONS(4353), 1, - anon_sym_RBRACE, - ACTIONS(3971), 2, + ACTIONS(4319), 1, + anon_sym_else, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1809), 2, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156395,15 +155564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51999] = 5, + [51053] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1810), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(3807), 15, + ACTIONS(3931), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156419,7 +155588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3805), 23, + ACTIONS(3929), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156443,15 +155612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52052] = 5, + [51106] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1811), 2, + STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(1473), 15, + ACTIONS(3705), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156467,7 +155636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1471), 23, + ACTIONS(3703), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156491,15 +155660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52105] = 5, + [51159] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1812), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(3827), 15, + ACTIONS(3865), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156515,7 +155684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3825), 23, + ACTIONS(3863), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156539,60 +155708,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52158] = 21, + [51212] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + STATE(1801), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3729), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3727), 23, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3753), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3755), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [51265] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(315), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4023), 1, - anon_sym_EQ, - ACTIONS(4209), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4211), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4213), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4215), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4217), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4281), 1, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4205), 2, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4219), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4227), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4283), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1813), 2, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4225), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4021), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156603,61 +155822,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52243] = 22, + [51354] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(4085), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4091), 1, anon_sym_DOT_DOT, - ACTIONS(3971), 2, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4093), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4355), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1814), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4321), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156668,60 +155886,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52330] = 21, + [51439] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4071), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4073), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4075), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4079), 1, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4085), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4091), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4067), 2, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(4323), 1, + anon_sym_RBRACE, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4081), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4089), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4093), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1815), 2, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(4069), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4357), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4087), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4083), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156732,15 +155952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52415] = 5, + [51528] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1816), 2, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 15, + ACTIONS(3365), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156756,7 +155976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3701), 23, + ACTIONS(3363), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156780,15 +156000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52468] = 5, + [51581] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1817), 2, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(3815), 15, + ACTIONS(3349), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156804,7 +156024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3813), 23, + ACTIONS(3347), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156828,15 +156048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52521] = 5, + [51634] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1818), 2, + STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 15, + ACTIONS(3897), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156852,7 +156072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3701), 23, + ACTIONS(3895), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156876,61 +156096,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52574] = 22, + [51687] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(319), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(3971), 2, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4359), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1819), 2, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156941,61 +156162,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52661] = 22, + [51776] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4209), 1, + STATE(1809), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1419), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(4215), 1, - anon_sym_AMP_AMP, - ACTIONS(4217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4223), 1, - anon_sym_EQ, - ACTIONS(4281), 1, - anon_sym_DOT_DOT, - ACTIONS(3801), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4227), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4283), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1820), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4207), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4225), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4221), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1421), 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, @@ -157006,61 +156203,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52748] = 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, + [51829] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(321), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4209), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4211), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4213), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4215), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4217), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4223), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4281), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(3845), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4205), 2, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4219), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4227), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4283), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1821), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4225), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4221), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157071,15 +156276,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52835] = 5, + [51918] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1822), 2, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(3819), 15, + ACTIONS(3751), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157095,7 +156300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3817), 23, + ACTIONS(3749), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157119,15 +156324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52888] = 5, + [51971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1823), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(3729), 15, + ACTIONS(3885), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157143,7 +156348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3727), 23, + ACTIONS(3883), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157167,15 +156372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52941] = 5, + [52024] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1824), 2, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(1583), 15, + ACTIONS(3841), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157191,7 +156396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1585), 23, + ACTIONS(3839), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157215,85 +156420,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [52994] = 5, + [52077] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1825), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3811), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4325), 1, + anon_sym_SEMI, + ACTIONS(4327), 1, + anon_sym_else, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3809), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53047] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1826), 2, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(3927), 15, - anon_sym_PLUS, + ACTIONS(3949), 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(3925), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157304,68 +156486,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, - [53100] = 22, + [52166] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(323), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(3971), 2, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4361), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1827), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157376,37 +156552,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53187] = 5, + [52255] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1828), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3875), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(4329), 1, + anon_sym_RBRACE, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3873), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1816), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157417,22 +156618,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, - [53240] = 5, + [52344] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1829), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(3859), 15, + ACTIONS(3869), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157448,7 +156642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3857), 23, + ACTIONS(3867), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157472,62 +156666,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53293] = 23, + [52397] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(327), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, ACTIONS(4253), 1, - anon_sym_COMMA, - ACTIONS(4363), 1, - anon_sym_RPAREN, - ACTIONS(3971), 2, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1830), 2, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157538,61 +156732,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53382] = 22, + [52486] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(329), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(3971), 2, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4365), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1831), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157603,90 +156798,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53469] = 10, + [52575] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - STATE(1832), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4207), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3893), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(3951), 1, anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4331), 1, + anon_sym_RBRACE, + ACTIONS(4333), 1, + anon_sym_COMMA, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3891), 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(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [53532] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1833), 2, + STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, - anon_sym_PLUS, + ACTIONS(3949), 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(1489), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157697,53 +156864,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, - [53585] = 13, + [52664] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(331), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4211), 1, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4205), 2, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4219), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1834), 2, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3891), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157754,51 +156930,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, - [53654] = 12, + [52753] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4205), 2, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(4335), 1, + anon_sym_RBRACE, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4219), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1835), 2, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1822), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3891), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157809,43 +156996,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, - [53721] = 5, + [52842] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1836), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3715), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(335), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3713), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1823), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157856,54 +157062,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, - [53774] = 14, + [52931] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4209), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4211), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4205), 2, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4219), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1837), 2, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3891), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157914,60 +157128,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, - [53845] = 17, + [53020] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(119), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4209), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4211), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4213), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3893), 2, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, anon_sym_EQ, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4205), 2, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4219), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4227), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - STATE(1838), 2, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4225), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3891), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157978,39 +157194,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, - [53922] = 5, + [53109] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1839), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3725), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, anon_sym_CARET, + ACTIONS(3953), 1, anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(4337), 1, + anon_sym_RBRACE, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3723), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1826), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158021,22 +157260,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, - [53975] = 5, + [53198] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1840), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(1405), 15, + ACTIONS(3669), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158052,7 +157284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1403), 23, + ACTIONS(3667), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158076,55 +157308,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54028] = 18, + [53251] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3991), 1, + anon_sym_EQ, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(4219), 1, anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4209), 1, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(4211), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4213), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(4215), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(3893), 2, - anon_sym_EQ, + ACTIONS(4233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4241), 1, anon_sym_DOT_DOT, - ACTIONS(4205), 2, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4219), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4227), 2, + ACTIONS(4239), 2, anon_sym_GT, anon_sym_LT, - STATE(1841), 2, + ACTIONS(4243), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4225), 4, + ACTIONS(4237), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3891), 15, + ACTIONS(3989), 12, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158135,17 +157372,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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [54107] = 5, + [53336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1842), 2, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(3923), 15, + ACTIONS(3759), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158161,7 +157396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3921), 23, + ACTIONS(3757), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158185,69 +157420,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54160] = 11, + [53389] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4205), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1843), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4207), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3893), 9, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3891), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [54225] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1844), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(3679), 15, + ACTIONS(3893), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158263,7 +157444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 23, + ACTIONS(3891), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158287,15 +157468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54278] = 5, + [53442] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1845), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(3733), 15, + ACTIONS(3849), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158311,7 +157492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3731), 23, + ACTIONS(3847), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158335,21 +157516,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54331] = 8, + [53495] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, - anon_sym_QMARK, - ACTIONS(4239), 1, - anon_sym_DOT, - STATE(1846), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(3751), 14, + ACTIONS(3799), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158363,10 +157538,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(3747), 21, + ACTIONS(3797), 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, @@ -158386,60 +157564,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54390] = 21, + [53548] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3995), 1, - anon_sym_EQ, - ACTIONS(4209), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(4211), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4213), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4215), 1, - anon_sym_AMP_AMP, - ACTIONS(4217), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4281), 1, + ACTIONS(4085), 1, + anon_sym_EQ, + ACTIONS(4091), 1, anon_sym_DOT_DOT, - ACTIONS(4205), 2, + ACTIONS(4341), 1, + anon_sym_AMP_AMP, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4219), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4227), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4283), 2, + ACTIONS(4093), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1847), 2, + ACTIONS(4339), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4225), 4, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3993), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158450,62 +157629,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54475] = 23, + [53635] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(127), 1, + ACTIONS(4159), 1, + sym_identifier, + ACTIONS(4161), 1, + anon_sym_LBRACE, + ACTIONS(4165), 1, + anon_sym_STAR, + ACTIONS(4171), 1, + anon_sym_COLON_COLON, + ACTIONS(4175), 1, + sym_metavariable, + ACTIONS(4343), 1, anon_sym_RBRACE, - ACTIONS(3749), 1, + STATE(2452), 1, + sym_scoped_identifier, + STATE(3271), 1, + sym__use_clause, + STATE(3448), 1, + sym_generic_type_with_turbofish, + STATE(3600), 1, + sym_bracketed_type, + STATE(1834), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4173), 3, + sym_self, + sym_super, + sym_crate, + STATE(2850), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4167), 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, + [53712] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1848), 2, + ACTIONS(4345), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158516,60 +157754,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54564] = 21, + [53799] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4003), 1, - anon_sym_EQ, - ACTIONS(4209), 1, + STATE(1836), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3773), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4211), 1, anon_sym_AMP, - ACTIONS(4213), 1, anon_sym_PIPE, - ACTIONS(4215), 1, - anon_sym_AMP_AMP, - ACTIONS(4217), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4281), 1, - anon_sym_DOT_DOT, - ACTIONS(4205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4219), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4227), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4283), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1849), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4207), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4225), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4001), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3771), 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, @@ -158580,15 +157795,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54649] = 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, + [53852] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1850), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(3771), 15, + ACTIONS(3791), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158604,7 +157826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3769), 23, + ACTIONS(3789), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158628,15 +157850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54702] = 5, + [53905] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1851), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 15, + ACTIONS(3721), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158652,7 +157874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3705), 23, + ACTIONS(3719), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158676,46 +157898,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54755] = 15, + [53958] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(4209), 1, - anon_sym_CARET, - ACTIONS(4211), 1, - anon_sym_AMP, - ACTIONS(4213), 1, - anon_sym_PIPE, - ACTIONS(4205), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4219), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1852), 2, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(3725), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3893), 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(3891), 20, + ACTIONS(3723), 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, @@ -158734,56 +157945,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [54828] = 19, + anon_sym_as, + [54011] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4209), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4211), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(4213), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4215), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(4217), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4007), 2, + ACTIONS(3965), 1, anon_sym_EQ, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4205), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4219), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4227), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - STATE(1853), 2, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4347), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(4207), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4225), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4005), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158794,23 +158011,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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [54909] = 8, + [54098] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, - anon_sym_LBRACK, - ACTIONS(4237), 1, - anon_sym_QMARK, - ACTIONS(4239), 1, - anon_sym_DOT, - STATE(1854), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(3767), 14, + ACTIONS(3785), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158824,10 +158033,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(3765), 21, + ACTIONS(3783), 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, @@ -158847,62 +158059,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54968] = 23, + [54151] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(289), 1, - anon_sym_RBRACE, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3995), 1, + anon_sym_EQ, + ACTIONS(4185), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4187), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4189), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4191), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4193), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4255), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1855), 2, + STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4183), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4201), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3993), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158913,15 +158123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55057] = 5, + [54236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1856), 2, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(3823), 15, + ACTIONS(3733), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158937,7 +158147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3821), 23, + ACTIONS(3731), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158961,15 +158171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55110] = 5, + [54289] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1857), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(1487), 15, + ACTIONS(3747), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158985,7 +158195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1489), 23, + ACTIONS(3743), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159009,81 +158219,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55163] = 23, + [54342] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(4219), 1, anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4253), 1, - anon_sym_COMMA, - ACTIONS(4367), 1, - anon_sym_RPAREN, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1858), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [55252] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1859), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(3955), 15, + ACTIONS(3857), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159097,13 +158247,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(3953), 23, + ACTIONS(3855), 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, @@ -159123,61 +158270,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55305] = 22, + [54401] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(291), 1, + anon_sym_RBRACE, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(3971), 2, + ACTIONS(4253), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4369), 2, - anon_sym_RBRACE, + STATE(1846), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [54490] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4349), 1, + anon_sym_RPAREN, + ACTIONS(4351), 1, anon_sym_COMMA, - STATE(1860), 2, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159188,15 +158402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55392] = 5, + [54579] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1861), 2, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(3909), 15, + ACTIONS(3853), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159212,7 +158426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3907), 23, + ACTIONS(3851), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159236,81 +158450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55445] = 23, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4371), 1, - anon_sym_SEMI, - ACTIONS(4373), 1, - anon_sym_else, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1862), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [55534] = 5, + [54632] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1863), 2, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(1427), 15, + ACTIONS(3737), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159326,7 +158474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1425), 23, + ACTIONS(3735), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159350,15 +158498,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55587] = 5, + [54685] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1864), 2, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(3855), 15, + ACTIONS(3795), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159374,7 +158522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3853), 23, + ACTIONS(3793), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159398,15 +158546,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55640] = 5, + [54738] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1865), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 15, + ACTIONS(3811), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159422,7 +158570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3897), 23, + ACTIONS(3809), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159446,62 +158594,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55693] = 23, + [54791] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(1189), 1, + anon_sym_RPAREN, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4375), 1, - anon_sym_SEMI, - ACTIONS(4377), 1, - anon_sym_else, - ACTIONS(3971), 2, + ACTIONS(4213), 1, + anon_sym_COMMA, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159512,15 +158660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55782] = 5, + [54880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1867), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(3803), 15, + ACTIONS(3619), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159536,7 +158684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3801), 23, + ACTIONS(3615), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159560,118 +158708,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55835] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4145), 1, - sym_identifier, - ACTIONS(4147), 1, - anon_sym_LBRACE, - ACTIONS(4151), 1, - anon_sym_STAR, - ACTIONS(4157), 1, - anon_sym_COLON_COLON, - ACTIONS(4161), 1, - sym_metavariable, - STATE(2486), 1, - sym_scoped_identifier, - STATE(3408), 1, - sym_generic_type_with_turbofish, - STATE(3426), 1, - sym_bracketed_type, - STATE(3645), 1, - sym__use_clause, - STATE(1868), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4159), 3, - sym_self, - sym_super, - sym_crate, - STATE(3045), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4153), 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, - [55909] = 22, + [54933] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(4007), 1, + anon_sym_EQ, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(4219), 1, anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(4231), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4241), 1, anon_sym_DOT_DOT, - ACTIONS(4379), 1, - anon_sym_RBRACK, - ACTIONS(3971), 2, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4239), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4243), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4237), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(4005), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159682,59 +158772,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55995] = 21, + [55018] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(4241), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, + ACTIONS(4185), 1, anon_sym_CARET, - ACTIONS(4267), 1, + ACTIONS(4187), 1, + anon_sym_AMP, + ACTIONS(4189), 1, anon_sym_PIPE, - ACTIONS(4275), 1, + ACTIONS(4191), 1, + anon_sym_AMP_AMP, + ACTIONS(4193), 1, anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, + ACTIONS(4199), 1, anon_sym_EQ, - ACTIONS(4381), 1, + ACTIONS(4255), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(3847), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4181), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4247), 2, + ACTIONS(4195), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, + ACTIONS(4203), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4307), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4383), 2, + ACTIONS(4257), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1870), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(4183), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4269), 4, + ACTIONS(4201), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4321), 10, + ACTIONS(4197), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159745,60 +158837,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56079] = 22, + [55105] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, + STATE(1856), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3741), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3977), 1, anon_sym_AMP, - ACTIONS(3979), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4385), 1, - anon_sym_RBRACK, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3739), 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(1871), 2, + anon_sym_as, + [55158] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4215), 1, + anon_sym_LBRACK, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_DOT, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3815), 14, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 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_DOT, + ACTIONS(3813), 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(4009), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55217] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1858), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3651), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3649), 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, @@ -159809,60 +158977,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56165] = 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, + [55270] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4071), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4079), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(4085), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4091), 1, anon_sym_DOT_DOT, - ACTIONS(4387), 1, - anon_sym_RBRACK, - ACTIONS(3971), 2, + ACTIONS(4067), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4081), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4089), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4093), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4069), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4353), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4087), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(4083), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159873,60 +159048,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56251] = 22, + [55355] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4389), 1, + ACTIONS(4355), 1, anon_sym_RBRACK, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159937,59 +159112,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56337] = 21, + [55441] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(4241), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4267), 1, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4275), 1, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4381), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4357), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4247), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4357), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4383), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1874), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4269), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4321), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160000,60 +159176,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56421] = 22, + [55527] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 1, - anon_sym_COMMA, - ACTIONS(3971), 2, + ACTIONS(4359), 1, + anon_sym_RBRACK, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160064,60 +159240,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56507] = 22, + [55613] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4391), 1, + ACTIONS(4361), 1, anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1876), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160128,60 +159304,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56593] = 22, + [55699] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4393), 1, + ACTIONS(4363), 1, anon_sym_RBRACK, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1877), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160192,60 +159368,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56679] = 22, + [55785] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4395), 1, + ACTIONS(4365), 1, anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1878), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160256,102 +159432,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56765] = 16, + [55871] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4145), 1, + ACTIONS(4159), 1, sym_identifier, - ACTIONS(4147), 1, - anon_sym_LBRACE, - ACTIONS(4151), 1, - anon_sym_STAR, - ACTIONS(4157), 1, - anon_sym_COLON_COLON, ACTIONS(4161), 1, - sym_metavariable, - STATE(2486), 1, - sym_scoped_identifier, - STATE(3371), 1, - sym__use_clause, - STATE(3408), 1, - sym_generic_type_with_turbofish, - STATE(3426), 1, - sym_bracketed_type, - STATE(1879), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4159), 3, - sym_self, - sym_super, - sym_crate, - STATE(3045), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4153), 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, - [56839] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4145), 1, - sym_identifier, - ACTIONS(4147), 1, anon_sym_LBRACE, - ACTIONS(4151), 1, + ACTIONS(4165), 1, anon_sym_STAR, - ACTIONS(4157), 1, + ACTIONS(4171), 1, anon_sym_COLON_COLON, - ACTIONS(4161), 1, + ACTIONS(4175), 1, sym_metavariable, - STATE(2486), 1, + STATE(2452), 1, sym_scoped_identifier, - STATE(3232), 1, - sym__use_clause, - STATE(3408), 1, + STATE(3448), 1, sym_generic_type_with_turbofish, - STATE(3426), 1, + STATE(3493), 1, + sym__use_clause, + STATE(3600), 1, sym_bracketed_type, - STATE(1880), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(4159), 3, + ACTIONS(4173), 3, sym_self, sym_super, sym_crate, - STATE(3045), 4, + STATE(2850), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4153), 20, + ACTIONS(4167), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160372,60 +159490,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [56913] = 22, + [55945] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4397), 1, - anon_sym_RBRACK, - ACTIONS(3971), 2, + ACTIONS(4213), 1, + anon_sym_COMMA, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1881), 2, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160436,60 +159554,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56999] = 22, + [56031] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(4215), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(4217), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(4219), 1, anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(4225), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(4233), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4251), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4367), 1, anon_sym_DOT_DOT, - ACTIONS(4399), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4221), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(4235), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(4239), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4353), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4369), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1882), 2, + STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(4223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(4237), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(4249), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160500,60 +159617,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57085] = 22, + [56115] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4401), 1, - anon_sym_RBRACK, - ACTIONS(3971), 2, + ACTIONS(4371), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1883), 2, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160564,60 +159681,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57171] = 22, + [56201] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4403), 1, + ACTIONS(4373), 1, anon_sym_RBRACK, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1884), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160628,60 +159745,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57257] = 22, + [56287] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4405), 1, - anon_sym_COMMA, - ACTIONS(3971), 2, + ACTIONS(4375), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1885), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160692,60 +159809,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57343] = 22, + [56373] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4159), 1, + sym_identifier, + ACTIONS(4161), 1, + anon_sym_LBRACE, + ACTIONS(4165), 1, + anon_sym_STAR, + ACTIONS(4171), 1, + anon_sym_COLON_COLON, + ACTIONS(4175), 1, + sym_metavariable, + STATE(2452), 1, + sym_scoped_identifier, + STATE(3379), 1, + sym__use_clause, + STATE(3448), 1, + sym_generic_type_with_turbofish, + STATE(3600), 1, + sym_bracketed_type, + STATE(1872), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4173), 3, + sym_self, + sym_super, + sym_crate, + STATE(2850), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4167), 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, + [56447] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4407), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4377), 1, + anon_sym_COMMA, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1886), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160756,60 +159931,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57429] = 22, + [56533] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4409), 1, - anon_sym_RBRACK, - ACTIONS(3971), 2, + ACTIONS(4379), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1887), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160820,60 +159995,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57515] = 22, + [56619] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4411), 1, + ACTIONS(4381), 1, anon_sym_RBRACK, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1888), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160884,60 +160059,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57601] = 22, + [56705] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4413), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4383), 1, + anon_sym_RBRACK, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1889), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160948,60 +160123,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57687] = 22, + [56791] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4415), 1, + ACTIONS(4385), 1, anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1890), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161012,60 +160187,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57773] = 22, + [56877] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4417), 1, - anon_sym_COMMA, - ACTIONS(3971), 2, + ACTIONS(4387), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1891), 2, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161076,124 +160251,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57859] = 22, + [56963] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, - anon_sym_LBRACK, - ACTIONS(3753), 1, - anon_sym_QMARK, - ACTIONS(3755), 1, - anon_sym_DOT, - ACTIONS(3895), 1, - anon_sym_as, - ACTIONS(3975), 1, - anon_sym_CARET, - ACTIONS(3977), 1, - anon_sym_AMP, - ACTIONS(3979), 1, - anon_sym_PIPE, - ACTIONS(3981), 1, - anon_sym_AMP_AMP, - ACTIONS(3983), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, - anon_sym_EQ, - ACTIONS(4097), 1, - anon_sym_DOT_DOT, - ACTIONS(4419), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3985), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3989), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4099), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1892), 2, + ACTIONS(4159), 1, + sym_identifier, + ACTIONS(4161), 1, + anon_sym_LBRACE, + ACTIONS(4165), 1, + anon_sym_STAR, + ACTIONS(4171), 1, + anon_sym_COLON_COLON, + ACTIONS(4175), 1, + sym_metavariable, + STATE(2452), 1, + sym_scoped_identifier, + STATE(3436), 1, + sym__use_clause, + STATE(3448), 1, + sym_generic_type_with_turbofish, + STATE(3600), 1, + sym_bracketed_type, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4009), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [57945] = 22, + ACTIONS(4173), 3, + sym_self, + sym_super, + sym_crate, + STATE(2850), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4167), 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, + [57037] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4421), 1, + ACTIONS(4389), 1, anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1893), 2, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161204,60 +160373,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58031] = 22, + [57123] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4423), 1, + ACTIONS(4391), 1, anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1894), 2, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161268,60 +160437,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58117] = 22, + [57209] = 16, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4159), 1, + sym_identifier, + ACTIONS(4161), 1, + anon_sym_LBRACE, + ACTIONS(4165), 1, + anon_sym_STAR, + ACTIONS(4171), 1, + anon_sym_COLON_COLON, + ACTIONS(4175), 1, + sym_metavariable, + STATE(2452), 1, + sym_scoped_identifier, + STATE(3271), 1, + sym__use_clause, + STATE(3448), 1, + sym_generic_type_with_turbofish, + STATE(3600), 1, + sym_bracketed_type, + STATE(1882), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4173), 3, + sym_self, + sym_super, + sym_crate, + STATE(2850), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4167), 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, + [57283] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4425), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4393), 1, + anon_sym_RBRACK, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1895), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161332,60 +160559,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58203] = 22, + [57369] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4427), 1, - anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(4395), 1, + anon_sym_COMMA, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1896), 2, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161396,60 +160623,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58289] = 22, + [57455] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4429), 1, - anon_sym_COMMA, - ACTIONS(3971), 2, + ACTIONS(4397), 1, + anon_sym_RBRACK, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1897), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161460,60 +160687,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58375] = 22, + [57541] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4431), 1, + ACTIONS(4399), 1, anon_sym_RBRACK, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1898), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161524,60 +160751,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58461] = 22, + [57627] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4233), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(4237), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(4239), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(4241), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(4245), 1, - anon_sym_AMP, - ACTIONS(4265), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(4267), 1, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(4275), 1, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4289), 1, - anon_sym_EQ_GT, - ACTIONS(4323), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4381), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4433), 1, - anon_sym_AMP_AMP, - ACTIONS(4243), 2, + ACTIONS(4401), 1, + anon_sym_SEMI, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4247), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4271), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4383), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1899), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4235), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4269), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4321), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161588,44 +160815,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58547] = 16, + [57713] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4145), 1, + ACTIONS(4159), 1, sym_identifier, - ACTIONS(4147), 1, + ACTIONS(4161), 1, anon_sym_LBRACE, - ACTIONS(4151), 1, + ACTIONS(4165), 1, anon_sym_STAR, - ACTIONS(4157), 1, + ACTIONS(4171), 1, anon_sym_COLON_COLON, - ACTIONS(4161), 1, + ACTIONS(4175), 1, sym_metavariable, - STATE(2486), 1, + STATE(2452), 1, sym_scoped_identifier, - STATE(3408), 1, + STATE(3448), 1, sym_generic_type_with_turbofish, - STATE(3426), 1, - sym_bracketed_type, - STATE(3501), 1, + STATE(3511), 1, sym__use_clause, - STATE(1900), 2, + STATE(3600), 1, + sym_bracketed_type, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(4159), 3, + ACTIONS(4173), 3, sym_self, sym_super, sym_crate, - STATE(3045), 4, + STATE(2850), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4153), 20, + ACTIONS(4167), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161646,118 +160873,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [58621] = 16, - ACTIONS(29), 1, + [57787] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4403), 1, + anon_sym_COMMA, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 2, + anon_sym_GT, anon_sym_LT, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1889), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [57873] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4145), 1, - sym_identifier, - ACTIONS(4147), 1, - anon_sym_LBRACE, - ACTIONS(4151), 1, + ACTIONS(4215), 1, + anon_sym_LBRACK, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_DOT, + ACTIONS(4225), 1, + anon_sym_CARET, + ACTIONS(4227), 1, + anon_sym_AMP, + ACTIONS(4229), 1, + anon_sym_PIPE, + ACTIONS(4233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4251), 1, + anon_sym_EQ, + ACTIONS(4339), 1, + anon_sym_EQ_GT, + ACTIONS(4367), 1, + anon_sym_DOT_DOT, + ACTIONS(4405), 1, + anon_sym_AMP_AMP, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4239), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4369), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1890), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, anon_sym_STAR, - ACTIONS(4157), 1, - anon_sym_COLON_COLON, - ACTIONS(4161), 1, - sym_metavariable, - STATE(2486), 1, - sym_scoped_identifier, - STATE(3374), 1, - sym__use_clause, - STATE(3408), 1, - sym_generic_type_with_turbofish, - STATE(3426), 1, - sym_bracketed_type, - STATE(1901), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4237), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4249), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [57959] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4407), 1, + anon_sym_RBRACK, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(4159), 3, - sym_self, - sym_super, - sym_crate, - STATE(3045), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4153), 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, - [58695] = 22, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [58045] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4435), 1, - anon_sym_COMMA, - ACTIONS(3971), 2, + ACTIONS(4409), 1, + anon_sym_RBRACK, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1902), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161768,60 +161129,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58781] = 22, + [58131] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4263), 1, + ACTIONS(4411), 1, anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1903), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161832,60 +161193,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58867] = 22, + [58217] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3749), 1, + ACTIONS(3655), 1, anon_sym_LBRACK, - ACTIONS(3753), 1, + ACTIONS(3659), 1, anon_sym_QMARK, - ACTIONS(3755), 1, + ACTIONS(3661), 1, anon_sym_DOT, - ACTIONS(3895), 1, + ACTIONS(3769), 1, anon_sym_as, - ACTIONS(3975), 1, + ACTIONS(3951), 1, anon_sym_CARET, - ACTIONS(3977), 1, + ACTIONS(3953), 1, anon_sym_AMP, - ACTIONS(3979), 1, + ACTIONS(3955), 1, anon_sym_PIPE, - ACTIONS(3981), 1, + ACTIONS(3957), 1, anon_sym_AMP_AMP, - ACTIONS(3983), 1, + ACTIONS(3959), 1, anon_sym_PIPE_PIPE, - ACTIONS(4011), 1, + ACTIONS(3965), 1, anon_sym_EQ, - ACTIONS(4097), 1, + ACTIONS(4045), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, + ACTIONS(4413), 1, + anon_sym_COMMA, + ACTIONS(3947), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3961), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3969), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4047), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1894), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3949), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3967), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3963), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [58303] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4215), 1, + anon_sym_LBRACK, + ACTIONS(4217), 1, + anon_sym_QMARK, + ACTIONS(4219), 1, + anon_sym_DOT, + ACTIONS(4225), 1, + anon_sym_CARET, + ACTIONS(4227), 1, + anon_sym_AMP, + ACTIONS(4229), 1, + anon_sym_PIPE, + ACTIONS(4233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4245), 1, + anon_sym_as, + ACTIONS(4251), 1, + anon_sym_EQ, + ACTIONS(4367), 1, + anon_sym_DOT_DOT, + ACTIONS(4221), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4235), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4239), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4321), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4369), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1895), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4237), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4249), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [58387] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3655), 1, + anon_sym_LBRACK, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3769), 1, + anon_sym_as, + ACTIONS(3951), 1, + anon_sym_CARET, + ACTIONS(3953), 1, + anon_sym_AMP, + ACTIONS(3955), 1, + anon_sym_PIPE, + ACTIONS(3957), 1, + anon_sym_AMP_AMP, + ACTIONS(3959), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(4045), 1, + anon_sym_DOT_DOT, + ACTIONS(4253), 1, anon_sym_SEMI, - ACTIONS(3971), 2, + ACTIONS(3947), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3985), 2, + ACTIONS(3961), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3989), 2, + ACTIONS(3969), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4099), 2, + ACTIONS(4047), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1904), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 3, + ACTIONS(3949), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3987), 4, + ACTIONS(3967), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4009), 10, + ACTIONS(3963), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161896,47 +161384,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58953] = 17, + [58473] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3665), 1, anon_sym_where, - ACTIONS(4439), 1, + ACTIONS(4415), 1, sym_identifier, - ACTIONS(4443), 1, + ACTIONS(4419), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4425), 1, sym_metavariable, - STATE(2972), 1, + STATE(3022), 1, sym_scoped_type_identifier, - STATE(3271), 1, + STATE(3288), 1, sym_generic_type, - STATE(3415), 1, + STATE(3374), 1, sym_scoped_identifier, - STATE(3525), 1, + STATE(3483), 1, sym_generic_type_with_turbofish, - STATE(3551), 1, + STATE(3510), 1, sym_bracketed_type, - STATE(1905), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3663), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4445), 3, + ACTIONS(4421), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4447), 3, + ACTIONS(4423), 3, sym_self, sym_super, sym_crate, - ACTIONS(4441), 17, + ACTIONS(4417), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161954,47 +161442,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59028] = 17, + [58548] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3665), 1, anon_sym_where, - ACTIONS(4443), 1, + ACTIONS(4419), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4425), 1, sym_metavariable, - ACTIONS(4451), 1, + ACTIONS(4427), 1, sym_identifier, - STATE(2940), 1, + STATE(2992), 1, sym_scoped_type_identifier, - STATE(3081), 1, + STATE(3243), 1, sym_generic_type, - STATE(3415), 1, + STATE(3374), 1, sym_scoped_identifier, - STATE(3525), 1, + STATE(3483), 1, sym_generic_type_with_turbofish, - STATE(3551), 1, + STATE(3510), 1, sym_bracketed_type, - STATE(1906), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3663), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4445), 3, + ACTIONS(4421), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4447), 3, + ACTIONS(4423), 3, sym_self, sym_super, sym_crate, - ACTIONS(4441), 17, + ACTIONS(4417), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162012,47 +161500,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59103] = 17, + [58623] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3665), 1, anon_sym_where, - ACTIONS(4443), 1, + ACTIONS(4419), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4425), 1, sym_metavariable, - ACTIONS(4453), 1, + ACTIONS(4429), 1, sym_identifier, - STATE(3062), 1, + STATE(2738), 1, sym_scoped_type_identifier, - STATE(3344), 1, + STATE(3313), 1, sym_generic_type, - STATE(3415), 1, + STATE(3374), 1, sym_scoped_identifier, - STATE(3525), 1, + STATE(3483), 1, sym_generic_type_with_turbofish, - STATE(3551), 1, + STATE(3510), 1, sym_bracketed_type, - STATE(1907), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3663), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4445), 3, + ACTIONS(4421), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4447), 3, + ACTIONS(4423), 3, sym_self, sym_super, sym_crate, - ACTIONS(4441), 17, + ACTIONS(4417), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162070,47 +161558,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59178] = 17, + [58698] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3665), 1, anon_sym_where, - ACTIONS(4443), 1, + ACTIONS(4419), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4425), 1, sym_metavariable, - ACTIONS(4455), 1, + ACTIONS(4431), 1, sym_identifier, - STATE(2829), 1, + STATE(2993), 1, sym_scoped_type_identifier, - STATE(3131), 1, + STATE(3241), 1, sym_generic_type, - STATE(3415), 1, + STATE(3374), 1, sym_scoped_identifier, - STATE(3525), 1, + STATE(3483), 1, sym_generic_type_with_turbofish, - STATE(3551), 1, + STATE(3510), 1, sym_bracketed_type, - STATE(1908), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3663), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4445), 3, + ACTIONS(4421), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4447), 3, + ACTIONS(4423), 3, sym_self, sym_super, sym_crate, - ACTIONS(4441), 17, + ACTIONS(4417), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162128,47 +161616,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59253] = 17, + [58773] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3665), 1, anon_sym_where, - ACTIONS(4443), 1, + ACTIONS(4419), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4425), 1, sym_metavariable, - ACTIONS(4457), 1, + ACTIONS(4433), 1, sym_identifier, - STATE(3046), 1, + STATE(3026), 1, sym_scoped_type_identifier, - STATE(3331), 1, + STATE(3296), 1, sym_generic_type, - STATE(3415), 1, + STATE(3374), 1, sym_scoped_identifier, - STATE(3525), 1, + STATE(3483), 1, sym_generic_type_with_turbofish, - STATE(3551), 1, + STATE(3510), 1, sym_bracketed_type, - STATE(1909), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3663), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4445), 3, + ACTIONS(4421), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4447), 3, + ACTIONS(4423), 3, sym_self, sym_super, sym_crate, - ACTIONS(4441), 17, + ACTIONS(4417), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162186,47 +161674,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59328] = 17, + [58848] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3665), 1, anon_sym_where, - ACTIONS(4443), 1, + ACTIONS(4419), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4425), 1, sym_metavariable, - ACTIONS(4459), 1, + ACTIONS(4435), 1, sym_identifier, - STATE(2916), 1, + STATE(3020), 1, sym_scoped_type_identifier, - STATE(3149), 1, + STATE(3286), 1, sym_generic_type, - STATE(3415), 1, + STATE(3374), 1, sym_scoped_identifier, - STATE(3525), 1, + STATE(3483), 1, sym_generic_type_with_turbofish, - STATE(3551), 1, + STATE(3510), 1, sym_bracketed_type, - STATE(1910), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3663), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4445), 3, + ACTIONS(4421), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4447), 3, + ACTIONS(4423), 3, sym_self, sym_super, sym_crate, - ACTIONS(4441), 17, + ACTIONS(4417), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162244,47 +161732,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59403] = 17, + [58923] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3665), 1, anon_sym_where, - ACTIONS(4443), 1, + ACTIONS(4419), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4425), 1, sym_metavariable, - ACTIONS(4461), 1, + ACTIONS(4437), 1, sym_identifier, - STATE(3055), 1, + STATE(3024), 1, sym_scoped_type_identifier, - STATE(3336), 1, + STATE(3294), 1, sym_generic_type, - STATE(3415), 1, + STATE(3374), 1, sym_scoped_identifier, - STATE(3525), 1, + STATE(3483), 1, sym_generic_type_with_turbofish, - STATE(3551), 1, + STATE(3510), 1, sym_bracketed_type, - STATE(1911), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3663), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4445), 3, + ACTIONS(4421), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4447), 3, + ACTIONS(4423), 3, sym_self, sym_super, sym_crate, - ACTIONS(4441), 17, + ACTIONS(4417), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162302,47 +161790,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59478] = 17, + [58998] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, + ACTIONS(3665), 1, anon_sym_where, - ACTIONS(4443), 1, + ACTIONS(4419), 1, anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(4425), 1, sym_metavariable, - ACTIONS(4463), 1, + ACTIONS(4439), 1, sym_identifier, - STATE(3057), 1, + STATE(3028), 1, sym_scoped_type_identifier, - STATE(3339), 1, + STATE(3301), 1, sym_generic_type, - STATE(3415), 1, + STATE(3374), 1, sym_scoped_identifier, - STATE(3525), 1, + STATE(3483), 1, sym_generic_type_with_turbofish, - STATE(3551), 1, + STATE(3510), 1, sym_bracketed_type, - STATE(1912), 2, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 3, + ACTIONS(3663), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4445), 3, + ACTIONS(4421), 3, anon_sym_default, anon_sym_gen, anon_sym_union, - ACTIONS(4447), 3, + ACTIONS(4423), 3, sym_self, sym_super, sym_crate, - ACTIONS(4441), 17, + ACTIONS(4417), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162360,19 +161848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [59553] = 5, + [59073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1913), 2, + STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(4467), 3, + ACTIONS(4443), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4465), 29, + ACTIONS(4441), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162402,19 +161890,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [59600] = 5, + [59120] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1914), 2, + STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(4471), 3, + ACTIONS(4447), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4469), 29, + ACTIONS(4445), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162444,19 +161932,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [59647] = 5, + [59167] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1915), 2, + STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, + ACTIONS(4451), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4473), 29, + ACTIONS(4449), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162486,35 +161974,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [59694] = 13, + [59214] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2243), 1, + ACTIONS(2437), 1, anon_sym_COLON_COLON, - ACTIONS(4477), 1, + ACTIONS(4453), 1, sym_identifier, - ACTIONS(4483), 1, + ACTIONS(4459), 1, sym_metavariable, - STATE(2265), 1, + STATE(2256), 1, sym_scoped_identifier, - STATE(3370), 1, + STATE(3328), 1, sym_bracketed_type, - STATE(3387), 1, - sym_attribute, - STATE(3395), 1, + STATE(3354), 1, sym_generic_type_with_turbofish, - STATE(1916), 2, + STATE(3386), 1, + sym_attribute, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(4481), 3, + ACTIONS(4457), 3, sym_self, sym_super, sym_crate, - ACTIONS(4479), 20, + ACTIONS(4455), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162535,35 +162023,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [59756] = 13, + [59276] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2243), 1, + ACTIONS(2437), 1, anon_sym_COLON_COLON, - ACTIONS(4477), 1, + ACTIONS(4453), 1, sym_identifier, - ACTIONS(4483), 1, + ACTIONS(4459), 1, sym_metavariable, - STATE(2265), 1, + STATE(2256), 1, sym_scoped_identifier, - STATE(3370), 1, + STATE(3328), 1, sym_bracketed_type, - STATE(3395), 1, + STATE(3354), 1, sym_generic_type_with_turbofish, STATE(3487), 1, sym_attribute, - STATE(1917), 2, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(4481), 3, + ACTIONS(4457), 3, sym_self, sym_super, sym_crate, - ACTIONS(4479), 20, + ACTIONS(4455), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162584,35 +162072,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [59818] = 13, + [59338] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2243), 1, + ACTIONS(2437), 1, anon_sym_COLON_COLON, - ACTIONS(4477), 1, + ACTIONS(4453), 1, sym_identifier, - ACTIONS(4483), 1, + ACTIONS(4459), 1, sym_metavariable, - STATE(2265), 1, + STATE(2256), 1, sym_scoped_identifier, - STATE(3370), 1, + STATE(3328), 1, sym_bracketed_type, - STATE(3395), 1, + STATE(3354), 1, sym_generic_type_with_turbofish, - STATE(3561), 1, + STATE(3481), 1, sym_attribute, - STATE(1918), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(4481), 3, + ACTIONS(4457), 3, sym_self, sym_super, sym_crate, - ACTIONS(4479), 20, + ACTIONS(4455), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162633,35 +162121,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [59880] = 13, + [59400] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2243), 1, + ACTIONS(2437), 1, anon_sym_COLON_COLON, - ACTIONS(4477), 1, + ACTIONS(4453), 1, sym_identifier, - ACTIONS(4483), 1, + ACTIONS(4459), 1, sym_metavariable, - STATE(2265), 1, + STATE(2256), 1, sym_scoped_identifier, - STATE(3357), 1, - sym_attribute, - STATE(3370), 1, + STATE(3328), 1, sym_bracketed_type, - STATE(3395), 1, + STATE(3354), 1, sym_generic_type_with_turbofish, - STATE(1919), 2, + STATE(3446), 1, + sym_attribute, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(4481), 3, + ACTIONS(4457), 3, sym_self, sym_super, sym_crate, - ACTIONS(4479), 20, + ACTIONS(4455), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162682,35 +162170,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [59942] = 13, + [59462] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2243), 1, + ACTIONS(2437), 1, anon_sym_COLON_COLON, - ACTIONS(4477), 1, + ACTIONS(4453), 1, sym_identifier, - ACTIONS(4483), 1, + ACTIONS(4459), 1, sym_metavariable, - STATE(2265), 1, + STATE(2256), 1, sym_scoped_identifier, - STATE(3370), 1, + STATE(3328), 1, sym_bracketed_type, - STATE(3395), 1, - sym_generic_type_with_turbofish, - STATE(3531), 1, + STATE(3341), 1, sym_attribute, - STATE(1920), 2, + STATE(3354), 1, + sym_generic_type_with_turbofish, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(4481), 3, + ACTIONS(4457), 3, sym_self, sym_super, sym_crate, - ACTIONS(4479), 20, + ACTIONS(4455), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162731,35 +162219,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60004] = 13, + [59524] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2243), 1, + ACTIONS(2437), 1, anon_sym_COLON_COLON, - ACTIONS(4477), 1, + ACTIONS(4453), 1, sym_identifier, - ACTIONS(4483), 1, + ACTIONS(4459), 1, sym_metavariable, - STATE(2265), 1, + STATE(2256), 1, sym_scoped_identifier, - STATE(3370), 1, + STATE(3328), 1, sym_bracketed_type, - STATE(3395), 1, + STATE(3354), 1, sym_generic_type_with_turbofish, - STATE(3479), 1, + STATE(3463), 1, sym_attribute, - STATE(1921), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(4481), 3, + ACTIONS(4457), 3, sym_self, sym_super, sym_crate, - ACTIONS(4479), 20, + ACTIONS(4455), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162780,35 +162268,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60066] = 13, + [59586] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2243), 1, + ACTIONS(2437), 1, anon_sym_COLON_COLON, - ACTIONS(4477), 1, + ACTIONS(4453), 1, sym_identifier, - ACTIONS(4483), 1, + ACTIONS(4459), 1, sym_metavariable, - STATE(2265), 1, + STATE(2256), 1, sym_scoped_identifier, - STATE(3370), 1, + STATE(3328), 1, sym_bracketed_type, - STATE(3395), 1, + STATE(3354), 1, sym_generic_type_with_turbofish, - STATE(3621), 1, + STATE(3424), 1, sym_attribute, - STATE(1922), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(4481), 3, + ACTIONS(4457), 3, sym_self, sym_super, sym_crate, - ACTIONS(4479), 20, + ACTIONS(4455), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162829,35 +162317,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60128] = 13, + [59648] = 13, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2243), 1, + ACTIONS(2437), 1, anon_sym_COLON_COLON, - ACTIONS(4477), 1, + ACTIONS(4453), 1, sym_identifier, - ACTIONS(4483), 1, + ACTIONS(4459), 1, sym_metavariable, - STATE(2265), 1, + STATE(2256), 1, sym_scoped_identifier, - STATE(3370), 1, + STATE(3324), 1, + sym_attribute, + STATE(3328), 1, sym_bracketed_type, - STATE(3395), 1, + STATE(3354), 1, sym_generic_type_with_turbofish, - STATE(3423), 1, - sym_attribute, - STATE(1923), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(4481), 3, + ACTIONS(4457), 3, sym_self, sym_super, sym_crate, - ACTIONS(4479), 20, + ACTIONS(4455), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162878,33 +162366,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60190] = 12, + [59710] = 12, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4485), 1, + ACTIONS(4461), 1, sym_identifier, - ACTIONS(4489), 1, + ACTIONS(4465), 1, anon_sym_COLON_COLON, - ACTIONS(4493), 1, + ACTIONS(4469), 1, sym_metavariable, - STATE(3159), 1, + STATE(3191), 1, sym_scoped_identifier, - STATE(3408), 1, + STATE(3448), 1, sym_generic_type_with_turbofish, - STATE(3426), 1, + STATE(3600), 1, sym_bracketed_type, - STATE(1924), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(4491), 3, + ACTIONS(4467), 3, sym_self, sym_super, sym_crate, - ACTIONS(4487), 20, + ACTIONS(4463), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162925,33 +162413,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60249] = 12, + [59769] = 12, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4489), 1, + ACTIONS(4465), 1, anon_sym_COLON_COLON, - ACTIONS(4495), 1, + ACTIONS(4471), 1, sym_identifier, - ACTIONS(4501), 1, + ACTIONS(4477), 1, sym_metavariable, - STATE(3184), 1, + STATE(3263), 1, sym_scoped_identifier, - STATE(3408), 1, + STATE(3448), 1, sym_generic_type_with_turbofish, - STATE(3426), 1, + STATE(3600), 1, sym_bracketed_type, - STATE(1925), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(4499), 3, + ACTIONS(4475), 3, sym_self, sym_super, sym_crate, - ACTIONS(4497), 20, + ACTIONS(4473), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -162972,54 +162460,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [60308] = 11, + [59828] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3293), 1, - anon_sym_COLON, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4507), 1, - anon_sym_COLON_COLON, - ACTIONS(4509), 1, - anon_sym_LT2, - STATE(1956), 1, - sym_type_arguments, - STATE(1978), 1, - sym_parameters, - STATE(1926), 2, + ACTIONS(921), 1, + anon_sym_DOT_DOT, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 14, + ACTIONS(923), 20, 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_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, anon_sym_else, - [60356] = 5, + anon_sym_in, + [59864] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1013), 1, + ACTIONS(1019), 1, anon_sym_DOT_DOT, - STATE(1927), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(1015), 20, + ACTIONS(1021), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163040,51 +162522,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [60392] = 5, + [59900] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, - anon_sym_DOT_DOT, - STATE(1928), 2, + ACTIONS(3293), 1, + anon_sym_COLON, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4481), 1, + anon_sym_BANG, + ACTIONS(4483), 1, + anon_sym_COLON_COLON, + ACTIONS(4485), 1, + anon_sym_LT2, + STATE(1948), 1, + sym_type_arguments, + STATE(1967), 1, + sym_parameters, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(999), 20, + ACTIONS(3289), 14, 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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [60428] = 6, + [59948] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3333), 1, anon_sym_COLON, - ACTIONS(3380), 2, + ACTIONS(3337), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1929), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 17, + ACTIONS(3331), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -163102,24 +162590,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [60465] = 10, + [59985] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3325), 1, anon_sym_COLON, - ACTIONS(4503), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(4511), 1, + ACTIONS(4487), 1, anon_sym_COLON_COLON, - STATE(1956), 1, + STATE(1948), 1, sym_type_arguments, - STATE(1978), 1, + STATE(1967), 1, sym_parameters, - STATE(1930), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, ACTIONS(3323), 14, @@ -163137,51 +162625,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60510] = 6, + [60030] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3364), 1, - anon_sym_COLON, - ACTIONS(3368), 2, + ACTIONS(4481), 1, anon_sym_BANG, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4491), 1, + anon_sym_LPAREN, + ACTIONS(4493), 1, + anon_sym_LBRACE, + ACTIONS(4495), 1, + anon_sym_COLON, + ACTIONS(4497), 1, + anon_sym_AT, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(4503), 1, anon_sym_COLON_COLON, - STATE(1931), 2, + STATE(1948), 1, + sym_type_arguments, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(3362), 17, + ACTIONS(4489), 9, 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, - anon_sym_LT2, - [60547] = 6, + anon_sym_in, + [60083] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 1, + ACTIONS(3369), 1, anon_sym_COLON, - ACTIONS(3337), 2, + ACTIONS(3373), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1932), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(3331), 17, + ACTIONS(3367), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -163199,28 +162695,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [60584] = 10, + [60120] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3321), 1, + ACTIONS(3341), 1, anon_sym_COLON, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4511), 1, + ACTIONS(3345), 2, + anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1956), 1, - sym_type_arguments, - STATE(1978), 1, - sym_parameters, - STATE(1933), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(3319), 14, + ACTIONS(3339), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -163232,61 +162722,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [60629] = 14, + anon_sym_LT2, + [60157] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4517), 1, - anon_sym_LBRACE, - ACTIONS(4519), 1, + ACTIONS(3315), 1, anon_sym_COLON, - ACTIONS(4521), 1, - anon_sym_AT, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(4527), 1, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4487), 1, anon_sym_COLON_COLON, - STATE(1956), 1, + STATE(1948), 1, sym_type_arguments, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1934), 2, + STATE(1967), 1, + sym_parameters, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(4513), 9, + ACTIONS(3313), 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, - anon_sym_in, - [60682] = 6, + [60202] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3356), 1, + ACTIONS(3357), 1, anon_sym_COLON, - ACTIONS(3360), 2, + ACTIONS(3361), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1935), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 17, + ACTIONS(3355), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -163304,27 +162792,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [60719] = 10, + [60239] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3315), 1, + ACTIONS(3321), 1, anon_sym_COLON, - ACTIONS(4503), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(4511), 1, + ACTIONS(4487), 1, anon_sym_COLON_COLON, - STATE(1956), 1, + STATE(1948), 1, sym_type_arguments, - STATE(1978), 1, + STATE(1967), 1, sym_parameters, - STATE(1936), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 14, + ACTIONS(3319), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163339,23 +162827,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60764] = 8, + [60284] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - STATE(1958), 1, + STATE(1950), 1, sym_type_arguments, - STATE(1963), 1, + STATE(1970), 1, sym_parameters, - STATE(1937), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(3339), 15, + ACTIONS(3351), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163371,22 +162859,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60804] = 6, + [60324] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3335), 2, + ACTIONS(3371), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1938), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(3331), 3, + ACTIONS(3367), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3337), 14, + ACTIONS(3373), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -163401,108 +162889,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60840] = 8, + [60360] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, - anon_sym_LT2, - STATE(1958), 1, - sym_type_arguments, - STATE(1963), 1, - sym_parameters, - STATE(1939), 2, + ACTIONS(3343), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 15, + ACTIONS(3339), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3345), 14, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, - [60880] = 5, + anon_sym_in, + [60396] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3479), 1, - anon_sym_COLON, - STATE(1940), 2, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_LT2, + STATE(1950), 1, + sym_type_arguments, + STATE(1970), 1, + sym_parameters, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 18, + ACTIONS(3363), 15, 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_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_in, - [60914] = 6, + [60436] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1941), 2, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_LT2, + STATE(1950), 1, + sym_type_arguments, + STATE(1970), 1, + sym_parameters, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3360), 14, + ACTIONS(3327), 15, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [60950] = 5, + [60476] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3583), 1, + ACTIONS(3573), 1, anon_sym_COLON, - STATE(1942), 2, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 18, + ACTIONS(3571), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -163521,22 +163012,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [60984] = 6, + [60510] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 2, + ACTIONS(3359), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1943), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 3, + ACTIONS(3355), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3380), 14, + ACTIONS(3361), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -163551,17 +163042,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61020] = 5, + [60546] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3471), 1, + ACTIONS(3591), 1, anon_sym_COLON, - STATE(1944), 2, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(3469), 18, + ACTIONS(3589), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -163580,141 +163071,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61054] = 6, + [60580] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3366), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1945), 2, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_LT2, + STATE(1950), 1, + sym_type_arguments, + STATE(1970), 1, + sym_parameters, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(3362), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3368), 14, + ACTIONS(3347), 15, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [61090] = 8, + [60620] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, - anon_sym_LT2, - STATE(1958), 1, - sym_type_arguments, - STATE(1963), 1, - sym_parameters, - STATE(1946), 2, + ACTIONS(3599), 1, + anon_sym_COLON, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 15, + ACTIONS(3597), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_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, - [61130] = 5, + anon_sym_in, + [60654] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3613), 1, + ACTIONS(3335), 2, anon_sym_COLON, - STATE(1947), 2, + anon_sym_DOT_DOT, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(3611), 18, + ACTIONS(3331), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3337), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + 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_for, - anon_sym_where, anon_sym_else, anon_sym_in, - [61164] = 8, + [60690] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, - anon_sym_LT2, - STATE(1958), 1, - sym_type_arguments, - STATE(1963), 1, - sym_parameters, - STATE(1948), 2, + ACTIONS(3557), 1, + anon_sym_COLON, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(3343), 15, + ACTIONS(3555), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_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, - [61204] = 5, + anon_sym_in, + [60724] = 14, + ACTIONS(37), 1, + anon_sym_SQUOTE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 2, + ACTIONS(1275), 1, + anon_sym_DASH, + ACTIONS(1321), 1, + aux_sym_string_literal_token1, + ACTIONS(1331), 1, + sym__raw_string_literal_start, + ACTIONS(1601), 1, + anon_sym_LBRACE, + ACTIONS(4505), 1, + sym_identifier, + STATE(3588), 1, + sym_label, + ACTIONS(1323), 2, + anon_sym_true, + anon_sym_false, + STATE(1941), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1617), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + STATE(2989), 3, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + STATE(3162), 3, + sym_block, + sym__literal, + sym_negative_literal, + [60775] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3371), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1949), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(3360), 16, + ACTIONS(3373), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -163731,18 +163256,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61237] = 5, + [60808] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3366), 2, + ACTIONS(3343), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1950), 2, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 16, + ACTIONS(3345), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -163759,45 +163284,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61270] = 4, + [60841] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1951), 2, + ACTIONS(3359), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 18, + ACTIONS(3361), 16, 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_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, - anon_sym_LT2, - [61301] = 5, + anon_sym_in, + [60874] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 2, + ACTIONS(3335), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1952), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(3380), 16, + ACTIONS(3337), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -163814,106 +163340,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61334] = 5, + [60907] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3335), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1953), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(3337), 16, + ACTIONS(3331), 18, 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_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_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, - [61367] = 12, + anon_sym_LT2, + [60938] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(4531), 1, + ACTIONS(4509), 1, anon_sym_COLON, - ACTIONS(4533), 1, + ACTIONS(4511), 1, anon_sym_BANG, - ACTIONS(4535), 1, + ACTIONS(4513), 1, anon_sym_DOT_DOT, - ACTIONS(4539), 1, + ACTIONS(4517), 1, anon_sym_COLON_COLON, - STATE(1955), 1, + STATE(1951), 1, sym_type_arguments, - ACTIONS(4537), 2, + ACTIONS(4515), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1954), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4529), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(3467), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [61413] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3655), 1, - anon_sym_COLON, - STATE(1955), 2, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(3653), 16, + ACTIONS(4507), 9, 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_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [61445] = 5, + anon_sym_in, + [60982] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, + ACTIONS(3503), 1, anon_sym_COLON, - STATE(1956), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(3665), 16, + ACTIONS(3501), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163930,58 +163427,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [61477] = 19, + [61014] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4543), 1, + ACTIONS(4521), 1, anon_sym_const, - ACTIONS(4545), 1, + ACTIONS(4523), 1, anon_sym_enum, - ACTIONS(4547), 1, + ACTIONS(4525), 1, anon_sym_fn, - ACTIONS(4549), 1, + ACTIONS(4527), 1, anon_sym_mod, - ACTIONS(4551), 1, + ACTIONS(4529), 1, anon_sym_static, - ACTIONS(4553), 1, + ACTIONS(4531), 1, anon_sym_struct, - ACTIONS(4555), 1, + ACTIONS(4533), 1, anon_sym_trait, - ACTIONS(4557), 1, + ACTIONS(4535), 1, anon_sym_type, - ACTIONS(4559), 1, + ACTIONS(4537), 1, anon_sym_union, - ACTIONS(4561), 1, + ACTIONS(4539), 1, anon_sym_unsafe, - ACTIONS(4563), 1, + ACTIONS(4541), 1, anon_sym_use, - ACTIONS(4565), 1, + ACTIONS(4543), 1, anon_sym_extern, - STATE(2198), 1, + STATE(2168), 1, sym_extern_modifier, - STATE(2250), 1, + STATE(2204), 1, aux_sym_function_modifiers_repeat1, - STATE(3647), 1, + STATE(3371), 1, sym_function_modifiers, - ACTIONS(4541), 2, + ACTIONS(4519), 2, anon_sym_async, anon_sym_default, - STATE(1957), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - [61537] = 5, + [61074] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3671), 1, + ACTIONS(3507), 1, anon_sym_COLON, - STATE(1958), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(3669), 16, + ACTIONS(3505), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163998,143 +163495,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [61569] = 19, + [61106] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4567), 1, + ACTIONS(3491), 1, + anon_sym_COLON, + STATE(1951), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3489), 16, + 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_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [61138] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4545), 1, anon_sym_const, - ACTIONS(4569), 1, + ACTIONS(4547), 1, anon_sym_enum, - ACTIONS(4571), 1, + ACTIONS(4549), 1, anon_sym_fn, - ACTIONS(4573), 1, + ACTIONS(4551), 1, anon_sym_mod, - ACTIONS(4575), 1, + ACTIONS(4553), 1, anon_sym_static, - ACTIONS(4577), 1, + ACTIONS(4555), 1, anon_sym_struct, - ACTIONS(4579), 1, + ACTIONS(4557), 1, anon_sym_trait, - ACTIONS(4581), 1, + ACTIONS(4559), 1, anon_sym_type, - ACTIONS(4583), 1, + ACTIONS(4561), 1, anon_sym_union, - ACTIONS(4585), 1, + ACTIONS(4563), 1, anon_sym_unsafe, - ACTIONS(4587), 1, + ACTIONS(4565), 1, anon_sym_use, - ACTIONS(4589), 1, + ACTIONS(4567), 1, anon_sym_extern, - STATE(2166), 1, + STATE(2138), 1, sym_extern_modifier, - STATE(2250), 1, + STATE(2204), 1, aux_sym_function_modifiers_repeat1, - STATE(3499), 1, + STATE(3606), 1, sym_function_modifiers, - ACTIONS(4541), 2, + ACTIONS(4519), 2, anon_sym_async, anon_sym_default, - STATE(1959), 2, + STATE(1952), 2, + sym_line_comment, + sym_block_comment, + [61198] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4509), 1, + anon_sym_COLON, + ACTIONS(4511), 1, + anon_sym_BANG, + ACTIONS(4513), 1, + anon_sym_DOT_DOT, + ACTIONS(4569), 1, + anon_sym_COLON_COLON, + STATE(1951), 1, + sym_type_arguments, + ACTIONS(4515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1953), 2, sym_line_comment, sym_block_comment, - [61629] = 11, + ACTIONS(4507), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3384), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [61244] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(3289), 1, + anon_sym_PLUS, + ACTIONS(4481), 1, + anon_sym_BANG, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(4531), 1, + ACTIONS(4489), 1, + anon_sym_PIPE, + ACTIONS(4493), 1, + anon_sym_LBRACE, + ACTIONS(4495), 1, anon_sym_COLON, - ACTIONS(4533), 1, - anon_sym_BANG, - ACTIONS(4535), 1, + ACTIONS(4497), 1, + anon_sym_AT, + ACTIONS(4499), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4571), 1, + anon_sym_LPAREN, + ACTIONS(4576), 1, anon_sym_COLON_COLON, - STATE(1955), 1, + STATE(1948), 1, sym_type_arguments, - ACTIONS(4537), 2, + STATE(1967), 1, + sym_parameters, + ACTIONS(4501), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1960), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4529), 9, - anon_sym_SEMI, + ACTIONS(4573), 2, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [61673] = 4, + STATE(1954), 2, + sym_line_comment, + sym_block_comment, + [61299] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1961), 2, + ACTIONS(3329), 1, + anon_sym_COLON, + ACTIONS(4578), 1, + anon_sym_COLON_COLON, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(3503), 16, + ACTIONS(3327), 14, 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, - [61702] = 6, + [61332] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 1, - anon_sym_COLON, - ACTIONS(4593), 1, - anon_sym_COLON_COLON, - STATE(1962), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 14, + ACTIONS(3593), 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, - [61735] = 5, + [61361] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_DASH_GT, - STATE(1963), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 15, + ACTIONS(1431), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164150,21 +163711,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61766] = 4, + anon_sym_in, + [61390] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1964), 2, + ACTIONS(3329), 1, + anon_sym_COLON, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(1433), 16, + ACTIONS(3327), 14, 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, @@ -164174,16 +163739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [61795] = 4, + [61423] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1965), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(1475), 16, + ACTIONS(1051), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164200,52 +163764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61824] = 16, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4517), 1, - anon_sym_LBRACE, - ACTIONS(4521), 1, - anon_sym_AT, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_RBRACK, - ACTIONS(4602), 1, - anon_sym_COLON_COLON, - STATE(1956), 1, - sym_type_arguments, - STATE(1978), 1, - sym_parameters, - ACTIONS(3289), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4513), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1966), 2, - sym_line_comment, - sym_block_comment, - [61877] = 4, + [61452] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1967), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 16, + ACTIONS(1483), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164262,15 +163789,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61906] = 4, + [61481] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1968), 2, + ACTIONS(4582), 1, + anon_sym_DASH_GT, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(3589), 16, + ACTIONS(3565), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164282,26 +163811,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [61935] = 4, + [61512] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1969), 2, + ACTIONS(3365), 1, + anon_sym_COLON, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(1051), 16, + ACTIONS(3363), 14, 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, @@ -164311,16 +163842,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [61964] = 4, + [61545] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1970), 2, + ACTIONS(4584), 1, + anon_sym_DASH_GT, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(3473), 16, + ACTIONS(3509), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164332,24 +163864,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [61993] = 6, + [61576] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3341), 1, + ACTIONS(3353), 1, anon_sym_COLON, - ACTIONS(4604), 1, + ACTIONS(4580), 1, anon_sym_COLON_COLON, - STATE(1971), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(3339), 14, + ACTIONS(3351), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164364,19 +163895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62026] = 6, + [61609] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 1, + ACTIONS(3349), 1, anon_sym_COLON, - ACTIONS(4604), 1, + ACTIONS(4580), 1, anon_sym_COLON_COLON, - STATE(1972), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(3343), 14, + ACTIONS(3347), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164391,54 +163922,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62059] = 16, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4513), 1, - anon_sym_PIPE, - ACTIONS(4517), 1, - anon_sym_LBRACE, - ACTIONS(4519), 1, - anon_sym_COLON, - ACTIONS(4521), 1, - anon_sym_AT, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(4606), 1, - anon_sym_LPAREN, - ACTIONS(4608), 1, - anon_sym_COLON_COLON, - STATE(1956), 1, - sym_type_arguments, - STATE(1978), 1, - sym_parameters, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1973), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3289), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [62112] = 5, + [61642] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4610), 1, + ACTIONS(4586), 1, anon_sym_DASH_GT, - STATE(1974), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(3537), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164454,17 +163948,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62143] = 5, + [61673] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, + ACTIONS(4588), 1, anon_sym_DASH_GT, - STATE(1975), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(3593), 15, + ACTIONS(3515), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164480,43 +163974,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62174] = 5, + [61704] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4614), 1, - anon_sym_DASH_GT, - STATE(1976), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3521), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(4481), 1, + anon_sym_BANG, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4493), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(4497), 1, + anon_sym_AT, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(4573), 1, + anon_sym_RBRACK, + ACTIONS(4590), 1, + anon_sym_LPAREN, + ACTIONS(4592), 1, + anon_sym_COLON_COLON, + STATE(1948), 1, + sym_type_arguments, + STATE(1967), 1, + sym_parameters, + ACTIONS(3289), 2, + anon_sym_SEMI, anon_sym_PLUS, + ACTIONS(4489), 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, - [62205] = 5, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1968), 2, + sym_line_comment, + sym_block_comment, + [61757] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4616), 1, - anon_sym_DASH_GT, - STATE(1977), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(3527), 15, + ACTIONS(3533), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164528,21 +164031,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [62236] = 5, + [61786] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4618), 1, + ACTIONS(4594), 1, anon_sym_DASH_GT, - STATE(1978), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(3497), 15, + ACTIONS(3521), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164558,44 +164062,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62267] = 6, + [61817] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3329), 1, + ACTIONS(4481), 1, + anon_sym_BANG, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4489), 1, + anon_sym_PIPE, + ACTIONS(4493), 1, + anon_sym_LBRACE, + ACTIONS(4495), 1, anon_sym_COLON, - ACTIONS(4604), 1, + ACTIONS(4497), 1, + anon_sym_AT, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(4596), 1, + anon_sym_LPAREN, + ACTIONS(4598), 1, anon_sym_COLON_COLON, - STATE(1979), 2, + STATE(1948), 1, + sym_type_arguments, + STATE(1967), 1, + sym_parameters, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 14, + ACTIONS(3289), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [61870] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1972), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3575), 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, - [62300] = 5, + [61899] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4620), 1, + ACTIONS(4600), 1, anon_sym_LPAREN, - STATE(1980), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4033), 15, + ACTIONS(4031), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -164611,55 +164150,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [62331] = 10, + [61930] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_COLON, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(4622), 1, - anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1981), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4513), 9, + ACTIONS(3601), 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, - anon_sym_in, - [62372] = 6, + [61959] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 1, - anon_sym_COLON, - ACTIONS(4624), 1, - anon_sym_COLON_COLON, - STATE(1982), 2, + ACTIONS(4602), 1, + anon_sym_DASH_GT, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 14, + ACTIONS(3543), 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, @@ -164669,19 +164201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62405] = 6, + [61990] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 1, + ACTIONS(3329), 1, anon_sym_COLON, ACTIONS(4604), 1, anon_sym_COLON_COLON, - STATE(1983), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 14, + ACTIONS(3327), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164696,87 +164228,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62438] = 17, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3289), 1, - anon_sym_PLUS, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4513), 1, - anon_sym_PIPE, - ACTIONS(4517), 1, - anon_sym_LBRACE, - ACTIONS(4519), 1, - anon_sym_COLON, - ACTIONS(4521), 1, - anon_sym_AT, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(4626), 1, - anon_sym_LPAREN, - ACTIONS(4628), 1, - anon_sym_COLON_COLON, - STATE(1956), 1, - sym_type_arguments, - STATE(1978), 1, - sym_parameters, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4599), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(1984), 2, - sym_line_comment, - sym_block_comment, - [62493] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4533), 1, - anon_sym_BANG, - ACTIONS(4535), 1, - anon_sym_DOT_DOT, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, - STATE(1955), 1, - sym_type_arguments, - ACTIONS(4537), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1985), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4529), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(3467), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [62536] = 5, + [62023] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, - anon_sym_DASH_GT, - STATE(1986), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 15, + ACTIONS(1047), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164792,15 +164252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62567] = 4, + anon_sym_in, + [62052] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1987), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(3615), 16, + ACTIONS(3561), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164817,65 +164278,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62596] = 4, + [62081] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1988), 2, + ACTIONS(4481), 1, + anon_sym_BANG, + ACTIONS(4491), 1, + anon_sym_LPAREN, + ACTIONS(4495), 1, + anon_sym_COLON, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(4606), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3481), 16, + ACTIONS(4489), 9, 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, - [62625] = 5, + anon_sym_in, + [62122] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4511), 1, + anon_sym_BANG, + ACTIONS(4513), 1, + anon_sym_DOT_DOT, + ACTIONS(4608), 1, anon_sym_COLON_COLON, - STATE(1989), 2, + STATE(1951), 1, + sym_type_arguments, + ACTIONS(4515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(4038), 14, + ACTIONS(4507), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3384), 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, - [62655] = 4, + [62165] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1990), 2, + ACTIONS(4610), 1, + anon_sym_DASH_GT, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(3853), 15, + ACTIONS(3549), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164891,15 +164367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62683] = 4, + [62196] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1991), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3709), 15, + ACTIONS(3663), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164915,15 +164391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62711] = 4, + [62224] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1992), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(3857), 15, + ACTIONS(3675), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164939,15 +164415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62739] = 4, + [62252] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1993), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(3861), 15, + ACTIONS(3699), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164963,15 +164439,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62767] = 4, + [62280] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1994), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(3869), 15, + ACTIONS(3805), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164987,15 +164463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62795] = 4, + [62308] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1995), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 15, + ACTIONS(3679), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165011,47 +164487,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62823] = 12, + [62336] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4529), 1, - anon_sym_PIPE, - ACTIONS(4531), 1, - anon_sym_COLON, - ACTIONS(4533), 1, - anon_sym_BANG, - ACTIONS(4535), 1, - anon_sym_DOT_DOT, - ACTIONS(4636), 1, - anon_sym_COLON_COLON, - STATE(1955), 1, - sym_type_arguments, - ACTIONS(4537), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1996), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, + ACTIONS(4025), 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, - [62867] = 4, + sym_identifier, + [62364] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1997), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3689), 15, + ACTIONS(3695), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165067,40 +164535,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62895] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3961), 1, - anon_sym_COLON_COLON, - STATE(1998), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4038), 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, - [62925] = 4, + [62392] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1999), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3677), 15, + ACTIONS(3753), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165116,15 +164559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62953] = 4, + [62420] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2000), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(3701), 15, + ACTIONS(3711), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165140,15 +164583,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62981] = 4, + [62448] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2001), 2, + ACTIONS(3937), 1, + anon_sym_COLON_COLON, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3685), 15, + ACTIONS(4033), 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, + [62478] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1992), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3731), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165164,15 +164632,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63009] = 4, + [62506] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2002), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(3701), 15, + ACTIONS(3687), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165188,15 +164656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63037] = 4, + [62534] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2003), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(3731), 15, + ACTIONS(3735), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165212,15 +164680,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63065] = 4, + [62562] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2004), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3697), 15, + ACTIONS(3351), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165236,15 +164704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63093] = 4, + [62590] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2005), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 15, + ACTIONS(3753), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165260,15 +164728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63121] = 4, + [62618] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2006), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(3343), 15, + ACTIONS(3739), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165284,15 +164752,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63149] = 4, + [62646] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2007), 2, + STATE(1998), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4021), 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, + [62674] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(3339), 15, + ACTIONS(3749), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165308,39 +164800,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63177] = 4, + [62702] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2008), 2, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4507), 1, + anon_sym_PIPE, + ACTIONS(4509), 1, + anon_sym_COLON, + ACTIONS(4511), 1, + anon_sym_BANG, + ACTIONS(4513), 1, + anon_sym_DOT_DOT, + ACTIONS(4612), 1, + anon_sym_COLON_COLON, + STATE(1951), 1, + sym_type_arguments, + ACTIONS(4515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(4042), 15, + ACTIONS(3384), 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, - [63205] = 4, + [62746] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2009), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(4049), 15, + ACTIONS(4017), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -165356,15 +164856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [63233] = 4, + [62774] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2010), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 15, + ACTIONS(3719), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165380,39 +164880,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63261] = 4, + [62802] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2011), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(4057), 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, - [63289] = 4, + ACTIONS(3703), 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, + [62830] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2012), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3945), 15, + ACTIONS(3363), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165428,15 +164928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63317] = 4, + [62858] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2013), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3797), 15, + ACTIONS(3707), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165452,15 +164952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63345] = 4, + [62886] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2014), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(3933), 15, + ACTIONS(3723), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165476,15 +164976,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63373] = 4, + [62914] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2015), 2, + ACTIONS(4614), 1, + anon_sym_COLON_COLON, + STATE(2007), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4033), 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, + [62944] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3937), 15, + ACTIONS(3691), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165500,15 +165025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63401] = 4, + [62972] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2016), 2, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(3849), 15, + ACTIONS(3727), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165524,15 +165049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63429] = 4, + [63000] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2017), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3693), 15, + ACTIONS(3327), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165548,15 +165073,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63457] = 4, + [63028] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2018), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3681), 15, + ACTIONS(3683), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165572,15 +165097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63485] = 4, + [63056] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2019), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3941), 15, + ACTIONS(3757), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165596,15 +165121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63513] = 4, + [63084] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2020), 2, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3705), 15, + ACTIONS(3347), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165620,17 +165145,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [63541] = 5, + [63112] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1005), 1, + ACTIONS(4618), 1, anon_sym_DOT_DOT, - STATE(2021), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(1007), 13, + ACTIONS(4616), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165644,19 +165169,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [63570] = 6, + [63141] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4640), 1, + ACTIONS(4622), 1, anon_sym_pat, - STATE(165), 1, + STATE(175), 1, sym_fragment_specifier, - STATE(2022), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(4638), 12, + ACTIONS(4620), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -165669,17 +165194,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [63601] = 5, + [63172] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(991), 1, + ACTIONS(975), 1, anon_sym_DOT_DOT, - STATE(2023), 2, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(993), 13, + ACTIONS(977), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165693,24 +165218,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [63630] = 8, + [63201] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4531), 1, + ACTIONS(4509), 1, anon_sym_COLON, - ACTIONS(4535), 1, + ACTIONS(4513), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4517), 1, anon_sym_COLON_COLON, - ACTIONS(4537), 2, + ACTIONS(4515), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2024), 2, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(4529), 9, + ACTIONS(4507), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165720,77 +165245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [63665] = 16, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4507), 1, - anon_sym_COLON_COLON, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4642), 1, - anon_sym_COLON, - ACTIONS(4644), 1, - anon_sym_EQ, - ACTIONS(4646), 1, - anon_sym_GT, - ACTIONS(4648), 1, - anon_sym_COMMA, - STATE(1956), 1, - sym_type_arguments, - STATE(1978), 1, - sym_parameters, - STATE(2794), 1, - sym_trait_bounds, - STATE(2801), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3289), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(2025), 2, - sym_line_comment, - sym_block_comment, - [63716] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3335), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2026), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3331), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4650), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3337), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [63748] = 5, + [63236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4655), 1, + ACTIONS(1013), 1, anon_sym_DOT_DOT, - STATE(2027), 2, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(4653), 12, + ACTIONS(1015), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165798,22 +165263,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [63776] = 7, + [63265] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3335), 1, anon_sym_DOT_DOT, - ACTIONS(4650), 2, + ACTIONS(4624), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2028), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, ACTIONS(3331), 4, @@ -165828,513 +165294,392 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [63808] = 7, + [63297] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3366), 2, + ACTIONS(3371), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2029), 2, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3362), 3, + ACTIONS(3367), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4657), 3, + ACTIONS(4627), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3368), 5, + ACTIONS(3373), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63840] = 6, + [63329] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, + ACTIONS(4627), 1, + anon_sym_LPAREN, + ACTIONS(3371), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2030), 2, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(4513), 10, - anon_sym_SEMI, + ACTIONS(3367), 5, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [63870] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4509), 1, anon_sym_LT2, - ACTIONS(4660), 1, - anon_sym_LPAREN, - ACTIONS(4662), 1, - anon_sym_LBRACE, - ACTIONS(4664), 1, + ACTIONS(3373), 5, anon_sym_BANG, - ACTIONS(4666), 1, - anon_sym_AT, - ACTIONS(4668), 1, - anon_sym_DOT_DOT, - ACTIONS(4672), 1, - anon_sym_COLON_COLON, - STATE(1956), 1, - sym_type_arguments, - ACTIONS(4670), 2, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2031), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4513), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [63914] = 7, + anon_sym_COLON_COLON, + [63361] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 2, - anon_sym_COLON, + ACTIONS(3343), 1, anon_sym_DOT_DOT, - STATE(2032), 2, + ACTIONS(4630), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 3, + ACTIONS(3339), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4674), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3360), 5, + ACTIONS(3345), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [63946] = 7, + [63393] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, + ACTIONS(4630), 1, anon_sym_LPAREN, - ACTIONS(3358), 2, + ACTIONS(3343), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2033), 2, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 5, + ACTIONS(3339), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3360), 5, + ACTIONS(3345), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63978] = 7, + [63425] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2034), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3374), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4677), 3, + ACTIONS(4479), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3380), 5, + ACTIONS(4481), 1, anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4483), 1, anon_sym_COLON_COLON, - [64010] = 7, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4633), 1, + anon_sym_COLON, + ACTIONS(4635), 1, + anon_sym_EQ, + STATE(1948), 1, + sym_type_arguments, + STATE(1967), 1, + sym_parameters, + STATE(2934), 1, + sym_trait_bounds, + ACTIONS(3289), 2, + anon_sym_PLUS, + anon_sym_as, + ACTIONS(4637), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2024), 2, + sym_line_comment, + sym_block_comment, + [63471] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3366), 1, + ACTIONS(3359), 1, anon_sym_DOT_DOT, - ACTIONS(4657), 2, + ACTIONS(4639), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2035), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3362), 4, + ACTIONS(3355), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3368), 6, + ACTIONS(3361), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [64042] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4682), 1, - anon_sym_DOT_DOT, - STATE(2036), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4680), 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, - [64070] = 7, + [63503] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4677), 1, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4642), 1, anon_sym_LPAREN, - ACTIONS(3378), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2037), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3374), 5, - anon_sym_RPAREN, + ACTIONS(4644), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3380), 5, + ACTIONS(4646), 1, anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [64102] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, + ACTIONS(4648), 1, + anon_sym_AT, ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(3335), 2, - anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2038), 2, + ACTIONS(4654), 1, + anon_sym_COLON_COLON, + STATE(1948), 1, + sym_type_arguments, + ACTIONS(4652), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3331), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3337), 5, - anon_sym_BANG, + ACTIONS(4489), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [64134] = 7, + anon_sym_if, + [63547] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 1, + ACTIONS(3371), 1, anon_sym_DOT_DOT, - ACTIONS(4674), 2, + ACTIONS(4627), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2039), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 4, + ACTIONS(3367), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3360), 6, + ACTIONS(3373), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [64166] = 7, + [63579] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 1, - anon_sym_DOT_DOT, - ACTIONS(4677), 2, + ACTIONS(4639), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2040), 2, + ACTIONS(3359), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 4, - anon_sym_SEMI, + ACTIONS(3355), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3380), 6, + ACTIONS(3361), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [64198] = 7, + [63611] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4657), 1, - anon_sym_LPAREN, - ACTIONS(3366), 2, + ACTIONS(3343), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2041), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3362), 5, - anon_sym_RPAREN, + ACTIONS(3339), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3368), 5, + ACTIONS(4630), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3345), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [64230] = 6, + [63643] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4686), 1, - anon_sym_COLON, - ACTIONS(3881), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(2042), 2, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(4684), 9, + ACTIONS(4489), 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, - [64259] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(3017), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - sym_identifier, - ACTIONS(4690), 1, - anon_sym_GT, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4694), 1, - sym_metavariable, - STATE(1448), 1, - sym_attribute_item, - STATE(2073), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, - sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2043), 2, - sym_line_comment, - sym_block_comment, - STATE(3287), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64304] = 14, + [63673] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(3017), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - sym_identifier, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4694), 1, - sym_metavariable, - ACTIONS(4696), 1, - anon_sym_GT, - STATE(1448), 1, - sym_attribute_item, - STATE(2073), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, - sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2044), 2, + ACTIONS(4658), 1, + anon_sym_DOT_DOT, + STATE(2031), 2, sym_line_comment, sym_block_comment, - STATE(3287), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64349] = 14, + ACTIONS(4656), 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, + [63701] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(3017), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - sym_identifier, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4694), 1, - sym_metavariable, - ACTIONS(4698), 1, - anon_sym_GT, - STATE(1448), 1, - sym_attribute_item, - STATE(2073), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, - sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2045), 2, + ACTIONS(4624), 1, + anon_sym_LPAREN, + ACTIONS(3335), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2032), 2, sym_line_comment, sym_block_comment, - STATE(3287), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64394] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(3017), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - sym_identifier, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4694), 1, - sym_metavariable, - ACTIONS(4700), 1, - anon_sym_GT, - STATE(1448), 1, - sym_attribute_item, - STATE(2073), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, - sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2046), 2, + ACTIONS(3331), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3337), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [63733] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3359), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2033), 2, sym_line_comment, sym_block_comment, - STATE(3287), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64439] = 14, + ACTIONS(3355), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4639), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3361), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [63765] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(3017), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - sym_identifier, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4694), 1, - sym_metavariable, - ACTIONS(4702), 1, - anon_sym_GT, - STATE(1448), 1, - sym_attribute_item, - STATE(2073), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, - sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2047), 2, + ACTIONS(3335), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2034), 2, sym_line_comment, sym_block_comment, - STATE(3287), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64484] = 14, + ACTIONS(3331), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4624), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3337), 5, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [63797] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -166343,73 +165688,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4660), 1, sym_identifier, - ACTIONS(4692), 1, + ACTIONS(4662), 1, + anon_sym_GT, + ACTIONS(4664), 1, anon_sym_const, - ACTIONS(4694), 1, + ACTIONS(4666), 1, sym_metavariable, - ACTIONS(4704), 1, - anon_sym_GT, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2073), 1, + STATE(2057), 1, aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, + STATE(2715), 1, sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2048), 2, + STATE(2035), 2, sym_line_comment, sym_block_comment, - STATE(3287), 2, + STATE(3225), 3, sym_const_parameter, - sym_optional_type_parameter, - [64529] = 14, + sym_type_parameter, + sym_lifetime_parameter, + [63840] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(3017), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - sym_identifier, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4694), 1, - sym_metavariable, - ACTIONS(4706), 1, - anon_sym_GT, - STATE(1448), 1, - sym_attribute_item, - STATE(2073), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, - sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2049), 2, + ACTIONS(4670), 1, + anon_sym_COLON, + ACTIONS(3787), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(2036), 2, sym_line_comment, sym_block_comment, - STATE(3287), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64574] = 6, + ACTIONS(4668), 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, + [63869] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4686), 1, + ACTIONS(4670), 1, anon_sym_COLON, - ACTIONS(3915), 2, + ACTIONS(3745), 2, anon_sym_LPAREN, anon_sym_COLON_COLON, - STATE(2050), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(4684), 9, + ACTIONS(4668), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166419,7 +165755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64603] = 10, + [63898] = 10, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, @@ -166428,56 +165764,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4579), 1, + ACTIONS(4533), 1, anon_sym_trait, - ACTIONS(4708), 1, + ACTIONS(4672), 1, anon_sym_impl, - STATE(412), 1, + STATE(383), 1, sym_block, - STATE(3600), 1, + STATE(3522), 1, sym_label, - STATE(2051), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, + ACTIONS(3384), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [64640] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(3017), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - sym_identifier, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4694), 1, - sym_metavariable, - ACTIONS(4710), 1, - anon_sym_GT, - STATE(1448), 1, - sym_attribute_item, - STATE(2073), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, - sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2052), 2, - sym_line_comment, - sym_block_comment, - STATE(3287), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64685] = 14, + [63935] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -166486,29 +165791,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4660), 1, sym_identifier, - ACTIONS(4692), 1, + ACTIONS(4664), 1, anon_sym_const, - ACTIONS(4694), 1, + ACTIONS(4666), 1, sym_metavariable, - ACTIONS(4712), 1, + ACTIONS(4674), 1, anon_sym_GT, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2073), 1, + STATE(2057), 1, aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, + STATE(2715), 1, sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2053), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - STATE(3287), 2, + STATE(3225), 3, sym_const_parameter, - sym_optional_type_parameter, - [64730] = 14, + sym_type_parameter, + sym_lifetime_parameter, + [63978] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -166517,29 +165821,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4660), 1, sym_identifier, - ACTIONS(4692), 1, + ACTIONS(4664), 1, anon_sym_const, - ACTIONS(4694), 1, + ACTIONS(4666), 1, sym_metavariable, - ACTIONS(4714), 1, + ACTIONS(4676), 1, anon_sym_GT, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2073), 1, + STATE(2057), 1, aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, + STATE(2715), 1, sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2054), 2, + STATE(2040), 2, sym_line_comment, sym_block_comment, - STATE(3287), 2, + STATE(3225), 3, sym_const_parameter, - sym_optional_type_parameter, - [64775] = 14, + sym_type_parameter, + sym_lifetime_parameter, + [64021] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -166548,29 +165851,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4660), 1, sym_identifier, - ACTIONS(4692), 1, + ACTIONS(4664), 1, anon_sym_const, - ACTIONS(4694), 1, + ACTIONS(4666), 1, sym_metavariable, - ACTIONS(4716), 1, + ACTIONS(4678), 1, anon_sym_GT, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2073), 1, + STATE(2057), 1, aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, + STATE(2715), 1, sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2055), 2, + STATE(2041), 2, sym_line_comment, sym_block_comment, - STATE(3287), 2, + STATE(3225), 3, sym_const_parameter, - sym_optional_type_parameter, - [64820] = 14, + sym_type_parameter, + sym_lifetime_parameter, + [64064] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -166579,29 +165881,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4660), 1, sym_identifier, - ACTIONS(4692), 1, + ACTIONS(4664), 1, anon_sym_const, - ACTIONS(4694), 1, + ACTIONS(4666), 1, sym_metavariable, - ACTIONS(4718), 1, + ACTIONS(4680), 1, anon_sym_GT, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2073), 1, + STATE(2057), 1, aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, + STATE(2715), 1, sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2056), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - STATE(3287), 2, + STATE(3225), 3, sym_const_parameter, - sym_optional_type_parameter, - [64865] = 14, + sym_type_parameter, + sym_lifetime_parameter, + [64107] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -166610,110 +165911,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4688), 1, + ACTIONS(4660), 1, sym_identifier, - ACTIONS(4692), 1, + ACTIONS(4664), 1, anon_sym_const, - ACTIONS(4694), 1, + ACTIONS(4666), 1, sym_metavariable, - ACTIONS(4720), 1, + ACTIONS(4682), 1, anon_sym_GT, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2073), 1, + STATE(2057), 1, aux_sym_enum_variant_list_repeat1, - STATE(2702), 1, + STATE(2715), 1, sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2057), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - STATE(3287), 2, + STATE(3225), 3, sym_const_parameter, - sym_optional_type_parameter, - [64910] = 14, + sym_type_parameter, + sym_lifetime_parameter, + [64150] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(3017), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - sym_identifier, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4694), 1, - sym_metavariable, - ACTIONS(4722), 1, - anon_sym_GT, - STATE(1448), 1, - sym_attribute_item, - STATE(2073), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, - sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2058), 2, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4481), 1, + anon_sym_BANG, + ACTIONS(4483), 1, + anon_sym_COLON_COLON, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4684), 1, + anon_sym_for, + STATE(1948), 1, + sym_type_arguments, + STATE(1967), 1, + sym_parameters, + STATE(2044), 2, sym_line_comment, sym_block_comment, - STATE(3287), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64955] = 14, + ACTIONS(3289), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [64188] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(3017), 1, - anon_sym_SQUOTE, + ACTIONS(4614), 1, + anon_sym_COLON_COLON, ACTIONS(4688), 1, - sym_identifier, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4694), 1, - sym_metavariable, - ACTIONS(4724), 1, - anon_sym_GT, - STATE(1448), 1, - sym_attribute_item, - STATE(2073), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, - sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2059), 2, + anon_sym_COLON, + STATE(2045), 2, sym_line_comment, sym_block_comment, - STATE(3287), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65000] = 11, + ACTIONS(4686), 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, + [64216] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - ACTIONS(4505), 1, + ACTIONS(4481), 1, anon_sym_BANG, - ACTIONS(4507), 1, + ACTIONS(4483), 1, anon_sym_COLON_COLON, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(4726), 1, + ACTIONS(4690), 1, anon_sym_for, - STATE(1956), 1, + STATE(1948), 1, sym_type_arguments, - STATE(1978), 1, + STATE(1967), 1, sym_parameters, - STATE(2060), 2, + STATE(2046), 2, sym_line_comment, sym_block_comment, ACTIONS(3289), 4, @@ -166721,63 +166008,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65038] = 12, + [64254] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4728), 1, + ACTIONS(4692), 1, sym_identifier, - ACTIONS(4730), 1, + ACTIONS(4694), 1, anon_sym_RBRACE, - ACTIONS(4732), 1, + ACTIONS(4696), 1, anon_sym_DOT_DOT, - ACTIONS(4734), 1, + ACTIONS(4698), 1, anon_sym_COMMA, - ACTIONS(4736), 1, + ACTIONS(4700), 1, sym_integer_literal, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2445), 1, + STATE(2422), 1, aux_sym_enum_variant_list_repeat1, - STATE(2061), 2, + STATE(2047), 2, sym_line_comment, sym_block_comment, - STATE(3067), 3, + STATE(2912), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [65078] = 12, + [64294] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3293), 1, + STATE(2048), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1367), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4507), 1, - anon_sym_COLON_COLON, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4738), 1, + anon_sym_PIPE, anon_sym_EQ, - STATE(1978), 1, - sym_parameters, - STATE(2402), 1, - sym_type_arguments, - STATE(2062), 2, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64318] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4688), 1, + anon_sym_COLON, + ACTIONS(4702), 1, + anon_sym_COLON_COLON, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 3, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(4686), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [65118] = 13, + anon_sym_else, + anon_sym_in, + [64346] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -166786,32 +166087,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4740), 1, + ACTIONS(4660), 1, sym_identifier, - ACTIONS(4742), 1, + ACTIONS(4664), 1, + anon_sym_const, + ACTIONS(4704), 1, sym_metavariable, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2076), 1, + STATE(2061), 1, aux_sym_enum_variant_list_repeat1, - STATE(2348), 1, + STATE(2715), 1, sym_lifetime, - STATE(2747), 1, - sym_constrained_type_parameter, - STATE(2063), 2, + STATE(2050), 2, sym_line_comment, sym_block_comment, - STATE(3005), 2, + STATE(2996), 3, sym_const_parameter, - sym_optional_type_parameter, - [65160] = 4, + sym_type_parameter, + sym_lifetime_parameter, + [64386] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2064), 2, + STATE(2051), 2, sym_line_comment, sym_block_comment, ACTIONS(1381), 11, @@ -166826,174 +166126,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65184] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(4744), 1, - anon_sym_move, - STATE(383), 1, - sym_block, - STATE(3600), 1, - sym_label, - STATE(2065), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3467), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65218] = 13, + [64410] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(3017), 1, - anon_sym_SQUOTE, - ACTIONS(4688), 1, - sym_identifier, ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4694), 1, - sym_metavariable, - STATE(1448), 1, + sym_identifier, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(4700), 1, + sym_integer_literal, + ACTIONS(4706), 1, + anon_sym_RBRACE, + ACTIONS(4708), 1, + anon_sym_COMMA, + STATE(1382), 1, sym_attribute_item, - STATE(2073), 1, + STATE(2422), 1, aux_sym_enum_variant_list_repeat1, - STATE(2652), 1, - sym_lifetime, - STATE(2859), 1, - sym_constrained_type_parameter, - STATE(2066), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - STATE(3287), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65260] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + STATE(2741), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [64450] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(4746), 1, - sym_identifier, - STATE(384), 1, - sym_block, - STATE(3600), 1, - sym_label, - STATE(2067), 2, + ACTIONS(1321), 1, + aux_sym_string_literal_token1, + ACTIONS(4712), 1, + sym_crate, + STATE(2198), 1, + sym_string_literal, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(4748), 6, + ACTIONS(4710), 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, - [65294] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4752), 1, - anon_sym_COLON, - ACTIONS(4754), 1, - anon_sym_COLON_COLON, - STATE(2068), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4750), 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, - [65322] = 6, + [64480] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4758), 1, - anon_sym_COLON, - ACTIONS(4760), 1, - anon_sym_COLON_COLON, - STATE(2069), 2, + ACTIONS(3371), 1, + anon_sym_DOT_DOT, + ACTIONS(3367), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3373), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65350] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4634), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(4758), 1, - anon_sym_COLON, - STATE(2070), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4756), 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, - [65378] = 6, + anon_sym_if, + [64508] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4758), 1, - anon_sym_COLON, - ACTIONS(4762), 1, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4481), 1, + anon_sym_BANG, + ACTIONS(4483), 1, anon_sym_COLON_COLON, - STATE(2071), 2, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4714), 1, + anon_sym_for, + STATE(1948), 1, + sym_type_arguments, + STATE(1967), 1, + sym_parameters, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 9, + ACTIONS(3289), 4, 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, - [65406] = 13, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [64546] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167002,27 +166235,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4740), 1, + ACTIONS(4660), 1, sym_identifier, - ACTIONS(4742), 1, + ACTIONS(4664), 1, + anon_sym_const, + ACTIONS(4704), 1, sym_metavariable, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2076), 1, + STATE(2061), 1, aux_sym_enum_variant_list_repeat1, - STATE(2438), 1, + STATE(2477), 1, sym_lifetime, - STATE(2747), 1, - sym_constrained_type_parameter, - STATE(2072), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - STATE(3005), 2, + STATE(2996), 3, sym_const_parameter, - sym_optional_type_parameter, - [65448] = 13, + sym_type_parameter, + sym_lifetime_parameter, + [64586] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167031,63 +166263,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4764), 1, + ACTIONS(4660), 1, sym_identifier, - ACTIONS(4766), 1, + ACTIONS(4664), 1, + anon_sym_const, + ACTIONS(4716), 1, sym_metavariable, STATE(1062), 1, aux_sym_enum_variant_list_repeat1, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2681), 1, + STATE(2715), 1, sym_lifetime, - STATE(3010), 1, - sym_constrained_type_parameter, - STATE(2073), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - STATE(3078), 2, + STATE(3059), 3, sym_const_parameter, - sym_optional_type_parameter, - [65490] = 12, + sym_type_parameter, + sym_lifetime_parameter, + [64626] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(4728), 1, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4718), 1, sym_identifier, - ACTIONS(4732), 1, - anon_sym_DOT_DOT, - ACTIONS(4736), 1, - sym_integer_literal, - ACTIONS(4768), 1, - anon_sym_RBRACE, - ACTIONS(4770), 1, - anon_sym_COMMA, - STATE(1448), 1, - sym_attribute_item, - STATE(2445), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2074), 2, + STATE(412), 1, + sym_block, + STATE(3522), 1, + sym_label, + STATE(2058), 2, sym_line_comment, sym_block_comment, - STATE(2795), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65530] = 4, + ACTIONS(4720), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64660] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2075), 2, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4481), 1, + anon_sym_BANG, + ACTIONS(4483), 1, + anon_sym_COLON_COLON, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4722), 1, + anon_sym_for, + STATE(1948), 1, + sym_type_arguments, + STATE(1967), 1, + sym_parameters, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(1385), 11, + ACTIONS(3289), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [64698] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2060), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1257), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167099,7 +166354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65554] = 13, + [64722] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167108,88 +166363,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4772), 1, + ACTIONS(4660), 1, sym_identifier, - ACTIONS(4774), 1, + ACTIONS(4664), 1, + anon_sym_const, + ACTIONS(4724), 1, sym_metavariable, STATE(1062), 1, aux_sym_enum_variant_list_repeat1, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2480), 1, + STATE(2715), 1, sym_lifetime, - STATE(2569), 1, - sym_constrained_type_parameter, - STATE(2076), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - STATE(2814), 2, + STATE(2967), 3, sym_const_parameter, - sym_optional_type_parameter, - [65596] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2077), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1355), 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, - [65620] = 11, + sym_type_parameter, + sym_lifetime_parameter, + [64762] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4507), 1, - anon_sym_COLON_COLON, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4776), 1, - anon_sym_for, - STATE(1956), 1, - sym_type_arguments, - STATE(1978), 1, - sym_parameters, - STATE(2078), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3289), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65658] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1317), 1, + ACTIONS(1321), 1, aux_sym_string_literal_token1, - ACTIONS(4780), 1, + ACTIONS(4726), 1, sym_crate, - STATE(2238), 1, + STATE(2198), 1, sym_string_literal, - STATE(2079), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(4778), 8, + ACTIONS(4710), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -167198,41 +166405,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65688] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3335), 1, - anon_sym_DOT_DOT, - ACTIONS(3331), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2080), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3337), 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, - [65716] = 6, + [64792] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4754), 1, - anon_sym_COLON_COLON, - ACTIONS(4784), 1, + ACTIONS(4730), 1, anon_sym_COLON, - STATE(2081), 2, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(4782), 9, + ACTIONS(4728), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167242,90 +166427,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65744] = 6, + [64820] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4760), 1, - anon_sym_COLON_COLON, - ACTIONS(4788), 1, - anon_sym_COLON, - STATE(2082), 2, + ACTIONS(3335), 1, + anon_sym_DOT_DOT, + ACTIONS(3331), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(4786), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3337), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65772] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [64848] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_COLON_COLON, - ACTIONS(4788), 1, - anon_sym_COLON, - STATE(2083), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(3017), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + sym_identifier, + ACTIONS(4664), 1, + anon_sym_const, + ACTIONS(4734), 1, + sym_metavariable, + STATE(1382), 1, + sym_attribute_item, + STATE(2066), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2715), 1, + sym_lifetime, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(4786), 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, - [65800] = 11, + STATE(3016), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [64888] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4507), 1, - anon_sym_COLON_COLON, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4790), 1, - anon_sym_for, - STATE(1956), 1, - sym_type_arguments, - STATE(1978), 1, - sym_parameters, - STATE(2084), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(3017), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + sym_identifier, + ACTIONS(4664), 1, + anon_sym_const, + ACTIONS(4736), 1, + sym_metavariable, + STATE(1062), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1382), 1, + sym_attribute_item, + STATE(2715), 1, + sym_lifetime, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65838] = 6, + STATE(2774), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [64928] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4762), 1, + ACTIONS(4732), 1, anon_sym_COLON_COLON, - ACTIONS(4788), 1, + ACTIONS(4740), 1, anon_sym_COLON, - STATE(2085), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(4786), 9, + ACTIONS(4738), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167335,7 +166527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65866] = 13, + [64956] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -167344,75 +166536,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(3017), 1, anon_sym_SQUOTE, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4792), 1, + ACTIONS(4660), 1, sym_identifier, - ACTIONS(4794), 1, + ACTIONS(4664), 1, + anon_sym_const, + ACTIONS(4666), 1, sym_metavariable, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2087), 1, + STATE(2057), 1, aux_sym_enum_variant_list_repeat1, - STATE(2518), 1, + STATE(2715), 1, sym_lifetime, - STATE(2663), 1, - sym_constrained_type_parameter, - STATE(2086), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - STATE(3044), 2, + STATE(3225), 3, sym_const_parameter, - sym_optional_type_parameter, - [65908] = 13, + sym_type_parameter, + sym_lifetime_parameter, + [64996] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(3017), 1, + ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4692), 1, - anon_sym_const, - ACTIONS(4796), 1, - sym_identifier, - ACTIONS(4798), 1, - sym_metavariable, - STATE(1062), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1448), 1, - sym_attribute_item, - STATE(2523), 1, - sym_lifetime, - STATE(2745), 1, - sym_constrained_type_parameter, - STATE(2087), 2, + ACTIONS(4742), 1, + anon_sym_move, + STATE(394), 1, + sym_block, + STATE(3522), 1, + sym_label, + STATE(2069), 2, sym_line_comment, sym_block_comment, - STATE(2840), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65950] = 11, + ACTIONS(3384), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65030] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - ACTIONS(4505), 1, + ACTIONS(4481), 1, anon_sym_BANG, - ACTIONS(4507), 1, + ACTIONS(4483), 1, anon_sym_COLON_COLON, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(4800), 1, + ACTIONS(4744), 1, anon_sym_for, - STATE(1956), 1, + STATE(1948), 1, sym_type_arguments, - STATE(1978), 1, + STATE(1967), 1, sym_parameters, - STATE(2088), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, ACTIONS(3289), 4, @@ -167420,145 +166607,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [65988] = 11, + [65068] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4507), 1, - anon_sym_COLON_COLON, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4802), 1, - anon_sym_for, - STATE(1956), 1, - sym_type_arguments, - STATE(1978), 1, - sym_parameters, - STATE(2089), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 4, + ACTIONS(1333), 11, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66026] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4531), 1, - anon_sym_COLON, - ACTIONS(4533), 1, - anon_sym_BANG, - ACTIONS(4535), 1, - anon_sym_DOT_DOT, - ACTIONS(4539), 1, - anon_sym_COLON_COLON, - STATE(1955), 1, - sym_type_arguments, - ACTIONS(4537), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2090), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4529), 3, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - [66064] = 4, + anon_sym_else, + anon_sym_in, + [65092] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2091), 2, + ACTIONS(4748), 1, + anon_sym_COLON, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(1363), 11, + ACTIONS(4746), 9, 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, - [66088] = 7, + [65120] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1317), 1, - aux_sym_string_literal_token1, - ACTIONS(4804), 1, - sym_crate, - STATE(2238), 1, - sym_string_literal, - STATE(2092), 2, + ACTIONS(3293), 1, + anon_sym_COLON, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4481), 1, + anon_sym_BANG, + ACTIONS(4483), 1, + anon_sym_COLON_COLON, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4752), 1, + anon_sym_EQ, + STATE(1967), 1, + sym_parameters, + STATE(2362), 1, + sym_type_arguments, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(4778), 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, - [66118] = 11, + ACTIONS(3289), 3, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [65160] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4507), 1, + ACTIONS(4614), 1, anon_sym_COLON_COLON, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4806), 1, - anon_sym_for, - STATE(1956), 1, - sym_type_arguments, - STATE(1978), 1, - sym_parameters, - STATE(2093), 2, + ACTIONS(4748), 1, + anon_sym_COLON, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 4, + ACTIONS(4746), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66156] = 7, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65188] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1317), 1, + ACTIONS(1321), 1, aux_sym_string_literal_token1, - ACTIONS(4808), 1, + ACTIONS(4754), 1, sym_crate, - STATE(2238), 1, + STATE(2198), 1, sym_string_literal, - STATE(2094), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(4778), 8, + ACTIONS(4710), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -167567,96 +166722,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66186] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4507), 1, - anon_sym_COLON_COLON, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4810), 1, - anon_sym_for, - STATE(1956), 1, - sym_type_arguments, - STATE(1978), 1, - sym_parameters, - STATE(2095), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3289), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66224] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4507), 1, - anon_sym_COLON_COLON, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4812), 1, - anon_sym_for, - STATE(1956), 1, - sym_type_arguments, - STATE(1978), 1, - sym_parameters, - STATE(2096), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3289), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66262] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3366), 1, - anon_sym_DOT_DOT, - ACTIONS(3362), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2097), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3368), 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, - [66290] = 6, + [65218] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 1, + ACTIONS(3359), 1, anon_sym_DOT_DOT, - ACTIONS(3354), 2, + ACTIONS(3355), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2098), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3360), 8, + ACTIONS(3361), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -167665,104 +166744,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [66318] = 4, + [65246] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2099), 2, + ACTIONS(1321), 1, + aux_sym_string_literal_token1, + ACTIONS(4756), 1, + sym_crate, + STATE(2198), 1, + sym_string_literal, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(1367), 11, + ACTIONS(4710), 8, 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, - [66342] = 6, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65276] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3378), 1, - anon_sym_DOT_DOT, - ACTIONS(3374), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2100), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3380), 8, + ACTIONS(4479), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4481), 1, anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4483), 1, anon_sym_COLON_COLON, - anon_sym_if, - [66370] = 7, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4758), 1, + anon_sym_for, + STATE(1948), 1, + sym_type_arguments, + STATE(1967), 1, + sym_parameters, + STATE(2078), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3289), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65314] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1317), 1, - aux_sym_string_literal_token1, - ACTIONS(4814), 1, - sym_crate, - STATE(2238), 1, - sym_string_literal, - STATE(2101), 2, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4481), 1, + anon_sym_BANG, + ACTIONS(4483), 1, + anon_sym_COLON_COLON, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4760), 1, + anon_sym_for, + STATE(1948), 1, + sym_type_arguments, + STATE(1967), 1, + sym_parameters, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(4778), 8, + ACTIONS(3289), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66400] = 9, + anon_sym_PLUS, + anon_sym_where, + [65352] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - ACTIONS(4509), 1, + ACTIONS(4481), 1, + anon_sym_BANG, + ACTIONS(4483), 1, + anon_sym_COLON_COLON, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(4816), 1, - anon_sym_LBRACE, - STATE(1958), 1, + ACTIONS(4762), 1, + anon_sym_for, + STATE(1948), 1, sym_type_arguments, - STATE(1963), 1, + STATE(1967), 1, sym_parameters, - STATE(2102), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 5, + ACTIONS(3289), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, - [66433] = 4, + anon_sym_where, + [65390] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2103), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(4818), 10, + ACTIONS(1385), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167770,56 +166864,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66456] = 4, + [65414] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2104), 2, + ACTIONS(4702), 1, + anon_sym_COLON_COLON, + ACTIONS(4748), 1, + anon_sym_COLON, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(4820), 10, + ACTIONS(4746), 9, 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, - [66479] = 4, + [65442] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2105), 2, + ACTIONS(4688), 1, + anon_sym_COLON, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(4822), 10, + ACTIONS(4686), 9, 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, - [66502] = 4, + [65470] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2106), 2, + ACTIONS(3343), 1, + anon_sym_DOT_DOT, + ACTIONS(3339), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(4824), 10, + ACTIONS(3345), 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, + [65498] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4509), 1, + anon_sym_COLON, + ACTIONS(4511), 1, + anon_sym_BANG, + ACTIONS(4513), 1, + anon_sym_DOT_DOT, + ACTIONS(4569), 1, + anon_sym_COLON_COLON, + STATE(1951), 1, + sym_type_arguments, + ACTIONS(4515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2085), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4507), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [65536] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2086), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4764), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167830,15 +166980,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66525] = 4, + [65559] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2107), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 10, + ACTIONS(4766), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167849,7 +166999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66548] = 13, + [65582] = 13, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, @@ -167858,49 +167008,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4826), 1, + ACTIONS(4768), 1, sym_identifier, - ACTIONS(4828), 1, + ACTIONS(4770), 1, anon_sym_RBRACE, - ACTIONS(4830), 1, + ACTIONS(4772), 1, anon_sym_COMMA, - ACTIONS(4832), 1, + ACTIONS(4774), 1, sym_crate, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2251), 1, + STATE(2215), 1, aux_sym_enum_variant_list_repeat1, - STATE(2819), 1, + STATE(2770), 1, sym_enum_variant, - STATE(3483), 1, + STATE(3401), 1, sym_visibility_modifier, - STATE(2108), 2, + STATE(2088), 2, sym_line_comment, sym_block_comment, - [66589] = 8, + [65623] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4019), 1, - anon_sym_LT2, - ACTIONS(4143), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_BANG, - STATE(1632), 1, - sym_type_arguments, - STATE(2109), 2, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66620] = 13, + ACTIONS(4776), 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, + [65646] = 13, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, @@ -167909,34 +167055,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4832), 1, + ACTIONS(4774), 1, sym_crate, - ACTIONS(4836), 1, + ACTIONS(4778), 1, sym_identifier, - ACTIONS(4838), 1, + ACTIONS(4780), 1, anon_sym_RBRACE, - ACTIONS(4840), 1, + ACTIONS(4782), 1, anon_sym_COMMA, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2252), 1, + STATE(2219), 1, aux_sym_enum_variant_list_repeat1, - STATE(2851), 1, + STATE(2779), 1, sym_field_declaration, - STATE(3609), 1, + STATE(3388), 1, sym_visibility_modifier, - STATE(2110), 2, + STATE(2090), 2, sym_line_comment, sym_block_comment, - [66661] = 4, + [65687] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2111), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(4842), 10, + ACTIONS(4784), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167947,40 +167093,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66684] = 10, + [65710] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4003), 1, anon_sym_LT2, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(4846), 1, - anon_sym_DOT_DOT, - ACTIONS(4850), 1, + ACTIONS(4119), 1, anon_sym_COLON_COLON, - STATE(1955), 1, + ACTIONS(4786), 1, + anon_sym_BANG, + STATE(1609), 1, sym_type_arguments, - ACTIONS(4848), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2112), 2, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(4529), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [66719] = 4, + ACTIONS(3384), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65741] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2113), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 10, + ACTIONS(4788), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -167991,15 +167135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66742] = 4, + [65764] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2114), 2, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(4854), 10, + ACTIONS(4746), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168010,15 +167154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66765] = 4, + [65787] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2115), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 10, + ACTIONS(4790), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168029,15 +167173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66788] = 4, + [65810] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2116), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(4858), 10, + ACTIONS(4792), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168048,15 +167192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66811] = 4, + [65833] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2117), 2, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(4860), 10, + ACTIONS(4794), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168067,15 +167211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66834] = 4, + [65856] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2118), 2, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(4862), 10, + ACTIONS(4796), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168086,15 +167230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66857] = 4, + [65879] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2119), 2, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(4864), 10, + ACTIONS(4798), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168105,15 +167249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66880] = 4, + [65902] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2120), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(4866), 10, + ACTIONS(4800), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168124,43 +167268,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66903] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [65925] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(4832), 1, - sym_crate, - ACTIONS(4836), 1, - sym_identifier, - ACTIONS(4868), 1, - anon_sym_RBRACE, - ACTIONS(4870), 1, - anon_sym_COMMA, - STATE(1448), 1, - sym_attribute_item, - STATE(2241), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2908), 1, - sym_field_declaration, - STATE(3609), 1, - sym_visibility_modifier, - STATE(2121), 2, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4511), 1, + anon_sym_BANG, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + STATE(1951), 1, + sym_type_arguments, + STATE(2101), 2, sym_line_comment, sym_block_comment, - [66944] = 4, + ACTIONS(3384), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65956] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2122), 2, + STATE(2102), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4802), 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, + [65979] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(4872), 10, + ACTIONS(4804), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168171,41 +167329,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66967] = 11, + [66002] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4728), 1, + ACTIONS(4692), 1, sym_identifier, - ACTIONS(4732), 1, + ACTIONS(4696), 1, anon_sym_DOT_DOT, - ACTIONS(4736), 1, + ACTIONS(4700), 1, sym_integer_literal, - ACTIONS(4874), 1, + ACTIONS(4806), 1, anon_sym_RBRACE, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2445), 1, + STATE(2422), 1, aux_sym_enum_variant_list_repeat1, - STATE(2123), 2, + STATE(2104), 2, sym_line_comment, sym_block_comment, - STATE(3256), 3, + STATE(3093), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [67004] = 4, + [66039] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2124), 2, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(4810), 1, + anon_sym_DOT_DOT, + ACTIONS(4814), 1, + anon_sym_COLON_COLON, + STATE(1951), 1, + sym_type_arguments, + ACTIONS(4812), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2105), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4507), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [66074] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(4876), 10, + ACTIONS(4816), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168216,15 +167399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67027] = 4, + [66097] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2125), 2, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(4878), 10, + ACTIONS(4818), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168235,15 +167418,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67050] = 4, + [66120] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2126), 2, + STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(4880), 10, + ACTIONS(4820), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168254,38 +167437,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67073] = 8, + [66143] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4533), 1, - anon_sym_BANG, - ACTIONS(4624), 1, - anon_sym_COLON_COLON, - STATE(1955), 1, - sym_type_arguments, - STATE(2127), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67104] = 4, + ACTIONS(4822), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66166] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2128), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(4786), 10, + ACTIONS(4824), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168296,15 +167475,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67127] = 4, + [66189] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2129), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(4882), 10, + ACTIONS(4826), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168315,41 +167494,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67150] = 11, + [66212] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4728), 1, + ACTIONS(4768), 1, sym_identifier, - ACTIONS(4732), 1, + ACTIONS(4774), 1, + sym_crate, + ACTIONS(4828), 1, + anon_sym_RBRACE, + ACTIONS(4830), 1, + anon_sym_COMMA, + STATE(1382), 1, + sym_attribute_item, + STATE(2195), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2739), 1, + sym_enum_variant, + STATE(3401), 1, + sym_visibility_modifier, + STATE(2112), 2, + sym_line_comment, + sym_block_comment, + [66253] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4692), 1, + sym_identifier, + ACTIONS(4696), 1, anon_sym_DOT_DOT, - ACTIONS(4736), 1, + ACTIONS(4700), 1, sym_integer_literal, - ACTIONS(4884), 1, + ACTIONS(4832), 1, anon_sym_RBRACE, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2445), 1, + STATE(2422), 1, aux_sym_enum_variant_list_repeat1, - STATE(2130), 2, + STATE(2113), 2, sym_line_comment, sym_block_comment, - STATE(3256), 3, + STATE(3093), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [67187] = 4, + [66290] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2131), 2, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(4886), 10, + ACTIONS(4686), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168360,15 +167567,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67210] = 4, + [66313] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2132), 2, + STATE(2115), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4834), 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, + [66336] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(4888), 10, + ACTIONS(4836), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168379,41 +167605,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67233] = 11, + [66359] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4728), 1, + ACTIONS(4692), 1, sym_identifier, - ACTIONS(4732), 1, + ACTIONS(4696), 1, anon_sym_DOT_DOT, - ACTIONS(4736), 1, + ACTIONS(4700), 1, sym_integer_literal, - ACTIONS(4890), 1, + ACTIONS(4838), 1, anon_sym_RBRACE, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2445), 1, + STATE(2422), 1, aux_sym_enum_variant_list_repeat1, - STATE(2133), 2, + STATE(2117), 2, sym_line_comment, sym_block_comment, - STATE(3256), 3, + STATE(3093), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [67270] = 4, + [66396] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2134), 2, + ACTIONS(1601), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(2124), 1, + sym_block, + STATE(3588), 1, + sym_label, + STATE(2118), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3384), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66427] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(1407), 10, + ACTIONS(4840), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168424,15 +167673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67293] = 4, + [66450] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2135), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(4513), 10, + ACTIONS(4842), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168443,40 +167692,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67316] = 10, + [66473] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4505), 1, + STATE(2121), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4844), 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, + [66496] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4481), 1, anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4491), 1, anon_sym_LPAREN, - ACTIONS(4519), 1, + ACTIONS(4495), 1, anon_sym_COLON, - ACTIONS(4523), 1, + ACTIONS(4499), 1, anon_sym_DOT_DOT, - ACTIONS(4892), 1, + ACTIONS(4846), 1, anon_sym_COLON_COLON, - ACTIONS(4525), 2, + ACTIONS(4501), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2136), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(4513), 3, + ACTIONS(4489), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - [67351] = 4, + [66531] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2137), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4774), 1, + sym_crate, + ACTIONS(4778), 1, + sym_identifier, + ACTIONS(4848), 1, + anon_sym_RBRACE, + ACTIONS(4850), 1, + anon_sym_COMMA, + STATE(1382), 1, + sym_attribute_item, + STATE(2186), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2886), 1, + sym_field_declaration, + STATE(3388), 1, + sym_visibility_modifier, + STATE(2123), 2, + sym_line_comment, + sym_block_comment, + [66572] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(4894), 10, + ACTIONS(1499), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168487,15 +167783,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67374] = 4, + [66595] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2138), 2, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4852), 1, + anon_sym_LBRACE, + STATE(1950), 1, + sym_type_arguments, + STATE(1970), 1, + sym_parameters, + STATE(2125), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3327), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS, + anon_sym_COMMA, + [66628] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(4896), 10, + ACTIONS(4854), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168506,15 +167826,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67397] = 4, + [66651] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2139), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4692), 1, + sym_identifier, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(4700), 1, + sym_integer_literal, + ACTIONS(4856), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_attribute_item, + STATE(2422), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2127), 2, + sym_line_comment, + sym_block_comment, + STATE(3093), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66688] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(4898), 10, + ACTIONS(4858), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168525,40 +167871,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67420] = 10, + [66711] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + STATE(2129), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4860), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [66734] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(4533), 1, + ACTIONS(4511), 1, anon_sym_BANG, - ACTIONS(4535), 1, + ACTIONS(4513), 1, anon_sym_DOT_DOT, - ACTIONS(4630), 1, + ACTIONS(4608), 1, anon_sym_COLON_COLON, - STATE(1955), 1, + STATE(1951), 1, sym_type_arguments, - ACTIONS(4537), 2, + ACTIONS(4515), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2140), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(4529), 3, + ACTIONS(4507), 3, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, - [67455] = 4, + [66769] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2141), 2, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(4900), 10, + ACTIONS(4489), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168569,15 +167934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67478] = 4, + [66792] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2142), 2, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(4902), 10, + ACTIONS(4862), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168588,15 +167953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67501] = 4, + [66815] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2143), 2, + STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(4904), 10, + ACTIONS(4864), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168607,15 +167972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67524] = 4, + [66838] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2144), 2, + STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(4906), 10, + ACTIONS(4866), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168626,43 +167991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67547] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(4826), 1, - sym_identifier, - ACTIONS(4832), 1, - sym_crate, - ACTIONS(4908), 1, - anon_sym_RBRACE, - ACTIONS(4910), 1, - anon_sym_COMMA, - STATE(1448), 1, - sym_attribute_item, - STATE(2228), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2932), 1, - sym_enum_variant, - STATE(3483), 1, - sym_visibility_modifier, - STATE(2145), 2, - sym_line_comment, - sym_block_comment, - [67588] = 4, + [66861] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2146), 2, + STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(4912), 10, + ACTIONS(4868), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168673,15 +168010,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67611] = 4, + [66884] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2147), 2, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(4914), 10, + ACTIONS(4870), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -168692,136 +168029,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67634] = 8, + [66907] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3299), 1, anon_sym_LT2, - ACTIONS(3607), 1, + ACTIONS(3473), 1, anon_sym_COLON_COLON, - ACTIONS(4916), 1, + ACTIONS(4872), 1, anon_sym_BANG, - STATE(1369), 1, + STATE(1074), 1, sym_type_arguments, - STATE(2148), 2, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, + ACTIONS(3384), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67665] = 4, + [66938] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2149), 2, + ACTIONS(4874), 1, + anon_sym_SEMI, + ACTIONS(4876), 1, + anon_sym_LBRACE, + STATE(1100), 1, + sym_declaration_list, + STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(4918), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3384), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66966] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4513), 1, + anon_sym_DOT_DOT, + ACTIONS(4608), 1, + anon_sym_COLON_COLON, + ACTIONS(4878), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(3327), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4507), 2, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67688] = 4, + ACTIONS(4515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2139), 2, + sym_line_comment, + sym_block_comment, + [66998] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2150), 2, + ACTIONS(4881), 1, + anon_sym_SEMI, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_LBRACE, + ACTIONS(4887), 1, + anon_sym_LT, + ACTIONS(4889), 1, + anon_sym_where, + STATE(666), 1, + sym_field_declaration_list, + STATE(2251), 1, + sym_type_parameters, + STATE(2873), 1, + sym_ordered_field_declaration_list, + STATE(3055), 1, + sym_where_clause, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(4920), 10, - anon_sym_SEMI, + [67036] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3359), 1, + anon_sym_DOT_DOT, + STATE(2141), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3361), 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, + [67060] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4891), 1, + anon_sym_LPAREN, + ACTIONS(4896), 1, + anon_sym_LBRACK, + ACTIONS(4899), 1, + anon_sym_LBRACE, + STATE(3476), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, + ACTIONS(4894), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, + STATE(2142), 3, + sym_line_comment, + sym_block_comment, + aux_sym_macro_definition_repeat1, + [67092] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3327), 1, + anon_sym_PLUS, + ACTIONS(4507), 1, anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4509), 1, + anon_sym_COLON, + ACTIONS(4513), 1, + anon_sym_DOT_DOT, + ACTIONS(4569), 1, + anon_sym_COLON_COLON, + ACTIONS(4515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4878), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67711] = 11, + STATE(2143), 2, + sym_line_comment, + sym_block_comment, + [67126] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4728), 1, + ACTIONS(4768), 1, sym_identifier, - ACTIONS(4732), 1, - anon_sym_DOT_DOT, - ACTIONS(4736), 1, - sym_integer_literal, - ACTIONS(4922), 1, + ACTIONS(4774), 1, + sym_crate, + ACTIONS(4902), 1, anon_sym_RBRACE, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2445), 1, + STATE(2206), 1, aux_sym_enum_variant_list_repeat1, - STATE(2151), 2, - sym_line_comment, - sym_block_comment, - STATE(3256), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67748] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(2134), 1, - sym_block, - STATE(3629), 1, - sym_label, - STATE(2152), 2, + STATE(3231), 1, + sym_enum_variant, + STATE(3401), 1, + sym_visibility_modifier, + STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67779] = 4, + [67164] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2153), 2, + ACTIONS(4507), 1, + anon_sym_PIPE, + ACTIONS(4509), 1, + anon_sym_COLON, + ACTIONS(4513), 1, + anon_sym_DOT_DOT, + ACTIONS(4612), 1, + anon_sym_COLON_COLON, + ACTIONS(4515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(4924), 10, - anon_sym_SEMI, + ACTIONS(3327), 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, - [67802] = 12, + [67196] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, @@ -168830,71 +168246,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4826), 1, + ACTIONS(4768), 1, sym_identifier, - ACTIONS(4832), 1, + ACTIONS(4774), 1, sym_crate, - ACTIONS(4926), 1, + ACTIONS(4904), 1, anon_sym_RBRACE, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2225), 1, + STATE(2206), 1, aux_sym_enum_variant_list_repeat1, - STATE(3300), 1, + STATE(3231), 1, sym_enum_variant, - STATE(3483), 1, + STATE(3401), 1, sym_visibility_modifier, - STATE(2154), 2, + STATE(2146), 2, sym_line_comment, sym_block_comment, - [67840] = 12, + [67234] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4928), 1, - anon_sym_SEMI, - ACTIONS(4930), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(4932), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, - ACTIONS(4934), 1, + ACTIONS(4887), 1, anon_sym_LT, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - STATE(1231), 1, + ACTIONS(4906), 1, + anon_sym_SEMI, + STATE(627), 1, sym_field_declaration_list, - STATE(2266), 1, + STATE(2268), 1, sym_type_parameters, - STATE(2865), 1, + STATE(2793), 1, sym_ordered_field_declaration_list, - STATE(3194), 1, + STATE(3069), 1, sym_where_clause, - STATE(2155), 2, + STATE(2147), 2, sym_line_comment, sym_block_comment, - [67878] = 7, + [67272] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4938), 1, - anon_sym_COLON_COLON, - STATE(1955), 1, - sym_type_arguments, - STATE(2156), 2, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(4908), 1, + anon_sym_SEMI, + STATE(1072), 1, + sym_declaration_list, + STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, + ACTIONS(3384), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67906] = 12, + [67300] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, @@ -168903,24 +168319,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4826), 1, + ACTIONS(4768), 1, sym_identifier, - ACTIONS(4832), 1, + ACTIONS(4774), 1, sym_crate, - ACTIONS(4940), 1, + ACTIONS(4910), 1, anon_sym_RBRACE, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2225), 1, + STATE(2206), 1, aux_sym_enum_variant_list_repeat1, - STATE(3300), 1, + STATE(3231), 1, sym_enum_variant, - STATE(3483), 1, + STATE(3401), 1, sym_visibility_modifier, - STATE(2157), 2, + STATE(2149), 2, + sym_line_comment, + sym_block_comment, + [67338] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4507), 1, + anon_sym_PIPE, + ACTIONS(4509), 1, + anon_sym_COLON, + ACTIONS(4511), 1, + anon_sym_BANG, + ACTIONS(4513), 1, + anon_sym_DOT_DOT, + ACTIONS(4612), 1, + anon_sym_COLON_COLON, + STATE(1951), 1, + sym_type_arguments, + ACTIONS(4515), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2150), 2, sym_line_comment, sym_block_comment, - [67944] = 12, + [67374] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, @@ -168929,24 +168370,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4832), 1, + ACTIONS(4774), 1, sym_crate, - ACTIONS(4836), 1, + ACTIONS(4778), 1, sym_identifier, - ACTIONS(4942), 1, + ACTIONS(4912), 1, anon_sym_RBRACE, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2242), 1, + STATE(2227), 1, aux_sym_enum_variant_list_repeat1, - STATE(3152), 1, + STATE(3248), 1, sym_field_declaration, - STATE(3609), 1, + STATE(3388), 1, sym_visibility_modifier, - STATE(2158), 2, + STATE(2151), 2, sym_line_comment, sym_block_comment, - [67982] = 12, + [67412] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, @@ -168955,24 +168396,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4826), 1, + ACTIONS(4768), 1, sym_identifier, - ACTIONS(4832), 1, + ACTIONS(4774), 1, sym_crate, - ACTIONS(4944), 1, + ACTIONS(4914), 1, anon_sym_RBRACE, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2225), 1, + STATE(2206), 1, aux_sym_enum_variant_list_repeat1, - STATE(3300), 1, + STATE(3231), 1, sym_enum_variant, - STATE(3483), 1, + STATE(3401), 1, sym_visibility_modifier, - STATE(2159), 2, + STATE(2152), 2, sym_line_comment, sym_block_comment, - [68020] = 12, + [67450] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, @@ -168981,225 +168422,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4826), 1, + ACTIONS(4774), 1, + sym_crate, + ACTIONS(4778), 1, sym_identifier, - ACTIONS(4832), 1, + ACTIONS(4916), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_attribute_item, + STATE(2227), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3248), 1, + sym_field_declaration, + STATE(3388), 1, + sym_visibility_modifier, + STATE(2153), 2, + sym_line_comment, + sym_block_comment, + [67488] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4774), 1, sym_crate, - ACTIONS(4946), 1, + ACTIONS(4778), 1, + sym_identifier, + ACTIONS(4918), 1, anon_sym_RBRACE, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2225), 1, + STATE(2227), 1, aux_sym_enum_variant_list_repeat1, - STATE(3300), 1, - sym_enum_variant, - STATE(3483), 1, + STATE(3248), 1, + sym_field_declaration, + STATE(3388), 1, sym_visibility_modifier, - STATE(2160), 2, + STATE(2154), 2, sym_line_comment, sym_block_comment, - [68058] = 9, + [67526] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4692), 1, + sym_identifier, + ACTIONS(4696), 1, + anon_sym_DOT_DOT, + ACTIONS(4700), 1, + sym_integer_literal, + STATE(1382), 1, + sym_attribute_item, + STATE(2422), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2155), 2, + sym_line_comment, + sym_block_comment, + STATE(3093), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67560] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4774), 1, + sym_crate, + ACTIONS(4778), 1, + sym_identifier, + ACTIONS(4920), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_attribute_item, + STATE(2227), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3248), 1, + sym_field_declaration, + STATE(3388), 1, + sym_visibility_modifier, + STATE(2156), 2, + sym_line_comment, + sym_block_comment, + [67598] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4003), 1, anon_sym_LT2, - ACTIONS(4948), 1, - anon_sym_for, - STATE(1958), 1, + ACTIONS(4922), 1, + anon_sym_COLON_COLON, + STATE(1609), 1, sym_type_arguments, - STATE(1963), 1, - sym_parameters, - STATE(2161), 2, + STATE(2157), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3384), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67626] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4926), 1, + anon_sym_PLUS, + STATE(2181), 1, + aux_sym_trait_bounds_repeat1, + STATE(2158), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, + ACTIONS(4924), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_where, - [68090] = 5, + [67652] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3366), 1, - anon_sym_DOT_DOT, - STATE(2162), 2, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_LT, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4928), 1, + anon_sym_SEMI, + ACTIONS(4930), 1, + anon_sym_LBRACE, + STATE(1093), 1, + sym_field_declaration_list, + STATE(2297), 1, + sym_type_parameters, + STATE(3025), 1, + sym_ordered_field_declaration_list, + STATE(3300), 1, + sym_where_clause, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68114] = 9, + [67690] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_LPAREN, - ACTIONS(4664), 1, - anon_sym_BANG, - ACTIONS(4668), 1, + ACTIONS(3335), 1, anon_sym_DOT_DOT, - ACTIONS(4950), 1, - anon_sym_COLON_COLON, - ACTIONS(4670), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2163), 2, + STATE(2160), 2, sym_line_comment, sym_block_comment, - ACTIONS(4513), 3, + ACTIONS(3337), 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, - [68146] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [67714] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(4832), 1, - sym_crate, - ACTIONS(4836), 1, - sym_identifier, - ACTIONS(4952), 1, - anon_sym_RBRACE, - STATE(1448), 1, - sym_attribute_item, - STATE(2242), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3152), 1, - sym_field_declaration, - STATE(3609), 1, - sym_visibility_modifier, - STATE(2164), 2, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4932), 1, + anon_sym_for, + STATE(1950), 1, + sym_type_arguments, + STATE(1970), 1, + sym_parameters, + STATE(2161), 2, sym_line_comment, sym_block_comment, - [68184] = 9, + ACTIONS(3327), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67746] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(4954), 1, + ACTIONS(4934), 1, anon_sym_for, - STATE(1958), 1, + STATE(1950), 1, sym_type_arguments, - STATE(1963), 1, + STATE(1970), 1, sym_parameters, - STATE(2165), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, + ACTIONS(3327), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68216] = 7, + [67778] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_SEMI, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(738), 1, - sym_declaration_list, - STATE(2166), 2, + ACTIONS(4481), 1, + anon_sym_BANG, + ACTIONS(4491), 1, + anon_sym_LPAREN, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(4936), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2163), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4489), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [67810] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3299), 1, + anon_sym_LT2, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + STATE(1074), 1, + sym_type_arguments, + STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, + ACTIONS(3384), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68244] = 9, + [67838] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4642), 1, anon_sym_LPAREN, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4960), 1, - anon_sym_for, - STATE(1958), 1, - sym_type_arguments, - STATE(1963), 1, - sym_parameters, - STATE(2167), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3370), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68276] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3378), 1, + ACTIONS(4646), 1, + anon_sym_BANG, + ACTIONS(4650), 1, anon_sym_DOT_DOT, - STATE(2168), 2, + ACTIONS(4940), 1, + anon_sym_COLON_COLON, + ACTIONS(4652), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(3380), 8, - anon_sym_LPAREN, + ACTIONS(4489), 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, - [68300] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(4728), 1, - sym_identifier, - ACTIONS(4732), 1, - anon_sym_DOT_DOT, - ACTIONS(4736), 1, - sym_integer_literal, - STATE(1448), 1, - sym_attribute_item, - STATE(2445), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2169), 2, - sym_line_comment, - sym_block_comment, - STATE(3256), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68334] = 12, + [67870] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, @@ -169208,24 +168723,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4826), 1, + ACTIONS(4768), 1, sym_identifier, - ACTIONS(4832), 1, + ACTIONS(4774), 1, sym_crate, - ACTIONS(4962), 1, + ACTIONS(4942), 1, anon_sym_RBRACE, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2225), 1, + STATE(2206), 1, aux_sym_enum_variant_list_repeat1, - STATE(3300), 1, + STATE(3231), 1, sym_enum_variant, - STATE(3483), 1, + STATE(3401), 1, sym_visibility_modifier, - STATE(2170), 2, + STATE(2166), 2, sym_line_comment, sym_block_comment, - [68372] = 12, + [67908] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, @@ -169234,81 +168749,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4826), 1, + ACTIONS(4768), 1, sym_identifier, - ACTIONS(4832), 1, + ACTIONS(4774), 1, sym_crate, - ACTIONS(4964), 1, + ACTIONS(4944), 1, anon_sym_RBRACE, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2225), 1, + STATE(2206), 1, aux_sym_enum_variant_list_repeat1, - STATE(3300), 1, + STATE(3231), 1, sym_enum_variant, - STATE(3483), 1, + STATE(3401), 1, sym_visibility_modifier, - STATE(2171), 2, + STATE(2167), 2, sym_line_comment, sym_block_comment, - [68410] = 12, + [67946] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LT, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4966), 1, + ACTIONS(4946), 1, anon_sym_SEMI, - ACTIONS(4968), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - STATE(720), 1, - sym_field_declaration_list, - STATE(2259), 1, - sym_type_parameters, - STATE(2923), 1, - sym_ordered_field_declaration_list, - STATE(3155), 1, - sym_where_clause, - STATE(2172), 2, + STATE(711), 1, + sym_declaration_list, + STATE(2168), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3384), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67974] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4950), 1, + anon_sym_for, + STATE(1950), 1, + sym_type_arguments, + STATE(1970), 1, + sym_parameters, + STATE(2169), 2, sym_line_comment, sym_block_comment, - [68448] = 7, + ACTIONS(3327), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68006] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4019), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(4970), 1, + ACTIONS(4952), 1, anon_sym_COLON_COLON, - STATE(1632), 1, + STATE(1951), 1, sym_type_arguments, - STATE(2173), 2, + STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, + ACTIONS(3384), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68476] = 5, + [68034] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3335), 1, + ACTIONS(3371), 1, anon_sym_DOT_DOT, - STATE(2174), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(3337), 8, + ACTIONS(3373), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -169317,73 +168850,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [68500] = 5, + [68058] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3358), 1, - anon_sym_DOT_DOT, - STATE(2175), 2, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4954), 1, + anon_sym_for, + STATE(1950), 1, + sym_type_arguments, + STATE(1970), 1, + sym_parameters, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(3360), 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, - [68524] = 7, + ACTIONS(3327), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68090] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, - anon_sym_LT2, - ACTIONS(4972), 1, - anon_sym_COLON_COLON, - STATE(1369), 1, - sym_type_arguments, - STATE(2176), 2, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4956), 1, + anon_sym_SEMI, + STATE(633), 1, + sym_declaration_list, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, + ACTIONS(3384), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68552] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [68118] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(4832), 1, - sym_crate, - ACTIONS(4836), 1, - sym_identifier, - ACTIONS(4974), 1, - anon_sym_RBRACE, - STATE(1448), 1, - sym_attribute_item, - STATE(2242), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3152), 1, - sym_field_declaration, - STATE(3609), 1, - sym_visibility_modifier, - STATE(2177), 2, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4958), 1, + anon_sym_for, + STATE(1950), 1, + sym_type_arguments, + STATE(1970), 1, + sym_parameters, + STATE(2174), 2, sym_line_comment, sym_block_comment, - [68590] = 12, + ACTIONS(3327), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68150] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, @@ -169392,85 +168926,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4832), 1, + ACTIONS(4774), 1, sym_crate, - ACTIONS(4836), 1, + ACTIONS(4778), 1, sym_identifier, - ACTIONS(4976), 1, + ACTIONS(4960), 1, anon_sym_RBRACE, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2242), 1, + STATE(2227), 1, aux_sym_enum_variant_list_repeat1, - STATE(3152), 1, + STATE(3248), 1, sym_field_declaration, - STATE(3609), 1, + STATE(3388), 1, sym_visibility_modifier, - STATE(2178), 2, + STATE(2175), 2, sym_line_comment, sym_block_comment, - [68628] = 9, + [68188] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4515), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(4978), 1, - anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2179), 2, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4962), 1, + anon_sym_for, + STATE(1950), 1, + sym_type_arguments, + STATE(1970), 1, + sym_parameters, + STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(4513), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [68660] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3327), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68220] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(4832), 1, - sym_crate, - ACTIONS(4836), 1, - sym_identifier, - ACTIONS(4980), 1, - anon_sym_RBRACE, - STATE(1448), 1, - sym_attribute_item, - STATE(2242), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3152), 1, - sym_field_declaration, - STATE(3609), 1, - sym_visibility_modifier, - STATE(2180), 2, + ACTIONS(3343), 1, + anon_sym_DOT_DOT, + STATE(2177), 2, sym_line_comment, sym_block_comment, - [68698] = 6, + ACTIONS(3345), 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, + [68244] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4984), 1, + ACTIONS(4926), 1, anon_sym_PLUS, - STATE(2192), 1, + STATE(2158), 1, aux_sym_trait_bounds_repeat1, - STATE(2181), 2, + STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(4982), 7, + ACTIONS(4964), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -169478,91 +169005,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [68724] = 12, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LT, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4968), 1, - anon_sym_LBRACE, - ACTIONS(4986), 1, - anon_sym_SEMI, - STATE(493), 1, - sym_field_declaration_list, - STATE(2309), 1, - sym_type_parameters, - STATE(3025), 1, - sym_ordered_field_declaration_list, - STATE(3316), 1, - sym_where_clause, - STATE(2182), 2, - sym_line_comment, - sym_block_comment, - [68762] = 9, + [68270] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4529), 1, - anon_sym_PIPE, - ACTIONS(4531), 1, - anon_sym_COLON, - ACTIONS(4535), 1, - anon_sym_DOT_DOT, - ACTIONS(4636), 1, - anon_sym_COLON_COLON, - ACTIONS(4537), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2183), 2, + ACTIONS(4966), 1, + anon_sym_PLUS, + STATE(2158), 1, + aux_sym_trait_bounds_repeat1, + STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 3, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(4964), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - [68794] = 9, + anon_sym_SQUOTE, + anon_sym_where, + [68296] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_DOT_DOT, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, - ACTIONS(4988), 1, - anon_sym_RBRACK, - ACTIONS(3370), 2, - anon_sym_SEMI, + ACTIONS(4968), 1, anon_sym_PLUS, - ACTIONS(4529), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4537), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2184), 2, + STATE(2158), 1, + aux_sym_trait_bounds_repeat1, + STATE(2180), 2, sym_line_comment, sym_block_comment, - [68826] = 6, + ACTIONS(4964), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [68322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4991), 1, + ACTIONS(4972), 1, anon_sym_PLUS, - STATE(2192), 1, - aux_sym_trait_bounds_repeat1, - STATE(2185), 2, + STATE(2181), 3, sym_line_comment, sym_block_comment, - ACTIONS(4982), 7, + aux_sym_trait_bounds_repeat1, + ACTIONS(4970), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -169570,258 +169064,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [68852] = 9, + [68346] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(4993), 1, + ACTIONS(4975), 1, anon_sym_for, - STATE(1958), 1, + STATE(1950), 1, sym_type_arguments, - STATE(1963), 1, + STATE(1970), 1, sym_parameters, - STATE(2186), 2, + STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, + ACTIONS(3327), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68884] = 7, + [68378] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_LT, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4930), 1, anon_sym_LBRACE, - ACTIONS(4995), 1, + ACTIONS(4977), 1, anon_sym_SEMI, - STATE(605), 1, - sym_declaration_list, - STATE(2187), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3467), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68912] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4997), 1, - anon_sym_PLUS, - STATE(2192), 1, - aux_sym_trait_bounds_repeat1, - STATE(2188), 2, + STATE(1139), 1, + sym_field_declaration_list, + STATE(2280), 1, + sym_type_parameters, + STATE(2786), 1, + sym_ordered_field_declaration_list, + STATE(3273), 1, + sym_where_clause, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(4982), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68938] = 9, + [68416] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4479), 1, anon_sym_LPAREN, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(4999), 1, + ACTIONS(4979), 1, anon_sym_for, - STATE(1958), 1, + STATE(1950), 1, sym_type_arguments, - STATE(1963), 1, + STATE(1970), 1, sym_parameters, - STATE(2189), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, + ACTIONS(3327), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68970] = 11, + [68448] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4529), 1, - anon_sym_PIPE, - ACTIONS(4531), 1, - anon_sym_COLON, - ACTIONS(4533), 1, - anon_sym_BANG, - ACTIONS(4535), 1, - anon_sym_DOT_DOT, - ACTIONS(4636), 1, - anon_sym_COLON_COLON, - STATE(1955), 1, - sym_type_arguments, - ACTIONS(4537), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2190), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4774), 1, + sym_crate, + ACTIONS(4778), 1, + sym_identifier, + ACTIONS(4981), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_attribute_item, + STATE(2227), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3248), 1, + sym_field_declaration, + STATE(3388), 1, + sym_visibility_modifier, + STATE(2185), 2, sym_line_comment, sym_block_comment, - [69006] = 9, + [68486] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5001), 1, - anon_sym_for, - STATE(1958), 1, - sym_type_arguments, - STATE(1963), 1, - sym_parameters, - STATE(2191), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4774), 1, + sym_crate, + ACTIONS(4778), 1, + sym_identifier, + STATE(1062), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1382), 1, + sym_attribute_item, + STATE(3009), 1, + sym_field_declaration, + STATE(3388), 1, + sym_visibility_modifier, + STATE(2186), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69038] = 6, + [68521] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4984), 1, - anon_sym_PLUS, - STATE(2201), 1, - aux_sym_trait_bounds_repeat1, - STATE(2192), 2, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(5003), 7, + ACTIONS(4970), 8, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [69064] = 9, + [68542] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5005), 1, - anon_sym_for, - STATE(1958), 1, - sym_type_arguments, - STATE(1963), 1, - sym_parameters, - STATE(2193), 2, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(4985), 1, + anon_sym_LT, + STATE(619), 1, + sym_declaration_list, + STATE(2312), 1, + sym_type_parameters, + STATE(2505), 1, + sym_trait_bounds, + STATE(3057), 1, + sym_where_clause, + STATE(2188), 2, + sym_line_comment, + sym_block_comment, + [68577] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(4985), 1, + anon_sym_LT, + ACTIONS(4987), 1, + anon_sym_SEMI, + ACTIONS(4989), 1, + anon_sym_EQ, + STATE(2379), 1, + sym_type_parameters, + STATE(2737), 1, + sym_trait_bounds, + STATE(3370), 1, + sym_where_clause, + STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, + [68612] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4991), 1, anon_sym_SEMI, + ACTIONS(4993), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69096] = 12, + ACTIONS(4995), 1, + anon_sym_DASH_GT, + STATE(1112), 1, + sym_block, + STATE(2436), 1, + sym_where_clause, + STATE(3595), 1, + sym_label, + STATE(2190), 2, + sym_line_comment, + sym_block_comment, + [68647] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_LPAREN, - ACTIONS(4932), 1, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4997), 1, + anon_sym_SEMI, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(4934), 1, - anon_sym_LT, - ACTIONS(4936), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + STATE(716), 1, + sym_block, + STATE(2417), 1, + sym_where_clause, + STATE(3592), 1, + sym_label, + STATE(2191), 2, + sym_line_comment, + sym_block_comment, + [68682] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5007), 1, + ACTIONS(4993), 1, + anon_sym_LBRACE, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5003), 1, anon_sym_SEMI, - STATE(1248), 1, - sym_field_declaration_list, - STATE(2314), 1, - sym_type_parameters, - STATE(3054), 1, - sym_ordered_field_declaration_list, - STATE(3356), 1, + STATE(1206), 1, + sym_block, + STATE(2447), 1, sym_where_clause, - STATE(2194), 2, + STATE(3595), 1, + sym_label, + STATE(2192), 2, sym_line_comment, sym_block_comment, - [69134] = 9, + [68717] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5009), 1, - anon_sym_LPAREN, - ACTIONS(5014), 1, - anon_sym_LBRACK, - ACTIONS(5017), 1, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4993), 1, anon_sym_LBRACE, - STATE(3372), 1, - sym_token_tree_pattern, - STATE(3492), 1, - sym_macro_rule, - ACTIONS(5012), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2195), 3, + ACTIONS(5005), 1, + anon_sym_SEMI, + ACTIONS(5007), 1, + anon_sym_DASH_GT, + STATE(1235), 1, + sym_block, + STATE(2450), 1, + sym_where_clause, + STATE(3595), 1, + sym_label, + STATE(2193), 2, sym_line_comment, sym_block_comment, - aux_sym_macro_definition_repeat1, - [69166] = 10, + [68752] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - anon_sym_PLUS, - ACTIONS(4529), 1, - anon_sym_PIPE, - ACTIONS(4531), 1, - anon_sym_COLON, - ACTIONS(4535), 1, - anon_sym_DOT_DOT, - ACTIONS(4539), 1, - anon_sym_COLON_COLON, - ACTIONS(4537), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4988), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2196), 2, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4993), 1, + anon_sym_LBRACE, + ACTIONS(5009), 1, + anon_sym_SEMI, + ACTIONS(5011), 1, + anon_sym_DASH_GT, + STATE(1249), 1, + sym_block, + STATE(2451), 1, + sym_where_clause, + STATE(3595), 1, + sym_label, + STATE(2194), 2, sym_line_comment, sym_block_comment, - [69200] = 12, + [68787] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, @@ -169830,132 +169380,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4832), 1, - sym_crate, - ACTIONS(4836), 1, + ACTIONS(4768), 1, sym_identifier, - ACTIONS(5020), 1, - anon_sym_RBRACE, - STATE(1448), 1, - sym_attribute_item, - STATE(2242), 1, + ACTIONS(4774), 1, + sym_crate, + STATE(1062), 1, aux_sym_enum_variant_list_repeat1, - STATE(3152), 1, - sym_field_declaration, - STATE(3609), 1, + STATE(1382), 1, + sym_attribute_item, + STATE(2963), 1, + sym_enum_variant, + STATE(3401), 1, sym_visibility_modifier, - STATE(2197), 2, + STATE(2195), 2, sym_line_comment, sym_block_comment, - [69238] = 7, + [68822] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5022), 1, - anon_sym_SEMI, - ACTIONS(5024), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(1133), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(4985), 1, + anon_sym_LT, + STATE(1132), 1, sym_declaration_list, - STATE(2198), 2, + STATE(2338), 1, + sym_type_parameters, + STATE(2521), 1, + sym_trait_bounds, + STATE(3233), 1, + sym_where_clause, + STATE(2196), 2, + sym_line_comment, + sym_block_comment, + [68857] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4557), 1, + anon_sym_trait, + ACTIONS(5013), 1, + anon_sym_impl, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, + ACTIONS(3384), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69266] = 7, + [68882] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(5026), 1, - anon_sym_SEMI, - STATE(1323), 1, - sym_declaration_list, - STATE(2199), 2, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, + ACTIONS(5015), 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, - [69294] = 9, + [68903] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5028), 1, - anon_sym_for, - STATE(1958), 1, - sym_type_arguments, - STATE(1963), 1, - sym_parameters, - STATE(2200), 2, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4999), 1, + anon_sym_LBRACE, + ACTIONS(5017), 1, + anon_sym_SEMI, + ACTIONS(5019), 1, + anon_sym_DASH_GT, + STATE(648), 1, + sym_block, + STATE(2484), 1, + sym_where_clause, + STATE(3592), 1, + sym_label, + STATE(2199), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [69326] = 5, + [68938] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5032), 1, - anon_sym_PLUS, - STATE(2201), 3, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + ACTIONS(4808), 1, + anon_sym_BANG, + STATE(2200), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(5030), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69350] = 11, + ACTIONS(3384), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68963] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5035), 1, - anon_sym_SEMI, - ACTIONS(5037), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5021), 1, + anon_sym_SEMI, + ACTIONS(5023), 1, anon_sym_DASH_GT, - STATE(767), 1, + STATE(537), 1, sym_block, - STATE(2511), 1, + STATE(2474), 1, sym_where_clause, - STATE(3633), 1, + STATE(3592), 1, sym_label, - STATE(2202), 2, + STATE(2201), 2, sym_line_comment, sym_block_comment, - [69385] = 11, + [68998] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, @@ -169964,70 +169531,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4826), 1, - sym_identifier, - ACTIONS(4832), 1, + ACTIONS(4774), 1, sym_crate, - STATE(1448), 1, + ACTIONS(4778), 1, + sym_identifier, + STATE(1382), 1, sym_attribute_item, - STATE(2225), 1, + STATE(2227), 1, aux_sym_enum_variant_list_repeat1, - STATE(3300), 1, - sym_enum_variant, - STATE(3483), 1, + STATE(3248), 1, + sym_field_declaration, + STATE(3388), 1, sym_visibility_modifier, - STATE(2203), 2, + STATE(2202), 2, sym_line_comment, sym_block_comment, - [69420] = 11, + [69033] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5037), 1, + ACTIONS(4993), 1, anon_sym_LBRACE, - ACTIONS(5041), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5025), 1, anon_sym_SEMI, - ACTIONS(5043), 1, - anon_sym_DASH_GT, - STATE(744), 1, + STATE(1257), 1, sym_block, - STATE(2516), 1, + STATE(2454), 1, sym_where_clause, - STATE(3633), 1, + STATE(3595), 1, sym_label, + STATE(2203), 2, + sym_line_comment, + sym_block_comment, + [69068] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5027), 1, + anon_sym_fn, + ACTIONS(5029), 1, + anon_sym_extern, + STATE(2222), 1, + aux_sym_function_modifiers_repeat1, + STATE(2386), 1, + sym_extern_modifier, STATE(2204), 2, sym_line_comment, sym_block_comment, - [69455] = 11, + ACTIONS(4519), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [69097] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5045), 1, + ACTIONS(4481), 1, + anon_sym_BANG, + ACTIONS(4489), 1, + anon_sym_PIPE, + ACTIONS(4491), 1, + anon_sym_LPAREN, + ACTIONS(4495), 1, anon_sym_COLON, - ACTIONS(5047), 1, - anon_sym_LT, - STATE(717), 1, - sym_declaration_list, - STATE(2384), 1, - sym_type_parameters, - STATE(2701), 1, - sym_trait_bounds, - STATE(3283), 1, - sym_where_clause, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5031), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2205), 2, sym_line_comment, sym_block_comment, - [69490] = 11, + [69130] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, @@ -170036,510 +169623,484 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4832), 1, - sym_crate, - ACTIONS(4836), 1, + ACTIONS(4768), 1, sym_identifier, - STATE(1448), 1, - sym_attribute_item, - STATE(2242), 1, + ACTIONS(4774), 1, + sym_crate, + STATE(1062), 1, aux_sym_enum_variant_list_repeat1, - STATE(3152), 1, - sym_field_declaration, - STATE(3609), 1, + STATE(1382), 1, + sym_attribute_item, + STATE(3257), 1, + sym_enum_variant, + STATE(3401), 1, sym_visibility_modifier, STATE(2206), 2, sym_line_comment, sym_block_comment, - [69525] = 11, + [69165] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5037), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(5049), 1, + ACTIONS(5033), 1, anon_sym_SEMI, - ACTIONS(5051), 1, + ACTIONS(5035), 1, anon_sym_DASH_GT, - STATE(759), 1, + STATE(762), 1, sym_block, - STATE(2527), 1, + STATE(2440), 1, sym_where_clause, - STATE(3633), 1, + STATE(3592), 1, sym_label, STATE(2207), 2, sym_line_comment, sym_block_comment, - [69560] = 11, + [69200] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5037), 1, + ACTIONS(4993), 1, anon_sym_LBRACE, - ACTIONS(5053), 1, - anon_sym_SEMI, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - STATE(573), 1, + ACTIONS(5037), 1, + anon_sym_SEMI, + STATE(1290), 1, sym_block, - STATE(2426), 1, + STATE(2455), 1, sym_where_clause, - STATE(3633), 1, + STATE(3595), 1, sym_label, STATE(2208), 2, sym_line_comment, sym_block_comment, - [69595] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5047), 1, - anon_sym_LT, - STATE(1267), 1, - sym_declaration_list, - STATE(2414), 1, - sym_type_parameters, - STATE(2671), 1, - sym_trait_bounds, - STATE(3098), 1, - sym_where_clause, - STATE(2209), 2, - sym_line_comment, - sym_block_comment, - [69630] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5047), 1, - anon_sym_LT, - ACTIONS(5057), 1, - anon_sym_SEMI, - ACTIONS(5059), 1, - anon_sym_EQ, - STATE(2368), 1, - sym_type_parameters, - STATE(3060), 1, - sym_trait_bounds, - STATE(3452), 1, - sym_where_clause, - STATE(2210), 2, - sym_line_comment, - sym_block_comment, - [69665] = 11, + [69235] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5037), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5061), 1, + ACTIONS(5039), 1, anon_sym_SEMI, - STATE(584), 1, + STATE(565), 1, sym_block, - STATE(2442), 1, + STATE(2482), 1, sym_where_clause, - STATE(3633), 1, + STATE(3592), 1, sym_label, - STATE(2211), 2, + STATE(2209), 2, sym_line_comment, sym_block_comment, - [69700] = 10, + [69270] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5063), 1, - sym_identifier, - ACTIONS(5065), 1, - anon_sym_RBRACE, - ACTIONS(5067), 1, - anon_sym_COMMA, - ACTIONS(5069), 1, - anon_sym_ref, - ACTIONS(5071), 1, - sym_mutable_specifier, - STATE(2212), 2, + STATE(2210), 2, sym_line_comment, sym_block_comment, - STATE(2793), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69733] = 10, + ACTIONS(4970), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [69291] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(1519), 1, anon_sym_DOT_DOT, - ACTIONS(5063), 1, + ACTIONS(5041), 1, sym_identifier, - ACTIONS(5069), 1, - anon_sym_ref, - ACTIONS(5071), 1, - sym_mutable_specifier, - ACTIONS(5073), 1, + ACTIONS(5043), 1, anon_sym_RBRACE, - ACTIONS(5075), 1, + ACTIONS(5045), 1, anon_sym_COMMA, - STATE(2213), 2, + ACTIONS(5047), 1, + anon_sym_ref, + ACTIONS(5049), 1, + sym_mutable_specifier, + STATE(2211), 2, sym_line_comment, sym_block_comment, - STATE(2796), 2, + STATE(2960), 2, sym_field_pattern, sym_remaining_field_pattern, - [69766] = 11, + [69324] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5047), 1, - anon_sym_LT, - STATE(721), 1, - sym_declaration_list, - STATE(2361), 1, - sym_type_parameters, - STATE(2631), 1, - sym_trait_bounds, - STATE(3173), 1, - sym_where_clause, - STATE(2214), 2, - sym_line_comment, - sym_block_comment, - [69801] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5047), 1, - anon_sym_LT, - ACTIONS(5077), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5051), 1, anon_sym_SEMI, - ACTIONS(5079), 1, - anon_sym_EQ, - STATE(2350), 1, - sym_type_parameters, - STATE(2979), 1, - sym_trait_bounds, - STATE(3407), 1, + STATE(495), 1, + sym_block, + STATE(2453), 1, sym_where_clause, - STATE(2215), 2, + STATE(3592), 1, + sym_label, + STATE(2212), 2, sym_line_comment, sym_block_comment, - [69836] = 11, + [69359] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5081), 1, - anon_sym_SEMI, - ACTIONS(5083), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(5085), 1, + ACTIONS(5053), 1, + anon_sym_SEMI, + ACTIONS(5055), 1, anon_sym_DASH_GT, - STATE(1192), 1, + STATE(693), 1, sym_block, - STATE(2519), 1, + STATE(2397), 1, sym_where_clause, - STATE(3636), 1, + STATE(3592), 1, sym_label, - STATE(2216), 2, + STATE(2213), 2, sym_line_comment, sym_block_comment, - [69871] = 11, + [69394] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5047), 1, - anon_sym_LT, - STATE(1222), 1, - sym_declaration_list, - STATE(2345), 1, - sym_type_parameters, - STATE(2661), 1, - sym_trait_bounds, - STATE(3178), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5057), 1, + anon_sym_SEMI, + STATE(575), 1, + sym_block, + STATE(2485), 1, sym_where_clause, - STATE(2217), 2, + STATE(3592), 1, + sym_label, + STATE(2214), 2, sym_line_comment, sym_block_comment, - [69906] = 6, + [69429] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4754), 1, - anon_sym_COLON_COLON, - ACTIONS(4844), 1, - anon_sym_BANG, - STATE(2218), 2, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4768), 1, + sym_identifier, + ACTIONS(4774), 1, + sym_crate, + STATE(1062), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1382), 1, + sym_attribute_item, + STATE(2808), 1, + sym_enum_variant, + STATE(3401), 1, + sym_visibility_modifier, + STATE(2215), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69931] = 11, + [69464] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5083), 1, + ACTIONS(4993), 1, anon_sym_LBRACE, - ACTIONS(5087), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5059), 1, anon_sym_SEMI, - ACTIONS(5089), 1, - anon_sym_DASH_GT, - STATE(1254), 1, + STATE(1328), 1, sym_block, - STATE(2429), 1, + STATE(2457), 1, sym_where_clause, - STATE(3636), 1, + STATE(3595), 1, sym_label, - STATE(2219), 2, + STATE(2216), 2, sym_line_comment, sym_block_comment, - [69966] = 6, + [69499] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4555), 1, - anon_sym_trait, - ACTIONS(5091), 1, - anon_sym_impl, - STATE(2220), 2, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4993), 1, + anon_sym_LBRACE, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5061), 1, + anon_sym_SEMI, + STATE(1338), 1, + sym_block, + STATE(2458), 1, + sym_where_clause, + STATE(3595), 1, + sym_label, + STATE(2217), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69991] = 11, + [69534] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5083), 1, + ACTIONS(4993), 1, anon_sym_LBRACE, - ACTIONS(5093), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5063), 1, anon_sym_SEMI, - ACTIONS(5095), 1, - anon_sym_DASH_GT, - STATE(1287), 1, + STATE(1348), 1, sym_block, - STATE(2436), 1, + STATE(2459), 1, sym_where_clause, - STATE(3636), 1, + STATE(3595), 1, sym_label, - STATE(2221), 2, + STATE(2218), 2, + sym_line_comment, + sym_block_comment, + [69569] = 11, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4774), 1, + sym_crate, + ACTIONS(4778), 1, + sym_identifier, + STATE(1062), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1382), 1, + sym_attribute_item, + STATE(2821), 1, + sym_field_declaration, + STATE(3388), 1, + sym_visibility_modifier, + STATE(2219), 2, sym_line_comment, sym_block_comment, - [70026] = 11, + [69604] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5045), 1, + ACTIONS(4983), 1, anon_sym_COLON, - ACTIONS(5047), 1, + ACTIONS(4985), 1, anon_sym_LT, - STATE(1299), 1, + STATE(702), 1, sym_declaration_list, - STATE(2377), 1, + STATE(2350), 1, sym_type_parameters, - STATE(2707), 1, + STATE(2538), 1, sym_trait_bounds, - STATE(3285), 1, + STATE(3089), 1, sym_where_clause, - STATE(2222), 2, + STATE(2220), 2, + sym_line_comment, + sym_block_comment, + [69639] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1321), 1, + aux_sym_string_literal_token1, + STATE(2198), 1, + sym_string_literal, + STATE(2221), 2, sym_line_comment, sym_block_comment, - [70061] = 7, + ACTIONS(4710), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69664] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, + ACTIONS(5068), 1, anon_sym_fn, - ACTIONS(5102), 1, + ACTIONS(5070), 1, anon_sym_extern, - STATE(2365), 1, + STATE(2386), 1, sym_extern_modifier, - STATE(2223), 3, + STATE(2222), 3, sym_line_comment, sym_block_comment, aux_sym_function_modifiers_repeat1, - ACTIONS(5097), 4, + ACTIONS(5065), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - [70088] = 11, + [69691] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5083), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(5105), 1, + ACTIONS(5073), 1, anon_sym_SEMI, - STATE(1320), 1, + ACTIONS(5075), 1, + anon_sym_DASH_GT, + STATE(598), 1, + sym_block, + STATE(2401), 1, + sym_where_clause, + STATE(3592), 1, + sym_label, + STATE(2223), 2, + sym_line_comment, + sym_block_comment, + [69726] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4993), 1, + anon_sym_LBRACE, + ACTIONS(5077), 1, + anon_sym_SEMI, + ACTIONS(5079), 1, + anon_sym_DASH_GT, + STATE(1154), 1, sym_block, - STATE(2443), 1, + STATE(2442), 1, sym_where_clause, - STATE(3636), 1, + STATE(3595), 1, sym_label, STATE(2224), 2, sym_line_comment, sym_block_comment, - [70123] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [69761] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(4826), 1, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5041), 1, sym_identifier, - ACTIONS(4832), 1, - sym_crate, - STATE(1062), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1448), 1, - sym_attribute_item, - STATE(3111), 1, - sym_enum_variant, - STATE(3483), 1, - sym_visibility_modifier, + ACTIONS(5047), 1, + anon_sym_ref, + ACTIONS(5049), 1, + sym_mutable_specifier, + ACTIONS(5081), 1, + anon_sym_RBRACE, + ACTIONS(5083), 1, + anon_sym_COMMA, STATE(2225), 2, sym_line_comment, sym_block_comment, - [70158] = 11, + STATE(2758), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69794] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5045), 1, + ACTIONS(4983), 1, anon_sym_COLON, - ACTIONS(5047), 1, + ACTIONS(4985), 1, anon_sym_LT, - STATE(666), 1, + STATE(690), 1, sym_declaration_list, - STATE(2317), 1, + STATE(2347), 1, sym_type_parameters, - STATE(2560), 1, + STATE(2531), 1, sym_trait_bounds, - STATE(3077), 1, + STATE(3104), 1, sym_where_clause, STATE(2226), 2, sym_line_comment, sym_block_comment, - [70193] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5083), 1, - anon_sym_LBRACE, - ACTIONS(5107), 1, - anon_sym_SEMI, - ACTIONS(5109), 1, - anon_sym_DASH_GT, - STATE(1375), 1, - sym_block, - STATE(2450), 1, - sym_where_clause, - STATE(3636), 1, - sym_label, - STATE(2227), 2, - sym_line_comment, - sym_block_comment, - [70228] = 11, + [69829] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(103), 1, @@ -170548,238 +170109,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(3007), 1, anon_sym_POUND, - ACTIONS(4826), 1, - sym_identifier, - ACTIONS(4832), 1, + ACTIONS(4774), 1, sym_crate, + ACTIONS(4778), 1, + sym_identifier, STATE(1062), 1, aux_sym_enum_variant_list_repeat1, - STATE(1448), 1, + STATE(1382), 1, sym_attribute_item, - STATE(2781), 1, - sym_enum_variant, - STATE(3483), 1, + STATE(3090), 1, + sym_field_declaration, + STATE(3388), 1, sym_visibility_modifier, - STATE(2228), 2, + STATE(2227), 2, sym_line_comment, sym_block_comment, - [70263] = 11, + [69864] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5037), 1, + ACTIONS(4993), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5111), 1, + ACTIONS(5085), 1, anon_sym_SEMI, - STATE(594), 1, + ACTIONS(5087), 1, + anon_sym_DASH_GT, + STATE(1186), 1, sym_block, - STATE(2468), 1, + STATE(2444), 1, sym_where_clause, - STATE(3633), 1, + STATE(3595), 1, sym_label, - STATE(2229), 2, + STATE(2228), 2, sym_line_comment, sym_block_comment, - [70298] = 11, + [69899] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5083), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(5113), 1, - anon_sym_SEMI, - STATE(1074), 1, - sym_block, - STATE(2453), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(4985), 1, + anon_sym_LT, + STATE(1195), 1, + sym_declaration_list, + STATE(2363), 1, + sym_type_parameters, + STATE(2546), 1, + sym_trait_bounds, + STATE(3160), 1, sym_where_clause, - STATE(3636), 1, - sym_label, + STATE(2229), 2, + sym_line_comment, + sym_block_comment, + [69934] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5041), 1, + sym_identifier, + ACTIONS(5047), 1, + anon_sym_ref, + ACTIONS(5049), 1, + sym_mutable_specifier, + ACTIONS(5089), 1, + anon_sym_RBRACE, + ACTIONS(5091), 1, + anon_sym_COMMA, STATE(2230), 2, sym_line_comment, sym_block_comment, - [70333] = 11, + STATE(2760), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69967] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5037), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5115), 1, + ACTIONS(5093), 1, anon_sym_SEMI, - STATE(498), 1, + STATE(586), 1, sym_block, - STATE(2435), 1, + STATE(2488), 1, sym_where_clause, - STATE(3633), 1, + STATE(3592), 1, sym_label, STATE(2231), 2, sym_line_comment, sym_block_comment, - [70368] = 11, + [70002] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5083), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(5117), 1, + ACTIONS(5095), 1, anon_sym_SEMI, - STATE(1108), 1, + ACTIONS(5097), 1, + anon_sym_DASH_GT, + STATE(747), 1, sym_block, - STATE(2457), 1, + STATE(2435), 1, sym_where_clause, - STATE(3636), 1, + STATE(3592), 1, sym_label, STATE(2232), 2, sym_line_comment, sym_block_comment, - [70403] = 11, + [70037] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5083), 1, - anon_sym_LBRACE, - ACTIONS(5119), 1, - anon_sym_SEMI, - ACTIONS(5121), 1, - anon_sym_DASH_GT, - STATE(1117), 1, - sym_block, - STATE(2458), 1, - sym_where_clause, - STATE(3636), 1, - sym_label, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5041), 1, + sym_identifier, + ACTIONS(5047), 1, + anon_sym_ref, + ACTIONS(5049), 1, + sym_mutable_specifier, + ACTIONS(5099), 1, + anon_sym_RBRACE, + ACTIONS(5101), 1, + anon_sym_COMMA, STATE(2233), 2, sym_line_comment, sym_block_comment, - [70438] = 11, + STATE(2981), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70070] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5083), 1, - anon_sym_LBRACE, - ACTIONS(5123), 1, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(4985), 1, + anon_sym_LT, + ACTIONS(5103), 1, anon_sym_SEMI, - STATE(1147), 1, - sym_block, - STATE(2459), 1, + ACTIONS(5105), 1, + anon_sym_EQ, + STATE(2383), 1, + sym_type_parameters, + STATE(2930), 1, + sym_trait_bounds, + STATE(3426), 1, sym_where_clause, - STATE(3636), 1, - sym_label, STATE(2234), 2, sym_line_comment, sym_block_comment, - [70473] = 11, + [70105] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5083), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(5125), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5107), 1, anon_sym_SEMI, - STATE(1157), 1, + STATE(528), 1, sym_block, - STATE(2460), 1, + STATE(2471), 1, sym_where_clause, - STATE(3636), 1, + STATE(3592), 1, sym_label, STATE(2235), 2, sym_line_comment, sym_block_comment, - [70508] = 11, + [70140] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5083), 1, - anon_sym_LBRACE, - ACTIONS(5127), 1, - anon_sym_SEMI, - STATE(1167), 1, - sym_block, - STATE(2462), 1, - sym_where_clause, - STATE(3636), 1, - sym_label, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(4768), 1, + sym_identifier, + ACTIONS(4774), 1, + sym_crate, + STATE(1382), 1, + sym_attribute_item, + STATE(2206), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3231), 1, + sym_enum_variant, + STATE(3401), 1, + sym_visibility_modifier, STATE(2236), 2, sym_line_comment, sym_block_comment, - [70543] = 11, + [70175] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5129), 1, - anon_sym_SEMI, - ACTIONS(5131), 1, - anon_sym_DASH_GT, - STATE(618), 1, - sym_block, - STATE(2483), 1, - sym_where_clause, - STATE(3633), 1, - sym_label, STATE(2237), 2, sym_line_comment, sym_block_comment, - [70578] = 4, + ACTIONS(4970), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70196] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -170787,4044 +170363,3939 @@ static const uint16_t ts_small_parse_table[] = { STATE(2238), 2, sym_line_comment, sym_block_comment, - ACTIONS(5133), 8, + ACTIONS(4970), 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, - [70599] = 11, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70217] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, + STATE(2239), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4970), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_SQUOTE, - ACTIONS(4936), 1, anon_sym_where, - ACTIONS(5037), 1, + [70238] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5135), 1, - anon_sym_SEMI, - STATE(695), 1, - sym_block, - STATE(2451), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(4985), 1, + anon_sym_LT, + STATE(1094), 1, + sym_declaration_list, + STATE(2371), 1, + sym_type_parameters, + STATE(2500), 1, + sym_trait_bounds, + STATE(3310), 1, sym_where_clause, - STATE(3633), 1, - sym_label, - STATE(2239), 2, + STATE(2240), 2, sym_line_comment, sym_block_comment, - [70634] = 11, + [70273] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5037), 1, + ACTIONS(4993), 1, anon_sym_LBRACE, - ACTIONS(5137), 1, + ACTIONS(5109), 1, anon_sym_SEMI, - ACTIONS(5139), 1, + ACTIONS(5111), 1, anon_sym_DASH_GT, - STATE(607), 1, + STATE(1299), 1, sym_block, - STATE(2465), 1, + STATE(2456), 1, sym_where_clause, - STATE(3633), 1, + STATE(3595), 1, sym_label, - STATE(2240), 2, - sym_line_comment, - sym_block_comment, - [70669] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(4832), 1, - sym_crate, - ACTIONS(4836), 1, - sym_identifier, - STATE(1062), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1448), 1, - sym_attribute_item, - STATE(2864), 1, - sym_field_declaration, - STATE(3609), 1, - sym_visibility_modifier, STATE(2241), 2, sym_line_comment, sym_block_comment, - [70704] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [70308] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(4832), 1, - sym_crate, - ACTIONS(4836), 1, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5041), 1, sym_identifier, - STATE(1062), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1448), 1, - sym_attribute_item, - STATE(3190), 1, - sym_field_declaration, - STATE(3609), 1, - sym_visibility_modifier, + ACTIONS(5047), 1, + anon_sym_ref, + ACTIONS(5049), 1, + sym_mutable_specifier, + ACTIONS(5113), 1, + anon_sym_RBRACE, STATE(2242), 2, sym_line_comment, sym_block_comment, - [70739] = 10, + STATE(3244), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70338] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(4513), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, - anon_sym_LPAREN, - ACTIONS(4519), 1, - anon_sym_COLON, - ACTIONS(4523), 1, + ACTIONS(4810), 1, anon_sym_DOT_DOT, - ACTIONS(5141), 1, + ACTIONS(4814), 1, anon_sym_COLON_COLON, - ACTIONS(4525), 2, + ACTIONS(4812), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(2243), 2, sym_line_comment, sym_block_comment, - [70772] = 4, + ACTIONS(4507), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [70364] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, + anon_sym_LBRACE, + ACTIONS(5121), 1, + anon_sym_RBRACE, + STATE(2142), 1, + aux_sym_macro_definition_repeat1, + STATE(3051), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2244), 2, sym_line_comment, sym_block_comment, - ACTIONS(5030), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70793] = 4, + [70396] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACE, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5125), 1, + anon_sym_STAR, + STATE(2757), 1, + sym_use_list, + STATE(3561), 1, + sym_type_arguments, + ACTIONS(5123), 2, + sym_identifier, + sym_super, STATE(2245), 2, sym_line_comment, sym_block_comment, - ACTIONS(5030), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70814] = 4, + [70426] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_RPAREN, + STATE(2259), 1, + aux_sym_macro_definition_repeat1, + STATE(3219), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2246), 2, sym_line_comment, sym_block_comment, - ACTIONS(5030), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70835] = 4, + [70458] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, + anon_sym_LBRACE, + ACTIONS(5127), 1, + anon_sym_RBRACK, + STATE(2260), 1, + aux_sym_macro_definition_repeat1, + STATE(3221), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2247), 2, sym_line_comment, sym_block_comment, - ACTIONS(5030), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70856] = 4, + [70490] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, + anon_sym_LBRACE, + ACTIONS(5129), 1, + anon_sym_RPAREN, + STATE(2261), 1, + aux_sym_macro_definition_repeat1, + STATE(3222), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2248), 2, sym_line_comment, sym_block_comment, - ACTIONS(5030), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70877] = 10, + [70522] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5063), 1, - sym_identifier, - ACTIONS(5069), 1, - anon_sym_ref, - ACTIONS(5071), 1, - sym_mutable_specifier, - ACTIONS(5143), 1, - anon_sym_RBRACE, - ACTIONS(5145), 1, - anon_sym_COMMA, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, + anon_sym_LBRACE, + ACTIONS(5129), 1, + anon_sym_RBRACK, + STATE(2262), 1, + aux_sym_macro_definition_repeat1, + STATE(3223), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2249), 2, sym_line_comment, sym_block_comment, - STATE(3061), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70910] = 8, + [70554] = 10, 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(2223), 1, - aux_sym_function_modifiers_repeat1, - STATE(2365), 1, - sym_extern_modifier, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, + anon_sym_LBRACE, + ACTIONS(5131), 1, + anon_sym_RBRACE, + STATE(2142), 1, + aux_sym_macro_definition_repeat1, + STATE(3054), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2250), 2, sym_line_comment, sym_block_comment, - ACTIONS(4541), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [70939] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [70586] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(4826), 1, - sym_identifier, - ACTIONS(4832), 1, - sym_crate, - STATE(1062), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1448), 1, - sym_attribute_item, - STATE(2912), 1, - sym_enum_variant, - STATE(3483), 1, - sym_visibility_modifier, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_LBRACE, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5133), 1, + anon_sym_SEMI, + STATE(608), 1, + sym_field_declaration_list, + STATE(2915), 1, + sym_ordered_field_declaration_list, + STATE(3115), 1, + sym_where_clause, STATE(2251), 2, sym_line_comment, sym_block_comment, - [70974] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [70618] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(4832), 1, - sym_crate, - ACTIONS(4836), 1, - sym_identifier, - STATE(1062), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1448), 1, - sym_attribute_item, - STATE(2937), 1, - sym_field_declaration, - STATE(3609), 1, - sym_visibility_modifier, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5137), 1, + anon_sym_LBRACK, + ACTIONS(5139), 1, + anon_sym_RBRACK, + ACTIONS(5141), 1, + anon_sym_LBRACE, + ACTIONS(5143), 1, + anon_sym_EQ, + STATE(3598), 1, + sym_delim_token_tree, STATE(2252), 2, sym_line_comment, sym_block_comment, - [71009] = 6, + [70650] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1317), 1, - aux_sym_string_literal_token1, - STATE(2238), 1, - sym_string_literal, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5137), 1, + anon_sym_LBRACK, + ACTIONS(5141), 1, + anon_sym_LBRACE, + ACTIONS(5145), 1, + anon_sym_RBRACK, + ACTIONS(5147), 1, + anon_sym_EQ, + STATE(3607), 1, + sym_delim_token_tree, STATE(2253), 2, sym_line_comment, sym_block_comment, - ACTIONS(4778), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71034] = 10, + [70682] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5063), 1, - sym_identifier, - ACTIONS(5069), 1, - anon_sym_ref, - ACTIONS(5071), 1, - sym_mutable_specifier, - ACTIONS(5151), 1, - anon_sym_RBRACE, - ACTIONS(5153), 1, - anon_sym_COMMA, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, + anon_sym_LBRACE, + ACTIONS(5149), 1, + anon_sym_RPAREN, + STATE(2296), 1, + aux_sym_macro_definition_repeat1, + STATE(3075), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2254), 2, sym_line_comment, sym_block_comment, - STATE(2810), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71067] = 11, + [70714] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5037), 1, + ACTIONS(4614), 1, + anon_sym_COLON_COLON, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5137), 1, + anon_sym_LBRACK, + ACTIONS(5141), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5155), 1, - anon_sym_SEMI, - STATE(535), 1, - sym_block, - STATE(2439), 1, - sym_where_clause, - STATE(3633), 1, - sym_label, + ACTIONS(5145), 1, + anon_sym_RBRACK, + ACTIONS(5147), 1, + anon_sym_EQ, + STATE(3607), 1, + sym_delim_token_tree, STATE(2255), 2, sym_line_comment, sym_block_comment, - [71102] = 11, + [70746] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5037), 1, + ACTIONS(4702), 1, + anon_sym_COLON_COLON, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5137), 1, + anon_sym_LBRACK, + ACTIONS(5141), 1, anon_sym_LBRACE, - ACTIONS(5157), 1, - anon_sym_SEMI, - ACTIONS(5159), 1, - anon_sym_DASH_GT, - STATE(544), 1, - sym_block, - STATE(2475), 1, - sym_where_clause, - STATE(3633), 1, - sym_label, + ACTIONS(5145), 1, + anon_sym_RBRACK, + ACTIONS(5147), 1, + anon_sym_EQ, + STATE(3607), 1, + sym_delim_token_tree, STATE(2256), 2, sym_line_comment, sym_block_comment, - [71137] = 11, + [70778] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5083), 1, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, anon_sym_LBRACE, - ACTIONS(5161), 1, - anon_sym_SEMI, - ACTIONS(5163), 1, - anon_sym_DASH_GT, - STATE(1353), 1, - sym_block, - STATE(2448), 1, - sym_where_clause, - STATE(3636), 1, - sym_label, + ACTIONS(5151), 1, + anon_sym_RBRACE, + STATE(2244), 1, + aux_sym_macro_definition_repeat1, + STATE(3070), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2257), 2, sym_line_comment, sym_block_comment, - [71172] = 9, + [70810] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5063), 1, - sym_identifier, - ACTIONS(5069), 1, - anon_sym_ref, - ACTIONS(5071), 1, - sym_mutable_specifier, - ACTIONS(5165), 1, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, + anon_sym_LBRACE, + ACTIONS(5153), 1, anon_sym_RBRACE, + STATE(2250), 1, + aux_sym_macro_definition_repeat1, + STATE(3082), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2258), 2, sym_line_comment, sym_block_comment, - STATE(3160), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71202] = 10, + [70842] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4968), 1, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, anon_sym_LBRACE, - ACTIONS(5167), 1, - anon_sym_SEMI, - STATE(669), 1, - sym_field_declaration_list, - STATE(2915), 1, - sym_ordered_field_declaration_list, - STATE(3229), 1, - sym_where_clause, + ACTIONS(5155), 1, + anon_sym_RPAREN, + STATE(2142), 1, + aux_sym_macro_definition_repeat1, + STATE(3235), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2259), 2, sym_line_comment, sym_block_comment, - [71234] = 9, + [70874] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5063), 1, - sym_identifier, - ACTIONS(5069), 1, - anon_sym_ref, - ACTIONS(5071), 1, - sym_mutable_specifier, - ACTIONS(5169), 1, - anon_sym_RBRACE, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, + anon_sym_LBRACE, + ACTIONS(5155), 1, + anon_sym_RBRACK, + STATE(2142), 1, + aux_sym_macro_definition_repeat1, + STATE(3236), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2260), 2, sym_line_comment, sym_block_comment, - STATE(3160), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71264] = 9, + [70906] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5063), 1, - sym_identifier, - ACTIONS(5069), 1, - anon_sym_ref, - ACTIONS(5071), 1, - sym_mutable_specifier, - ACTIONS(5171), 1, - anon_sym_RBRACE, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, + anon_sym_LBRACE, + ACTIONS(5157), 1, + anon_sym_RPAREN, + STATE(2142), 1, + aux_sym_macro_definition_repeat1, + STATE(3237), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2261), 2, sym_line_comment, sym_block_comment, - STATE(3160), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71294] = 5, + [70938] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5173), 1, - sym_identifier, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, + anon_sym_LBRACE, + ACTIONS(5157), 1, + anon_sym_RBRACK, + STATE(2142), 1, + aux_sym_macro_definition_repeat1, + STATE(3238), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2262), 2, sym_line_comment, sym_block_comment, - ACTIONS(4748), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71316] = 10, + [70970] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, - anon_sym_LBRACE, - ACTIONS(5181), 1, - anon_sym_RBRACE, - STATE(2195), 1, - aux_sym_macro_definition_repeat1, - STATE(3226), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5161), 1, + anon_sym_COLON, + ACTIONS(5163), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5159), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2263), 2, sym_line_comment, sym_block_comment, - [71348] = 10, + [70998] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, - anon_sym_LBRACE, - ACTIONS(5183), 1, - anon_sym_RBRACE, - STATE(2195), 1, - aux_sym_macro_definition_repeat1, - STATE(3227), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5163), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2264), 2, sym_line_comment, sym_block_comment, - [71380] = 10, + ACTIONS(3327), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [71024] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4762), 1, - anon_sym_COLON_COLON, - ACTIONS(5185), 1, - anon_sym_LPAREN, - ACTIONS(5187), 1, - anon_sym_LBRACK, - ACTIONS(5189), 1, - anon_sym_RBRACK, - ACTIONS(5191), 1, + ACTIONS(4161), 1, anon_sym_LBRACE, - ACTIONS(5193), 1, - anon_sym_EQ, - STATE(3582), 1, - sym_delim_token_tree, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5125), 1, + anon_sym_STAR, + STATE(2757), 1, + sym_use_list, + STATE(3512), 1, + sym_type_arguments, + ACTIONS(5123), 2, + sym_identifier, + sym_super, STATE(2265), 2, sym_line_comment, sym_block_comment, - [71412] = 10, + [71054] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(4932), 1, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, anon_sym_LBRACE, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5195), 1, - anon_sym_SEMI, - STATE(1295), 1, - sym_field_declaration_list, - STATE(2945), 1, - sym_ordered_field_declaration_list, - STATE(3277), 1, - sym_where_clause, + ACTIONS(5165), 1, + anon_sym_RBRACK, + STATE(2142), 1, + aux_sym_macro_definition_repeat1, + STATE(3289), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2266), 2, sym_line_comment, sym_block_comment, - [71444] = 9, + [71086] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(1519), 1, anon_sym_DOT_DOT, - ACTIONS(5063), 1, + ACTIONS(5041), 1, sym_identifier, - ACTIONS(5069), 1, + ACTIONS(5047), 1, anon_sym_ref, - ACTIONS(5071), 1, + ACTIONS(5049), 1, sym_mutable_specifier, - ACTIONS(5197), 1, + ACTIONS(5167), 1, anon_sym_RBRACE, STATE(2267), 2, sym_line_comment, sym_block_comment, - STATE(3160), 2, + STATE(3244), 2, sym_field_pattern, sym_remaining_field_pattern, - [71474] = 9, + [71116] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5063), 1, - sym_identifier, - ACTIONS(5069), 1, - anon_sym_ref, - ACTIONS(5071), 1, - sym_mutable_specifier, - ACTIONS(5199), 1, - anon_sym_RBRACE, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4885), 1, + anon_sym_LBRACE, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5169), 1, + anon_sym_SEMI, + STATE(699), 1, + sym_field_declaration_list, + STATE(2763), 1, + sym_ordered_field_declaration_list, + STATE(3212), 1, + sym_where_clause, STATE(2268), 2, sym_line_comment, sym_block_comment, - STATE(3160), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71504] = 8, + [71148] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_LPAREN, - ACTIONS(4932), 1, - anon_sym_LBRACE, - ACTIONS(5203), 1, - anon_sym_EQ, - ACTIONS(5201), 2, - anon_sym_RBRACE, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5161), 1, + anon_sym_COLON, + ACTIONS(5171), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5159), 2, + anon_sym_RPAREN, anon_sym_COMMA, STATE(2269), 2, sym_line_comment, sym_block_comment, - STATE(3072), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [71532] = 9, + [71176] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(1519), 1, anon_sym_DOT_DOT, - ACTIONS(5063), 1, + ACTIONS(5041), 1, sym_identifier, - ACTIONS(5069), 1, + ACTIONS(5047), 1, anon_sym_ref, - ACTIONS(5071), 1, + ACTIONS(5049), 1, sym_mutable_specifier, - ACTIONS(5205), 1, + ACTIONS(5173), 1, anon_sym_RBRACE, STATE(2270), 2, sym_line_comment, sym_block_comment, - STATE(3160), 2, + STATE(3244), 2, sym_field_pattern, sym_remaining_field_pattern, - [71562] = 10, + [71206] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4754), 1, - anon_sym_COLON_COLON, - ACTIONS(5185), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5187), 1, + ACTIONS(5117), 1, anon_sym_LBRACK, - ACTIONS(5191), 1, + ACTIONS(5119), 1, anon_sym_LBRACE, - ACTIONS(5207), 1, - anon_sym_RBRACK, - ACTIONS(5209), 1, - anon_sym_EQ, - STATE(3480), 1, - sym_delim_token_tree, + ACTIONS(5175), 1, + anon_sym_RBRACE, + STATE(2294), 1, + aux_sym_macro_definition_repeat1, + STATE(3049), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2271), 2, sym_line_comment, sym_block_comment, - [71594] = 8, + [71238] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_LPAREN, - ACTIONS(4932), 1, - anon_sym_LBRACE, - ACTIONS(5213), 1, - anon_sym_EQ, - ACTIONS(5211), 2, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5041), 1, + sym_identifier, + ACTIONS(5047), 1, + anon_sym_ref, + ACTIONS(5049), 1, + sym_mutable_specifier, + ACTIONS(5177), 1, anon_sym_RBRACE, - anon_sym_COMMA, STATE(2272), 2, sym_line_comment, sym_block_comment, - STATE(2962), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [71622] = 9, + STATE(3244), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71268] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4930), 1, anon_sym_LBRACE, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5217), 1, - anon_sym_STAR, - STATE(2995), 1, - sym_use_list, - STATE(3641), 1, - sym_type_arguments, - ACTIONS(5215), 2, - sym_identifier, - sym_super, + ACTIONS(5181), 1, + anon_sym_EQ, + ACTIONS(5179), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2273), 2, sym_line_comment, sym_block_comment, - [71652] = 9, + STATE(2853), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [71296] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4147), 1, - anon_sym_LBRACE, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5217), 1, - anon_sym_STAR, - STATE(2995), 1, - sym_use_list, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(5215), 2, - sym_identifier, - sym_super, + anon_sym_SLASH_STAR, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5171), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2274), 2, sym_line_comment, sym_block_comment, - [71682] = 10, + ACTIONS(3327), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [71322] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5117), 1, anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(5119), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, - anon_sym_RPAREN, - STATE(2302), 1, + ACTIONS(5183), 1, + anon_sym_RBRACK, + STATE(2290), 1, aux_sym_macro_definition_repeat1, - STATE(3230), 1, + STATE(3044), 1, sym_macro_rule, - STATE(3372), 1, + STATE(3482), 1, sym_token_tree_pattern, STATE(2275), 2, sym_line_comment, sym_block_comment, - [71714] = 10, + [71354] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, - anon_sym_LBRACE, - ACTIONS(5219), 1, - anon_sym_RBRACK, - STATE(2304), 1, - aux_sym_macro_definition_repeat1, - STATE(3233), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + ACTIONS(5185), 1, + anon_sym_trait, STATE(2276), 2, sym_line_comment, sym_block_comment, - [71746] = 10, + ACTIONS(3384), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71376] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, - anon_sym_LBRACE, - ACTIONS(5221), 1, - anon_sym_RBRACE, - STATE(2306), 1, - aux_sym_macro_definition_repeat1, - STATE(3244), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + ACTIONS(5187), 1, + sym_identifier, STATE(2277), 2, sym_line_comment, sym_block_comment, - [71778] = 10, - ACTIONS(103), 1, + ACTIONS(4720), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71398] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, - anon_sym_LBRACE, - ACTIONS(5223), 1, - anon_sym_RPAREN, - STATE(2308), 1, - aux_sym_macro_definition_repeat1, - STATE(3247), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + ACTIONS(5189), 1, + aux_sym_line_comment_token1, + ACTIONS(5191), 1, + aux_sym_line_comment_token3, + ACTIONS(5193), 1, + anon_sym_BANG2, + ACTIONS(5195), 1, + anon_sym_SLASH2, + STATE(3405), 1, + sym__line_doc_comment_marker, + STATE(3432), 1, + sym__outer_line_doc_comment_marker, + STATE(3466), 1, + sym__inner_line_doc_comment_marker, STATE(2278), 2, sym_line_comment, sym_block_comment, - [71810] = 10, + [71430] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5117), 1, anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(5119), 1, anon_sym_LBRACE, - ACTIONS(5223), 1, - anon_sym_RBRACK, - STATE(2310), 1, + ACTIONS(5197), 1, + anon_sym_RBRACE, + STATE(2142), 1, aux_sym_macro_definition_repeat1, - STATE(3259), 1, + STATE(3291), 1, sym_macro_rule, - STATE(3372), 1, + STATE(3482), 1, sym_token_tree_pattern, STATE(2279), 2, sym_line_comment, sym_block_comment, - [71842] = 10, + [71462] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4930), 1, anon_sym_LBRACE, - ACTIONS(5225), 1, - anon_sym_RBRACE, - STATE(2311), 1, - aux_sym_macro_definition_repeat1, - STATE(3267), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + ACTIONS(5199), 1, + anon_sym_SEMI, + STATE(1192), 1, + sym_field_declaration_list, + STATE(2827), 1, + sym_ordered_field_declaration_list, + STATE(3158), 1, + sym_where_clause, STATE(2280), 2, sym_line_comment, sym_block_comment, - [71874] = 7, + [71494] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4846), 1, + ACTIONS(1519), 1, anon_sym_DOT_DOT, - ACTIONS(4850), 1, - anon_sym_COLON_COLON, - ACTIONS(4848), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5041), 1, + sym_identifier, + ACTIONS(5047), 1, + anon_sym_ref, + ACTIONS(5049), 1, + sym_mutable_specifier, + ACTIONS(5201), 1, + anon_sym_RBRACE, STATE(2281), 2, sym_line_comment, sym_block_comment, - ACTIONS(4529), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [71900] = 8, + STATE(3244), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71524] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(5229), 1, - anon_sym_COLON, - ACTIONS(5231), 1, - anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5227), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5115), 1, + anon_sym_LPAREN, + ACTIONS(5117), 1, + anon_sym_LBRACK, + ACTIONS(5119), 1, + anon_sym_LBRACE, + ACTIONS(5203), 1, + anon_sym_RBRACE, + STATE(2279), 1, + aux_sym_macro_definition_repeat1, + STATE(3092), 1, + sym_macro_rule, + STATE(3482), 1, + sym_token_tree_pattern, STATE(2282), 2, sym_line_comment, sym_block_comment, - [71928] = 9, + [71556] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(1519), 1, anon_sym_DOT_DOT, - ACTIONS(5063), 1, + ACTIONS(5041), 1, sym_identifier, - ACTIONS(5069), 1, + ACTIONS(5047), 1, anon_sym_ref, - ACTIONS(5071), 1, + ACTIONS(5049), 1, sym_mutable_specifier, - ACTIONS(5233), 1, + ACTIONS(5205), 1, anon_sym_RBRACE, STATE(2283), 2, sym_line_comment, sym_block_comment, - STATE(3160), 2, + STATE(3244), 2, sym_field_pattern, sym_remaining_field_pattern, - [71958] = 7, + [71586] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, + ACTIONS(4499), 1, anon_sym_DOT_DOT, - ACTIONS(5231), 1, + ACTIONS(5207), 1, anon_sym_COLON_COLON, - ACTIONS(4525), 2, + ACTIONS(4501), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(2284), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 3, - anon_sym_RPAREN, + ACTIONS(3327), 3, + anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_PLUS, - anon_sym_COMMA, - [71984] = 10, - ACTIONS(3), 1, + [71612] = 9, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 1, - aux_sym_line_comment_token1, - ACTIONS(5237), 1, - aux_sym_line_comment_token3, - ACTIONS(5239), 1, - anon_sym_BANG2, - ACTIONS(5241), 1, - anon_sym_SLASH2, - STATE(3358), 1, - sym__outer_line_doc_comment_marker, - STATE(3414), 1, - sym__line_doc_comment_marker, - STATE(3493), 1, - sym__inner_line_doc_comment_marker, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5041), 1, + sym_identifier, + ACTIONS(5047), 1, + anon_sym_ref, + ACTIONS(5049), 1, + sym_mutable_specifier, + ACTIONS(5209), 1, + anon_sym_RBRACE, STATE(2285), 2, sym_line_comment, sym_block_comment, - [72016] = 5, + STATE(3244), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71642] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5243), 1, + ACTIONS(5211), 1, sym_identifier, STATE(2286), 2, sym_line_comment, sym_block_comment, - ACTIONS(4748), 6, + ACTIONS(4720), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [72038] = 10, + [71664] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5117), 1, anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(5119), 1, anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_RBRACK, - STATE(2294), 1, + ACTIONS(5213), 1, + anon_sym_RPAREN, + STATE(2142), 1, aux_sym_macro_definition_repeat1, - STATE(3263), 1, + STATE(3264), 1, sym_macro_rule, - STATE(3372), 1, + STATE(3482), 1, sym_token_tree_pattern, STATE(2287), 2, sym_line_comment, sym_block_comment, - [72070] = 10, + [71696] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, - anon_sym_LBRACE, - ACTIONS(5247), 1, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5217), 1, + anon_sym_COLON, + ACTIONS(5219), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5215), 2, anon_sym_RPAREN, - STATE(2295), 1, - aux_sym_macro_definition_repeat1, - STATE(3264), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + anon_sym_COMMA, STATE(2288), 2, sym_line_comment, sym_block_comment, - [72102] = 10, + [71724] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, - anon_sym_LBRACE, - ACTIONS(5247), 1, - anon_sym_RBRACK, - STATE(2296), 1, - aux_sym_macro_definition_repeat1, - STATE(3265), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + ACTIONS(5221), 1, + sym_identifier, STATE(2289), 2, sym_line_comment, sym_block_comment, - [72134] = 10, + ACTIONS(4720), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71746] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5117), 1, anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(5119), 1, anon_sym_LBRACE, - ACTIONS(5249), 1, - anon_sym_RBRACE, - STATE(2263), 1, + ACTIONS(5213), 1, + anon_sym_RBRACK, + STATE(2142), 1, aux_sym_macro_definition_repeat1, - STATE(3120), 1, + STATE(3266), 1, sym_macro_rule, - STATE(3372), 1, + STATE(3482), 1, sym_token_tree_pattern, STATE(2290), 2, sym_line_comment, sym_block_comment, - [72166] = 10, + [71778] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5117), 1, anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(5119), 1, anon_sym_LBRACE, - ACTIONS(5251), 1, - anon_sym_RBRACE, - STATE(2264), 1, + ACTIONS(5149), 1, + anon_sym_RBRACK, + STATE(2266), 1, aux_sym_macro_definition_repeat1, - STATE(3121), 1, + STATE(3081), 1, sym_macro_rule, - STATE(3372), 1, + STATE(3482), 1, sym_token_tree_pattern, STATE(2291), 2, sym_line_comment, sym_block_comment, - [72198] = 10, + [71810] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4760), 1, - anon_sym_COLON_COLON, - ACTIONS(5185), 1, - anon_sym_LPAREN, - ACTIONS(5187), 1, - anon_sym_LBRACK, - ACTIONS(5189), 1, - anon_sym_RBRACK, - ACTIONS(5191), 1, - anon_sym_LBRACE, - ACTIONS(5193), 1, - anon_sym_EQ, - STATE(3582), 1, - sym_delim_token_tree, + ACTIONS(5223), 1, + anon_sym_trait, STATE(2292), 2, sym_line_comment, sym_block_comment, - [72230] = 10, + ACTIONS(3384), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71832] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5117), 1, anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(5119), 1, anon_sym_LBRACE, - ACTIONS(5253), 1, + ACTIONS(5183), 1, anon_sym_RPAREN, - STATE(2195), 1, + STATE(2287), 1, aux_sym_macro_definition_repeat1, - STATE(3278), 1, + STATE(3034), 1, sym_macro_rule, - STATE(3372), 1, + STATE(3482), 1, sym_token_tree_pattern, STATE(2293), 2, sym_line_comment, sym_block_comment, - [72262] = 10, + [71864] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5117), 1, anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(5119), 1, anon_sym_LBRACE, - ACTIONS(5253), 1, - anon_sym_RBRACK, - STATE(2195), 1, + ACTIONS(5225), 1, + anon_sym_RBRACE, + STATE(2142), 1, aux_sym_macro_definition_repeat1, - STATE(3279), 1, + STATE(3268), 1, sym_macro_rule, - STATE(3372), 1, + STATE(3482), 1, sym_token_tree_pattern, STATE(2294), 2, sym_line_comment, sym_block_comment, - [72294] = 10, + [71896] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, - anon_sym_LBRACE, - ACTIONS(5255), 1, - anon_sym_RPAREN, - STATE(2195), 1, - aux_sym_macro_definition_repeat1, - STATE(3280), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + ACTIONS(5227), 1, + sym_identifier, STATE(2295), 2, sym_line_comment, sym_block_comment, - [72326] = 10, + ACTIONS(4720), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71918] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, + ACTIONS(5115), 1, anon_sym_LPAREN, - ACTIONS(5177), 1, + ACTIONS(5117), 1, anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(5119), 1, anon_sym_LBRACE, - ACTIONS(5255), 1, - anon_sym_RBRACK, - STATE(2195), 1, + ACTIONS(5165), 1, + anon_sym_RPAREN, + STATE(2142), 1, aux_sym_macro_definition_repeat1, - STATE(3281), 1, + STATE(3285), 1, sym_macro_rule, - STATE(3372), 1, + STATE(3482), 1, sym_token_tree_pattern, STATE(2296), 2, sym_line_comment, sym_block_comment, - [72358] = 8, + [71950] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, + ACTIONS(4883), 1, + anon_sym_LPAREN, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4930), 1, + anon_sym_LBRACE, ACTIONS(5229), 1, - anon_sym_COLON, - ACTIONS(5257), 1, - anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5227), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_SEMI, + STATE(1121), 1, + sym_field_declaration_list, + STATE(2780), 1, + sym_ordered_field_declaration_list, + STATE(3203), 1, + sym_where_clause, STATE(2297), 2, sym_line_comment, sym_block_comment, - [72386] = 7, + [71982] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, + ACTIONS(1519), 1, anon_sym_DOT_DOT, - ACTIONS(5257), 1, - anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5041), 1, + sym_identifier, + ACTIONS(5047), 1, + anon_sym_ref, + ACTIONS(5049), 1, + sym_mutable_specifier, + ACTIONS(5231), 1, + anon_sym_RBRACE, STATE(2298), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [72412] = 10, + STATE(3244), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [72012] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_COLON_COLON, - ACTIONS(5185), 1, + ACTIONS(4883), 1, anon_sym_LPAREN, - ACTIONS(5187), 1, - anon_sym_LBRACK, - ACTIONS(5189), 1, - anon_sym_RBRACK, - ACTIONS(5191), 1, + ACTIONS(4930), 1, anon_sym_LBRACE, - ACTIONS(5193), 1, + ACTIONS(5235), 1, anon_sym_EQ, - STATE(3582), 1, - sym_delim_token_tree, + ACTIONS(5233), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2299), 2, sym_line_comment, sym_block_comment, - [72444] = 8, + STATE(2958), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [72040] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(5261), 1, - anon_sym_COLON, - ACTIONS(5263), 1, - anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5259), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5237), 1, + anon_sym_SEMI, + STATE(1158), 1, + sym_declaration_list, + STATE(2814), 1, + sym_where_clause, STATE(2300), 2, sym_line_comment, sym_block_comment, - [72472] = 5, + [72069] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5265), 1, - sym_identifier, + ACTIONS(3099), 1, + anon_sym_PLUS, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(5239), 1, + anon_sym_GT, + ACTIONS(5241), 1, + anon_sym_COMMA, + STATE(2794), 1, + sym_trait_bounds, + STATE(2795), 1, + aux_sym_type_arguments_repeat1, STATE(2301), 2, sym_line_comment, sym_block_comment, - ACTIONS(4748), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72494] = 10, + [72098] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - anon_sym_RPAREN, - STATE(2195), 1, - aux_sym_macro_definition_repeat1, - STATE(3126), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5243), 1, + anon_sym_SEMI, + STATE(520), 1, + sym_declaration_list, + STATE(2911), 1, + sym_where_clause, STATE(2302), 2, sym_line_comment, sym_block_comment, - [72526] = 9, + [72127] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5063), 1, - sym_identifier, - ACTIONS(5069), 1, - anon_sym_ref, - ACTIONS(5071), 1, - sym_mutable_specifier, - ACTIONS(5269), 1, - anon_sym_RBRACE, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5245), 1, + anon_sym_SEMI, + STATE(1279), 1, + sym_declaration_list, + STATE(2858), 1, + sym_where_clause, STATE(2303), 2, sym_line_comment, sym_block_comment, - STATE(3160), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72556] = 10, + [72156] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5267), 1, - anon_sym_RBRACK, - STATE(2195), 1, - aux_sym_macro_definition_repeat1, - STATE(3153), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5247), 1, + anon_sym_SEMI, + STATE(559), 1, + sym_declaration_list, + STATE(2959), 1, + sym_where_clause, STATE(2304), 2, sym_line_comment, sym_block_comment, - [72588] = 5, + [72185] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5271), 1, - sym_identifier, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5249), 1, + anon_sym_if, + STATE(3597), 1, + sym_label, + STATE(1696), 2, + sym_if_expression, + sym_block, STATE(2305), 2, sym_line_comment, sym_block_comment, - ACTIONS(4748), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72610] = 10, + [72212] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5273), 1, - anon_sym_RBRACE, - STATE(2195), 1, - aux_sym_macro_definition_repeat1, - STATE(3202), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5251), 1, + anon_sym_SEMI, + STATE(492), 1, + sym_declaration_list, + STATE(2920), 1, + sym_where_clause, STATE(2306), 2, sym_line_comment, sym_block_comment, - [72642] = 7, + [72241] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(5275), 1, + ACTIONS(4580), 1, anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4979), 1, + anon_sym_for, STATE(2307), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 3, + ACTIONS(3327), 4, anon_sym_SEMI, - anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_PLUS, - [72668] = 10, + anon_sym_where, + [72264] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(4887), 1, + anon_sym_LT, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5277), 1, - anon_sym_RPAREN, - STATE(2195), 1, - aux_sym_macro_definition_repeat1, - STATE(3288), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + STATE(1135), 1, + sym_enum_variant_list, + STATE(2523), 1, + sym_type_parameters, + STATE(3265), 1, + sym_where_clause, STATE(2308), 2, sym_line_comment, sym_block_comment, - [72700] = 10, + [72293] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_LPAREN, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4968), 1, - anon_sym_LBRACE, - ACTIONS(5279), 1, - anon_sym_SEMI, - STATE(663), 1, - sym_field_declaration_list, - STATE(3047), 1, - sym_ordered_field_declaration_list, - STATE(3338), 1, - sym_where_clause, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5163), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5215), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2309), 2, sym_line_comment, sym_block_comment, - [72732] = 10, + [72318] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(5277), 1, - anon_sym_RBRACK, - STATE(2195), 1, - aux_sym_macro_definition_repeat1, - STATE(3302), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5255), 1, + anon_sym_SEMI, + STATE(1088), 1, + sym_declaration_list, + STATE(3018), 1, + sym_where_clause, STATE(2310), 2, sym_line_comment, sym_block_comment, - [72764] = 10, + [72347] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, - anon_sym_LBRACE, - ACTIONS(5281), 1, - anon_sym_RBRACE, - STATE(2195), 1, - aux_sym_macro_definition_repeat1, - STATE(3341), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(5257), 1, + anon_sym_PLUS, + ACTIONS(5259), 1, + anon_sym_GT, + ACTIONS(5261), 1, + anon_sym_COMMA, + STATE(2925), 1, + sym_trait_bounds, + STATE(2926), 1, + aux_sym_type_arguments_repeat1, STATE(2311), 2, sym_line_comment, sym_block_comment, - [72796] = 5, + [72376] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5283), 1, - anon_sym_trait, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4983), 1, + anon_sym_COLON, + STATE(689), 1, + sym_declaration_list, + STATE(2734), 1, + sym_trait_bounds, + STATE(3311), 1, + sym_where_clause, STATE(2312), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72818] = 5, + [72405] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5285), 1, - anon_sym_trait, + ACTIONS(4887), 1, + anon_sym_LT, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4930), 1, + anon_sym_LBRACE, + STATE(1096), 1, + sym_field_declaration_list, + STATE(2501), 1, + sym_type_parameters, + STATE(3083), 1, + sym_where_clause, STATE(2313), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72840] = 10, + [72434] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4930), 1, - anon_sym_LPAREN, - ACTIONS(4932), 1, - anon_sym_LBRACE, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5287), 1, - anon_sym_SEMI, - STATE(1206), 1, - sym_field_declaration_list, - STATE(2853), 1, - sym_ordered_field_declaration_list, - STATE(3166), 1, - sym_where_clause, + ACTIONS(1013), 1, + anon_sym_DOT_DOT, STATE(2314), 2, sym_line_comment, sym_block_comment, - [72872] = 10, + ACTIONS(1015), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72455] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5175), 1, - anon_sym_LPAREN, - ACTIONS(5177), 1, - anon_sym_LBRACK, - ACTIONS(5179), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_RPAREN, - STATE(2293), 1, - aux_sym_macro_definition_repeat1, - STATE(3262), 1, - sym_macro_rule, - STATE(3372), 1, - sym_token_tree_pattern, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5263), 1, + anon_sym_SEMI, + STATE(655), 1, + sym_declaration_list, + STATE(2980), 1, + sym_where_clause, STATE(2315), 2, sym_line_comment, sym_block_comment, - [72904] = 9, + [72484] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3099), 1, - anon_sym_PLUS, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5289), 1, - anon_sym_GT, - ACTIONS(5291), 1, - anon_sym_COMMA, - STATE(2866), 1, - sym_trait_bounds, - STATE(2867), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(1019), 1, + anon_sym_DOT_DOT, STATE(2316), 2, sym_line_comment, sym_block_comment, - [72933] = 9, + ACTIONS(1021), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72505] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5045), 1, - anon_sym_COLON, - STATE(757), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5265), 1, + anon_sym_SEMI, + STATE(720), 1, sym_declaration_list, - STATE(2751), 1, - sym_trait_bounds, - STATE(3296), 1, + STATE(2874), 1, sym_where_clause, STATE(2317), 2, sym_line_comment, sym_block_comment, - [72962] = 8, + [72534] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5063), 1, - sym_identifier, - ACTIONS(5069), 1, - anon_sym_ref, - ACTIONS(5071), 1, - sym_mutable_specifier, + ACTIONS(3533), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4788), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5267), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2318), 2, sym_line_comment, sym_block_comment, - STATE(3160), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72989] = 9, + [72557] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4934), 1, - anon_sym_LT, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4968), 1, - anon_sym_LBRACE, - STATE(496), 1, - sym_field_declaration_list, - STATE(2742), 1, - sym_type_parameters, - STATE(3321), 1, - sym_where_clause, + ACTIONS(975), 1, + anon_sym_DOT_DOT, STATE(2319), 2, sym_line_comment, sym_block_comment, - [73018] = 9, + ACTIONS(977), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72578] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5293), 1, - anon_sym_SEMI, - STATE(1139), 1, - sym_declaration_list, - STATE(3036), 1, - sym_where_clause, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5270), 1, + anon_sym_if, + STATE(3522), 1, + sym_label, + STATE(402), 2, + sym_if_expression, + sym_block, STATE(2320), 2, sym_line_comment, sym_block_comment, - [73047] = 9, + [72605] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5295), 1, + ACTIONS(5272), 1, anon_sym_SEMI, - STATE(1141), 1, + STATE(1131), 1, sym_declaration_list, - STATE(3037), 1, + STATE(2782), 1, sym_where_clause, STATE(2321), 2, sym_line_comment, sym_block_comment, - [73076] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_EQ, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5297), 1, - anon_sym_GT, - ACTIONS(5299), 1, - anon_sym_COMMA, - STATE(2794), 1, - sym_trait_bounds, - STATE(2833), 1, - aux_sym_type_parameters_repeat1, - STATE(2322), 2, - sym_line_comment, - sym_block_comment, - [73105] = 9, + [72634] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5301), 1, + ACTIONS(5274), 1, anon_sym_SEMI, - STATE(565), 1, + STATE(1281), 1, sym_declaration_list, - STATE(2883), 1, + STATE(2859), 1, sym_where_clause, - STATE(2323), 2, + STATE(2322), 2, sym_line_comment, sym_block_comment, - [73134] = 9, + [72663] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5303), 1, + ACTIONS(5276), 1, anon_sym_SEMI, - STATE(567), 1, + STATE(1283), 1, sym_declaration_list, - STATE(2889), 1, + STATE(2860), 1, sym_where_clause, - STATE(2324), 2, + STATE(2323), 2, sym_line_comment, sym_block_comment, - [73163] = 6, + [72692] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3589), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4924), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5305), 2, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5163), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5278), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2325), 2, + STATE(2324), 2, sym_line_comment, sym_block_comment, - [73186] = 8, + [72717] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5308), 1, - anon_sym_if, - STATE(3589), 1, - sym_label, - STATE(1412), 2, - sym_if_expression, - sym_block, - STATE(2326), 2, + ACTIONS(921), 1, + anon_sym_DOT_DOT, + STATE(2325), 2, sym_line_comment, sym_block_comment, - [73213] = 9, + ACTIONS(923), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72738] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5310), 1, + ACTIONS(5280), 1, anon_sym_SEMI, - STATE(506), 1, + STATE(522), 1, sym_declaration_list, - STATE(2776), 1, - sym_where_clause, - STATE(2327), 2, - sym_line_comment, - sym_block_comment, - [73242] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4934), 1, - anon_sym_LT, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5312), 1, - anon_sym_LBRACE, - STATE(1225), 1, - sym_enum_variant_list, - STATE(2607), 1, - sym_type_parameters, - STATE(3188), 1, + STATE(2917), 1, sym_where_clause, - STATE(2328), 2, + STATE(2326), 2, sym_line_comment, sym_block_comment, - [73271] = 9, + [72767] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_EQ, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5314), 1, - anon_sym_GT, - ACTIONS(5316), 1, - anon_sym_COMMA, - STATE(2794), 1, - sym_trait_bounds, - STATE(2924), 1, - aux_sym_type_parameters_repeat1, - STATE(2329), 2, - sym_line_comment, - sym_block_comment, - [73300] = 8, - ACTIONS(19), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5318), 1, + ACTIONS(5282), 1, anon_sym_if, - STATE(3600), 1, + STATE(3547), 1, sym_label, - STATE(398), 2, + STATE(1461), 2, sym_if_expression, sym_block, - STATE(2330), 2, + STATE(2327), 2, sym_line_comment, sym_block_comment, - [73327] = 9, + [72794] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5320), 1, - anon_sym_SEMI, - STATE(1258), 1, - sym_declaration_list, - STATE(2927), 1, - sym_where_clause, - STATE(2331), 2, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5171), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5278), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2328), 2, sym_line_comment, sym_block_comment, - [73356] = 9, + [72819] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5322), 1, - anon_sym_SEMI, - STATE(1262), 1, - sym_declaration_list, - STATE(2930), 1, - sym_where_clause, - STATE(2332), 2, + ACTIONS(4650), 1, + anon_sym_DOT_DOT, + ACTIONS(4652), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2329), 2, sym_line_comment, sym_block_comment, - [73385] = 9, + ACTIONS(4489), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [72842] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5324), 1, + ACTIONS(5284), 1, anon_sym_SEMI, - STATE(1280), 1, + STATE(724), 1, sym_declaration_list, - STATE(2939), 1, + STATE(2887), 1, sym_where_clause, - STATE(2333), 2, + STATE(2330), 2, sym_line_comment, sym_block_comment, - [73414] = 9, + [72871] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5326), 1, - anon_sym_SEMI, - STATE(508), 1, - sym_declaration_list, - STATE(2778), 1, - sym_where_clause, - STATE(2334), 2, + STATE(2331), 2, sym_line_comment, sym_block_comment, - [73443] = 9, + ACTIONS(4894), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [72890] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5328), 1, + ACTIONS(3099), 1, anon_sym_PLUS, - ACTIONS(5330), 1, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(5259), 1, anon_sym_GT, - ACTIONS(5332), 1, + ACTIONS(5261), 1, anon_sym_COMMA, - STATE(2815), 1, + STATE(2925), 1, sym_trait_bounds, - STATE(2816), 1, + STATE(2926), 1, aux_sym_type_arguments_repeat1, - STATE(2335), 2, + STATE(2332), 2, sym_line_comment, sym_block_comment, - [73472] = 9, + [72919] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3099), 1, - anon_sym_PLUS, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5330), 1, + ACTIONS(4578), 1, + anon_sym_COLON_COLON, + ACTIONS(5286), 1, anon_sym_GT, - ACTIONS(5332), 1, + ACTIONS(5288), 1, anon_sym_COMMA, - STATE(2815), 1, - sym_trait_bounds, - STATE(2816), 1, - aux_sym_type_arguments_repeat1, - STATE(2336), 2, + STATE(2736), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3327), 2, + anon_sym_PLUS, + anon_sym_as, + STATE(2333), 2, sym_line_comment, sym_block_comment, - [73501] = 8, + [72946] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5334), 1, - anon_sym_if, - STATE(3637), 1, - sym_label, - STATE(469), 2, - sym_if_expression, - sym_block, - STATE(2337), 2, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5290), 1, + anon_sym_SEMI, + STATE(1162), 1, + sym_declaration_list, + STATE(2817), 1, + sym_where_clause, + STATE(2334), 2, sym_line_comment, sym_block_comment, - [73528] = 9, + [72975] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_EQ, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5336), 1, - anon_sym_GT, - ACTIONS(5338), 1, + ACTIONS(5292), 1, + anon_sym_RBRACK, + ACTIONS(4864), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(2794), 1, - sym_trait_bounds, - STATE(2914), 1, - aux_sym_type_parameters_repeat1, - STATE(2338), 2, + STATE(2335), 2, sym_line_comment, sym_block_comment, - [73557] = 9, + ACTIONS(3561), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [72998] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5340), 1, + ACTIONS(5295), 1, anon_sym_SEMI, - STATE(624), 1, + STATE(1179), 1, sym_declaration_list, - STATE(2938), 1, + STATE(2823), 1, sym_where_clause, - STATE(2339), 2, + STATE(2336), 2, sym_line_comment, sym_block_comment, - [73586] = 9, + [73027] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4887), 1, + anon_sym_LT, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4930), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5342), 1, - anon_sym_SEMI, - STATE(628), 1, - sym_declaration_list, - STATE(3013), 1, + STATE(1140), 1, + sym_field_declaration_list, + STATE(2525), 1, + sym_type_parameters, + STATE(3287), 1, sym_where_clause, - STATE(2340), 2, + STATE(2337), 2, sym_line_comment, sym_block_comment, - [73615] = 9, + [73056] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4983), 1, anon_sym_COLON, - ACTIONS(5289), 1, - anon_sym_GT, - ACTIONS(5291), 1, - anon_sym_COMMA, - ACTIONS(5328), 1, - anon_sym_PLUS, - STATE(2866), 1, + STATE(1184), 1, + sym_declaration_list, + STATE(2542), 1, sym_trait_bounds, - STATE(2867), 1, - aux_sym_type_arguments_repeat1, - STATE(2341), 2, + STATE(3141), 1, + sym_where_clause, + STATE(2338), 2, + sym_line_comment, + sym_block_comment, + [73085] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4887), 1, + anon_sym_LT, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5297), 1, + anon_sym_LBRACE, + STATE(623), 1, + sym_enum_variant_list, + STATE(2526), 1, + sym_type_parameters, + STATE(3298), 1, + sym_where_clause, + STATE(2339), 2, sym_line_comment, sym_block_comment, - [73644] = 9, + [73114] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5344), 1, + ACTIONS(5299), 1, anon_sym_SEMI, - STATE(612), 1, + STATE(684), 1, sym_declaration_list, - STATE(2836), 1, + STATE(3027), 1, sym_where_clause, - STATE(2342), 2, + STATE(2340), 2, sym_line_comment, sym_block_comment, - [73673] = 8, + [73143] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5346), 1, - anon_sym_if, - STATE(3638), 1, - sym_label, - STATE(1723), 2, - sym_if_expression, - sym_block, - STATE(2343), 2, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5301), 1, + anon_sym_SEMI, + STATE(1214), 1, + sym_declaration_list, + STATE(2844), 1, + sym_where_clause, + STATE(2341), 2, sym_line_comment, sym_block_comment, - [73700] = 5, + [73172] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4655), 1, - anon_sym_DOT_DOT, - STATE(2344), 2, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(4975), 1, + anon_sym_for, + STATE(2342), 2, sym_line_comment, sym_block_comment, - ACTIONS(4653), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73721] = 9, + ACTIONS(3327), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [73195] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5045), 1, - anon_sym_COLON, - STATE(1285), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5303), 1, + anon_sym_SEMI, + STATE(618), 1, sym_declaration_list, - STATE(2674), 1, - sym_trait_bounds, - STATE(3272), 1, + STATE(2744), 1, sym_where_clause, - STATE(2345), 2, + STATE(2343), 2, sym_line_comment, sym_block_comment, - [73750] = 9, + [73224] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, + ACTIONS(4983), 1, anon_sym_COLON, - ACTIONS(5328), 1, + ACTIONS(5257), 1, anon_sym_PLUS, - ACTIONS(5348), 1, + ACTIONS(5305), 1, anon_sym_GT, - ACTIONS(5350), 1, + ACTIONS(5307), 1, anon_sym_COMMA, - STATE(3014), 1, + STATE(2897), 1, sym_trait_bounds, - STATE(3023), 1, + STATE(2898), 1, aux_sym_type_arguments_repeat1, - STATE(2346), 2, - sym_line_comment, - sym_block_comment, - [73779] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4668), 1, - anon_sym_DOT_DOT, - ACTIONS(4670), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2347), 2, + STATE(2344), 2, sym_line_comment, sym_block_comment, - ACTIONS(4513), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [73802] = 9, + [73253] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, + ACTIONS(3099), 1, + anon_sym_PLUS, + ACTIONS(4983), 1, anon_sym_COLON, - ACTIONS(5352), 1, + ACTIONS(5305), 1, anon_sym_GT, - ACTIONS(5354), 1, + ACTIONS(5307), 1, anon_sym_COMMA, - STATE(2808), 1, - aux_sym_type_parameters_repeat1, - STATE(2811), 1, + STATE(2897), 1, sym_trait_bounds, - STATE(2839), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2348), 2, + STATE(2898), 1, + aux_sym_type_arguments_repeat1, + STATE(2345), 2, sym_line_comment, sym_block_comment, - [73831] = 5, + [73282] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4876), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2349), 2, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5041), 1, + sym_identifier, + ACTIONS(5047), 1, + anon_sym_ref, + ACTIONS(5049), 1, + sym_mutable_specifier, + STATE(2346), 2, sym_line_comment, sym_block_comment, - ACTIONS(3503), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [73852] = 9, + STATE(3244), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73309] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5045), 1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(4983), 1, anon_sym_COLON, - ACTIONS(5356), 1, - anon_sym_SEMI, - ACTIONS(5358), 1, - anon_sym_EQ, - STATE(2950), 1, + STATE(611), 1, + sym_declaration_list, + STATE(2666), 1, sym_trait_bounds, - STATE(3425), 1, + STATE(3155), 1, sym_where_clause, - STATE(2350), 2, + STATE(2347), 2, sym_line_comment, sym_block_comment, - [73881] = 9, + [73338] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(4934), 1, - anon_sym_LT, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - STATE(1232), 1, - sym_field_declaration_list, - STATE(2668), 1, - sym_type_parameters, - STATE(3195), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5309), 1, + anon_sym_SEMI, + STATE(1265), 1, + sym_declaration_list, + STATE(2855), 1, sym_where_clause, - STATE(2351), 2, + STATE(2348), 2, sym_line_comment, sym_block_comment, - [73910] = 9, + [73367] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4934), 1, - anon_sym_LT, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5360), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(693), 1, - sym_enum_variant_list, - STATE(2564), 1, - sym_type_parameters, - STATE(3162), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5311), 1, + anon_sym_SEMI, + STATE(1285), 1, + sym_declaration_list, + STATE(2861), 1, sym_where_clause, - STATE(2352), 2, + STATE(2349), 2, sym_line_comment, sym_block_comment, - [73939] = 9, + [73396] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5362), 1, - anon_sym_SEMI, - STATE(697), 1, + ACTIONS(4983), 1, + anon_sym_COLON, + STATE(760), 1, sym_declaration_list, - STATE(2997), 1, + STATE(2529), 1, + sym_trait_bounds, + STATE(3039), 1, sym_where_clause, - STATE(2353), 2, + STATE(2350), 2, sym_line_comment, sym_block_comment, - [73968] = 9, + [73425] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5364), 1, + ACTIONS(5313), 1, anon_sym_SEMI, - STATE(701), 1, + STATE(1267), 1, sym_declaration_list, - STATE(2998), 1, + STATE(2856), 1, sym_where_clause, - STATE(2354), 2, + STATE(2351), 2, sym_line_comment, sym_block_comment, - [73997] = 9, + [73454] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4934), 1, - anon_sym_LT, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5312), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - STATE(1182), 1, - sym_enum_variant_list, - STATE(2660), 1, - sym_type_parameters, - STATE(3085), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5315), 1, + anon_sym_SEMI, + STATE(600), 1, + sym_declaration_list, + STATE(3014), 1, sym_where_clause, - STATE(2355), 2, + STATE(2352), 2, sym_line_comment, sym_block_comment, - [74026] = 9, + [73483] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(3561), 2, anon_sym_PLUS, - ACTIONS(5366), 1, - anon_sym_SEMI, - STATE(1200), 1, - sym_declaration_list, - STATE(3048), 1, - sym_where_clause, - STATE(2356), 2, + anon_sym_DASH_GT, + ACTIONS(4864), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5292), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2353), 2, sym_line_comment, sym_block_comment, - [74055] = 5, + [73506] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4924), 2, + ACTIONS(4864), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2357), 2, + STATE(2354), 2, sym_line_comment, sym_block_comment, - ACTIONS(3589), 4, + ACTIONS(3561), 4, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, anon_sym_DASH_GT, - [74076] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, + [73527] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5368), 1, - sym_identifier, - ACTIONS(5370), 1, - anon_sym_ref, - ACTIONS(5372), 1, - sym_mutable_specifier, - ACTIONS(5374), 1, - anon_sym_move, - STATE(223), 1, - sym_closure_parameters, - STATE(2358), 2, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(4932), 1, + anon_sym_for, + STATE(2355), 2, sym_line_comment, sym_block_comment, - [74105] = 5, + ACTIONS(3327), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [73550] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(991), 1, - anon_sym_DOT_DOT, - STATE(2359), 2, + ACTIONS(4887), 1, + anon_sym_LT, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5297), 1, + anon_sym_LBRACE, + STATE(634), 1, + sym_enum_variant_list, + STATE(2686), 1, + sym_type_parameters, + STATE(3218), 1, + sym_where_clause, + STATE(2356), 2, sym_line_comment, sym_block_comment, - ACTIONS(993), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + [73579] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1229), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5317), 1, anon_sym_if, - [74126] = 9, + STATE(3596), 1, + sym_label, + STATE(471), 2, + sym_if_expression, + sym_block, + STATE(2357), 2, + sym_line_comment, + sym_block_comment, + [73606] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5376), 1, + ACTIONS(5319), 1, anon_sym_SEMI, - STATE(1221), 1, + STATE(557), 1, sym_declaration_list, - STATE(2858), 1, + STATE(2955), 1, sym_where_clause, - STATE(2360), 2, + STATE(2358), 2, sym_line_comment, sym_block_comment, - [74155] = 9, + [73635] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(5045), 1, - anon_sym_COLON, - STATE(678), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5321), 1, + anon_sym_SEMI, + STATE(1208), 1, sym_declaration_list, - STATE(2657), 1, - sym_trait_bounds, - STATE(3242), 1, + STATE(2841), 1, + sym_where_clause, + STATE(2359), 2, + sym_line_comment, + sym_block_comment, + [73664] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4887), 1, + anon_sym_LT, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5253), 1, + anon_sym_LBRACE, + STATE(1084), 1, + sym_enum_variant_list, + STATE(2727), 1, + sym_type_parameters, + STATE(3272), 1, sym_where_clause, + STATE(2360), 2, + sym_line_comment, + sym_block_comment, + [73693] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4658), 1, + anon_sym_DOT_DOT, STATE(2361), 2, sym_line_comment, sym_block_comment, - [74184] = 9, + ACTIONS(4656), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [73714] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3099), 1, - anon_sym_PLUS, - ACTIONS(5045), 1, + ACTIONS(3503), 1, anon_sym_COLON, - ACTIONS(5348), 1, - anon_sym_GT, - ACTIONS(5350), 1, - anon_sym_COMMA, - STATE(3014), 1, - sym_trait_bounds, - STATE(3023), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5323), 1, + anon_sym_EQ, STATE(2362), 2, sym_line_comment, sym_block_comment, - [74213] = 9, + ACTIONS(3501), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [73737] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(4934), 1, - anon_sym_LT, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - STATE(1310), 1, - sym_field_declaration_list, - STATE(2677), 1, - sym_type_parameters, - STATE(3100), 1, + ACTIONS(4983), 1, + anon_sym_COLON, + STATE(1247), 1, + sym_declaration_list, + STATE(2560), 1, + sym_trait_bounds, + STATE(3254), 1, sym_where_clause, STATE(2363), 2, sym_line_comment, sym_block_comment, - [74242] = 9, + [73766] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, + ACTIONS(4983), 1, anon_sym_COLON, - ACTIONS(5328), 1, + ACTIONS(5257), 1, anon_sym_PLUS, - ACTIONS(5378), 1, + ACTIONS(5325), 1, anon_sym_GT, - ACTIONS(5380), 1, + ACTIONS(5327), 1, anon_sym_COMMA, - STATE(2892), 1, + STATE(2894), 1, sym_trait_bounds, - STATE(2893), 1, + STATE(3030), 1, aux_sym_type_arguments_repeat1, STATE(2364), 2, sym_line_comment, sym_block_comment, - [74271] = 4, + [73795] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5329), 1, + anon_sym_SEMI, + STATE(503), 1, + sym_declaration_list, + STATE(2867), 1, + sym_where_clause, STATE(2365), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74290] = 5, + [73824] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(997), 1, - anon_sym_DOT_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5331), 1, + anon_sym_SEMI, + STATE(1320), 1, + sym_declaration_list, + STATE(2865), 1, + sym_where_clause, STATE(2366), 2, sym_line_comment, sym_block_comment, - ACTIONS(999), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74311] = 9, + [73853] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5382), 1, + ACTIONS(5333), 1, anon_sym_SEMI, - STATE(1324), 1, + STATE(661), 1, sym_declaration_list, - STATE(2975), 1, + STATE(2986), 1, sym_where_clause, STATE(2367), 2, sym_line_comment, sym_block_comment, - [74340] = 9, + [73882] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4885), 1, + anon_sym_LBRACE, + ACTIONS(4887), 1, + anon_sym_LT, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5384), 1, - anon_sym_SEMI, - ACTIONS(5386), 1, - anon_sym_EQ, - STATE(2856), 1, - sym_trait_bounds, - STATE(3474), 1, + STATE(704), 1, + sym_field_declaration_list, + STATE(2561), 1, + sym_type_parameters, + STATE(3216), 1, sym_where_clause, STATE(2368), 2, sym_line_comment, sym_block_comment, - [74369] = 5, + [73911] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4682), 1, - anon_sym_DOT_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5335), 1, + anon_sym_SEMI, + STATE(1216), 1, + sym_declaration_list, + STATE(2845), 1, + sym_where_clause, STATE(2369), 2, sym_line_comment, sym_block_comment, - ACTIONS(4680), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74390] = 9, + [73940] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5388), 1, - anon_sym_SEMI, - STATE(1326), 1, - sym_declaration_list, - STATE(2976), 1, - sym_where_clause, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(4950), 1, + anon_sym_for, STATE(2370), 2, sym_line_comment, sym_block_comment, - [74419] = 9, + ACTIONS(3327), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [73963] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4934), 1, - anon_sym_LT, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4968), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(726), 1, - sym_field_declaration_list, - STATE(2693), 1, - sym_type_parameters, - STATE(3289), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_COLON, + STATE(1124), 1, + sym_declaration_list, + STATE(2519), 1, + sym_trait_bounds, + STATE(3209), 1, sym_where_clause, STATE(2371), 2, sym_line_comment, sym_block_comment, - [74448] = 9, + [73992] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5390), 1, + ACTIONS(5337), 1, anon_sym_SEMI, - STATE(1330), 1, + STATE(1322), 1, sym_declaration_list, - STATE(2982), 1, + STATE(2866), 1, sym_where_clause, STATE(2372), 2, sym_line_comment, sym_block_comment, - [74477] = 9, + [74021] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5392), 1, + ACTIONS(5339), 1, anon_sym_SEMI, - STATE(1332), 1, + STATE(726), 1, sym_declaration_list, - STATE(2983), 1, + STATE(2903), 1, sym_where_clause, STATE(2373), 2, sym_line_comment, sym_block_comment, - [74506] = 5, + [74050] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1005), 1, - anon_sym_DOT_DOT, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5341), 1, + anon_sym_SEMI, + STATE(718), 1, + sym_declaration_list, + STATE(2872), 1, + sym_where_clause, STATE(2374), 2, sym_line_comment, sym_block_comment, - ACTIONS(1007), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74527] = 5, + [74079] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1013), 1, - anon_sym_DOT_DOT, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(4954), 1, + anon_sym_for, STATE(2375), 2, sym_line_comment, sym_block_comment, - ACTIONS(1015), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74548] = 9, + ACTIONS(3327), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74102] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(3099), 1, anon_sym_PLUS, - ACTIONS(5394), 1, - anon_sym_SEMI, - STATE(524), 1, - sym_declaration_list, - STATE(2871), 1, - sym_where_clause, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(5325), 1, + anon_sym_GT, + ACTIONS(5327), 1, + anon_sym_COMMA, + STATE(2894), 1, + sym_trait_bounds, + STATE(3030), 1, + aux_sym_type_arguments_repeat1, STATE(2376), 2, sym_line_comment, sym_block_comment, - [74577] = 9, + [74131] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(5045), 1, + ACTIONS(4788), 2, anon_sym_COLON, - STATE(1370), 1, - sym_declaration_list, - STATE(2633), 1, - sym_trait_bounds, - STATE(3328), 1, - sym_where_clause, + anon_sym_PIPE, STATE(2377), 2, sym_line_comment, sym_block_comment, - [74606] = 9, + ACTIONS(3533), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [74152] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5396), 1, - anon_sym_SEMI, - STATE(526), 1, - sym_declaration_list, - STATE(2873), 1, - sym_where_clause, + anon_sym_for, STATE(2378), 2, sym_line_comment, sym_block_comment, - [74635] = 9, + ACTIONS(3327), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74175] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5398), 1, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(5343), 1, anon_sym_SEMI, - STATE(647), 1, - sym_declaration_list, - STATE(2931), 1, + ACTIONS(5345), 1, + anon_sym_EQ, + STATE(2781), 1, + sym_trait_bounds, + STATE(3393), 1, sym_where_clause, STATE(2379), 2, sym_line_comment, sym_block_comment, - [74664] = 6, + [74204] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, - anon_sym_COLON_COLON, - ACTIONS(4954), 1, - anon_sym_for, + ACTIONS(5267), 1, + anon_sym_RBRACK, + ACTIONS(4788), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2380), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, + ACTIONS(3533), 3, anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_where, - [74687] = 9, + anon_sym_DASH_GT, + [74227] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5400), 1, - anon_sym_SEMI, - STATE(528), 1, - sym_declaration_list, - STATE(2886), 1, - sym_where_clause, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(4962), 1, + anon_sym_for, STATE(2381), 2, sym_line_comment, sym_block_comment, - [74716] = 9, + ACTIONS(3327), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74250] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5402), 1, - anon_sym_SEMI, - STATE(714), 1, - sym_declaration_list, - STATE(2980), 1, + ACTIONS(4887), 1, + anon_sym_LT, + ACTIONS(4889), 1, + anon_sym_where, + STATE(628), 1, + sym_field_declaration_list, + STATE(2535), 1, + sym_type_parameters, + STATE(3088), 1, sym_where_clause, STATE(2382), 2, sym_line_comment, sym_block_comment, - [74745] = 7, + [74279] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(5257), 1, - anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5259), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(5347), 1, + anon_sym_SEMI, + ACTIONS(5349), 1, + anon_sym_EQ, + STATE(3012), 1, + sym_trait_bounds, + STATE(3488), 1, + sym_where_clause, STATE(2383), 2, sym_line_comment, sym_block_comment, - [74770] = 9, + [74308] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(5045), 1, - anon_sym_COLON, - STATE(652), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5351), 1, + anon_sym_SEMI, + STATE(1114), 1, sym_declaration_list, - STATE(2667), 1, - sym_trait_bounds, - STATE(3185), 1, + STATE(2775), 1, sym_where_clause, STATE(2384), 2, sym_line_comment, sym_block_comment, - [74799] = 6, + [74337] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, - anon_sym_COLON_COLON, - ACTIONS(4948), 1, - anon_sym_for, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(5239), 1, + anon_sym_GT, + ACTIONS(5241), 1, + anon_sym_COMMA, + ACTIONS(5257), 1, + anon_sym_PLUS, + STATE(2794), 1, + sym_trait_bounds, + STATE(2795), 1, + aux_sym_type_arguments_repeat1, STATE(2385), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74822] = 7, + [74366] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(5257), 1, - anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5404), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2386), 2, sym_line_comment, sym_block_comment, - [74847] = 9, + ACTIONS(3384), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74385] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5406), 1, + ACTIONS(5353), 1, anon_sym_SEMI, - STATE(530), 1, + STATE(505), 1, sym_declaration_list, - STATE(2910), 1, + STATE(2868), 1, sym_where_clause, STATE(2387), 2, sym_line_comment, sym_block_comment, - [74876] = 9, + [74414] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5408), 1, + ACTIONS(5355), 1, anon_sym_SEMI, - STATE(700), 1, + STATE(1210), 1, sym_declaration_list, - STATE(2791), 1, + STATE(2842), 1, sym_where_clause, STATE(2388), 2, sym_line_comment, sym_block_comment, - [74905] = 9, + [74443] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_EQ, - ACTIONS(4646), 1, - anon_sym_GT, - ACTIONS(4648), 1, - anon_sym_COMMA, - ACTIONS(5045), 1, - anon_sym_COLON, - STATE(2794), 1, - sym_trait_bounds, - STATE(2801), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5357), 1, + anon_sym_SEMI, + STATE(518), 1, + sym_declaration_list, + STATE(2907), 1, + sym_where_clause, STATE(2389), 2, sym_line_comment, sym_block_comment, - [74934] = 4, + [74472] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5359), 1, + sym_identifier, + ACTIONS(5361), 1, + anon_sym_ref, + ACTIONS(5363), 1, + sym_mutable_specifier, + ACTIONS(5365), 1, + anon_sym_move, + STATE(236), 1, + sym_closure_parameters, STATE(2390), 2, sym_line_comment, sym_block_comment, - ACTIONS(5012), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [74953] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3099), 1, - anon_sym_PLUS, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5378), 1, - anon_sym_GT, - ACTIONS(5380), 1, - anon_sym_COMMA, - STATE(2892), 1, - sym_trait_bounds, - STATE(2893), 1, - aux_sym_type_arguments_repeat1, - STATE(2391), 2, - sym_line_comment, - sym_block_comment, - [74982] = 6, + [74501] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3503), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4876), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5410), 2, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5171), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5215), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2392), 2, + STATE(2391), 2, sym_line_comment, sym_block_comment, - [75005] = 9, + [74526] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5413), 1, + ACTIONS(5367), 1, anon_sym_SEMI, - STATE(706), 1, + STATE(639), 1, sym_declaration_list, - STATE(3038), 1, + STATE(3013), 1, sym_where_clause, - STATE(2393), 2, + STATE(2392), 2, sym_line_comment, sym_block_comment, - [75034] = 6, + [74555] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, + ACTIONS(4580), 1, anon_sym_COLON_COLON, - ACTIONS(5028), 1, + ACTIONS(4934), 1, anon_sym_for, - STATE(2394), 2, + STATE(2393), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, + ACTIONS(3327), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [75057] = 7, + [74578] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, + ACTIONS(4618), 1, anon_sym_DOT_DOT, - ACTIONS(5231), 1, - anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5404), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2395), 2, + STATE(2394), 2, sym_line_comment, sym_block_comment, - [75082] = 9, + ACTIONS(4616), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [74599] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4934), 1, - anon_sym_LT, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5360), 1, - anon_sym_LBRACE, - STATE(761), 1, - sym_enum_variant_list, - STATE(2722), 1, - sym_type_parameters, - STATE(3306), 1, - sym_where_clause, - STATE(2396), 2, + ACTIONS(5371), 1, + anon_sym_COLON_COLON, + ACTIONS(5373), 1, + anon_sym_as, + STATE(2395), 2, sym_line_comment, sym_block_comment, - [75111] = 6, + ACTIONS(5369), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [74621] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, + ACTIONS(5375), 1, anon_sym_RBRACK, - ACTIONS(4876), 2, + ACTIONS(3327), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4489), 2, anon_sym_PIPE, anon_sym_COMMA, - STATE(2397), 2, + STATE(2396), 2, sym_line_comment, sym_block_comment, - ACTIONS(3503), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [75134] = 9, + [74643] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5415), 1, + ACTIONS(5378), 1, anon_sym_SEMI, - STATE(1082), 1, - sym_declaration_list, - STATE(3017), 1, - sym_where_clause, + STATE(749), 1, + sym_block, + STATE(3592), 1, + sym_label, + STATE(2397), 2, + sym_line_comment, + sym_block_comment, + [74669] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4635), 1, + anon_sym_EQ, + ACTIONS(4983), 1, + anon_sym_COLON, + STATE(2934), 1, + sym_trait_bounds, + ACTIONS(4637), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2398), 2, sym_line_comment, sym_block_comment, - [75163] = 9, + [74693] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5417), 1, - anon_sym_SEMI, - STATE(1084), 1, - sym_declaration_list, - STATE(3018), 1, - sym_where_clause, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4487), 1, + anon_sym_COLON_COLON, + ACTIONS(4633), 1, + anon_sym_COLON, + STATE(1948), 1, + sym_type_arguments, + STATE(2677), 1, + sym_trait_bounds, STATE(2399), 2, sym_line_comment, sym_block_comment, - [75192] = 9, + [74719] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5419), 1, - anon_sym_SEMI, - STATE(1196), 1, - sym_declaration_list, - STATE(2844), 1, - sym_where_clause, + ACTIONS(5382), 1, + anon_sym_COMMA, + STATE(2483), 1, + aux_sym_where_clause_repeat1, STATE(2400), 2, sym_line_comment, sym_block_comment, - [75221] = 7, + ACTIONS(5380), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [74741] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(5231), 1, - anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5259), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4999), 1, + anon_sym_LBRACE, + ACTIONS(5384), 1, + anon_sym_SEMI, + STATE(650), 1, + sym_block, + STATE(3592), 1, + sym_label, STATE(2401), 2, sym_line_comment, sym_block_comment, - [75246] = 6, + [74767] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_COLON, - ACTIONS(5421), 1, - anon_sym_EQ, STATE(2402), 2, sym_line_comment, sym_block_comment, - ACTIONS(3665), 4, + ACTIONS(3263), 5, + anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - [75269] = 6, + anon_sym_as, + [74785] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5305), 1, + ACTIONS(5386), 1, anon_sym_RBRACK, - ACTIONS(4924), 2, + ACTIONS(3675), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4784), 2, anon_sym_PIPE, anon_sym_COMMA, STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(3589), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [75292] = 8, + [74807] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4593), 1, - anon_sym_COLON_COLON, - ACTIONS(5423), 1, + ACTIONS(3099), 1, + anon_sym_PLUS, + ACTIONS(4983), 1, + anon_sym_COLON, + STATE(3193), 1, + sym_trait_bounds, + ACTIONS(5389), 2, anon_sym_GT, - ACTIONS(5425), 1, anon_sym_COMMA, - STATE(2808), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3370), 2, - anon_sym_PLUS, - anon_sym_as, STATE(2404), 2, sym_line_comment, sym_block_comment, - [75319] = 9, + [74831] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5427), 1, - anon_sym_SEMI, - STATE(1097), 1, - sym_declaration_list, - STATE(3021), 1, - sym_where_clause, STATE(2405), 2, sym_line_comment, sym_block_comment, - [75348] = 6, + ACTIONS(3555), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [74849] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, - anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_for, + ACTIONS(5391), 1, + anon_sym_RPAREN, + ACTIONS(5393), 1, + anon_sym_COLON, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2905), 1, + aux_sym_slice_pattern_repeat1, STATE(2406), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75371] = 9, + [74875] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5429), 1, - anon_sym_SEMI, - STATE(708), 1, - sym_declaration_list, - STATE(3041), 1, - sym_where_clause, STATE(2407), 2, sym_line_comment, sym_block_comment, - [75400] = 9, + ACTIONS(3571), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [74893] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(4161), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5431), 1, - anon_sym_SEMI, - STATE(1099), 1, - sym_declaration_list, - STATE(3022), 1, - sym_where_clause, + ACTIONS(5401), 1, + anon_sym_STAR, + STATE(2752), 1, + sym_use_list, + ACTIONS(5399), 2, + sym_identifier, + sym_super, STATE(2408), 2, sym_line_comment, sym_block_comment, - [75429] = 6, + [74917] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, - anon_sym_COLON_COLON, - ACTIONS(4999), 1, - anon_sym_for, STATE(2409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75452] = 9, + ACTIONS(3589), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [74935] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5433), 1, - anon_sym_SEMI, - STATE(1101), 1, - sym_declaration_list, - STATE(3026), 1, - sym_where_clause, STATE(2410), 2, sym_line_comment, sym_block_comment, - [75481] = 6, + ACTIONS(3597), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [74953] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, + ACTIONS(3745), 2, + anon_sym_LPAREN, anon_sym_COLON_COLON, - ACTIONS(5001), 1, - anon_sym_for, STATE(2411), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75504] = 9, + ACTIONS(4668), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [74973] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3099), 1, - anon_sym_PLUS, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5423), 1, - anon_sym_GT, - ACTIONS(5425), 1, - anon_sym_COMMA, - STATE(2808), 1, - aux_sym_type_parameters_repeat1, - STATE(2811), 1, - sym_trait_bounds, + ACTIONS(3787), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(2412), 2, sym_line_comment, sym_block_comment, - [75533] = 6, + ACTIONS(4668), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [74993] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, - anon_sym_COLON_COLON, - ACTIONS(5005), 1, - anon_sym_for, + ACTIONS(5403), 1, + anon_sym_RPAREN, + ACTIONS(5406), 1, + anon_sym_COMMA, + STATE(2933), 1, + aux_sym_parameters_repeat1, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2413), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75556] = 9, + [75017] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(5045), 1, + ACTIONS(3327), 1, + anon_sym_PLUS, + ACTIONS(4489), 2, anon_sym_COLON, - STATE(1209), 1, - sym_declaration_list, - STATE(2761), 1, - sym_trait_bounds, - STATE(3168), 1, - sym_where_clause, + anon_sym_PIPE, + ACTIONS(5375), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2414), 2, sym_line_comment, sym_block_comment, - [75585] = 9, + [75039] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(4161), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5435), 1, - anon_sym_SEMI, - STATE(1103), 1, - sym_declaration_list, - STATE(3027), 1, - sym_where_clause, + ACTIONS(5125), 1, + anon_sym_STAR, + STATE(2757), 1, + sym_use_list, + ACTIONS(5123), 2, + sym_identifier, + sym_super, STATE(2415), 2, sym_line_comment, sym_block_comment, - [75614] = 6, + [75063] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, - anon_sym_COLON_COLON, - ACTIONS(4960), 1, - anon_sym_for, - STATE(2416), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3370), 4, + ACTIONS(5411), 1, + anon_sym_COMMA, + ACTIONS(5409), 3, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75637] = 4, + anon_sym_SQUOTE, + STATE(2416), 3, + sym_line_comment, + sym_block_comment, + aux_sym_where_clause_repeat1, + [75083] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4999), 1, + anon_sym_LBRACE, + ACTIONS(5414), 1, + anon_sym_SEMI, + STATE(497), 1, + sym_block, + STATE(3592), 1, + sym_label, STATE(2417), 2, sym_line_comment, - sym_block_comment, - ACTIONS(3611), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [75655] = 7, + sym_block_comment, + [75109] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5439), 1, - anon_sym_STAR, - STATE(2992), 1, - sym_use_list, - ACTIONS(5437), 2, - sym_identifier, - sym_super, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5001), 1, + anon_sym_PLUS, + STATE(1394), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2418), 2, sym_line_comment, sym_block_comment, - [75679] = 8, + [75135] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, - anon_sym_RPAREN, - ACTIONS(5443), 1, - anon_sym_COLON, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5447), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_slice_pattern_repeat1, STATE(2419), 2, sym_line_comment, sym_block_comment, - [75705] = 7, + ACTIONS(5416), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75153] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5449), 1, - anon_sym_RPAREN, - ACTIONS(5452), 1, - anon_sym_COMMA, - STATE(3049), 1, - aux_sym_parameters_repeat1, - ACTIONS(4513), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2420), 2, sym_line_comment, sym_block_comment, - [75729] = 4, + ACTIONS(3633), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75171] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1229), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5418), 1, + anon_sym_move, + STATE(487), 1, + sym_block, + STATE(3596), 1, + sym_label, STATE(2421), 2, sym_line_comment, sym_block_comment, - ACTIONS(3263), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [75747] = 8, + [75197] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4511), 1, - anon_sym_COLON_COLON, - STATE(1956), 1, - sym_type_arguments, - STATE(1976), 1, - sym_parameters, + ACTIONS(3007), 1, + anon_sym_POUND, + ACTIONS(5420), 1, + sym_identifier, + ACTIONS(5422), 1, + sym_integer_literal, + STATE(1062), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1382), 1, + sym_attribute_item, STATE(2422), 2, sym_line_comment, sym_block_comment, - [75773] = 7, + [75223] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, - anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_STAR, - STATE(2995), 1, - sym_use_list, - ACTIONS(5215), 2, - sym_identifier, - sym_super, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(5424), 1, + anon_sym_SEMI, + ACTIONS(5426), 1, + anon_sym_COLON, + ACTIONS(5428), 1, + anon_sym_EQ, + ACTIONS(5430), 1, + anon_sym_else, STATE(2423), 2, sym_line_comment, sym_block_comment, - [75797] = 4, + [75249] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(5432), 1, + anon_sym_SEMI, + ACTIONS(5434), 1, + anon_sym_COLON, + ACTIONS(5436), 1, + anon_sym_EQ, + ACTIONS(5438), 1, + anon_sym_else, STATE(2424), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [75815] = 7, + [75275] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5455), 1, - anon_sym_RPAREN, - ACTIONS(5457), 1, - anon_sym_COMMA, - STATE(3049), 1, - aux_sym_parameters_repeat1, - ACTIONS(4513), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2425), 2, sym_line_comment, sym_block_comment, - [75839] = 8, + ACTIONS(5440), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75293] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5459), 1, - anon_sym_SEMI, - STATE(592), 1, - sym_block, - STATE(3633), 1, - sym_label, STATE(2426), 2, sym_line_comment, sym_block_comment, - [75865] = 7, + ACTIONS(5442), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75311] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1447), 1, - anon_sym_RPAREN, - ACTIONS(5461), 1, - anon_sym_COMMA, - STATE(2967), 1, - aux_sym_parameters_repeat1, - ACTIONS(4513), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2427), 2, sym_line_comment, sym_block_comment, - [75889] = 6, + ACTIONS(5444), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75329] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, + ACTIONS(3675), 1, anon_sym_PLUS, - ACTIONS(4513), 2, + ACTIONS(4784), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(5463), 2, + ACTIONS(5386), 2, anon_sym_RPAREN, anon_sym_COMMA, STATE(2428), 2, sym_line_comment, sym_block_comment, - [75911] = 8, + [75351] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5083), 1, - anon_sym_LBRACE, - ACTIONS(5466), 1, - anon_sym_SEMI, - STATE(1316), 1, - sym_block, - STATE(3636), 1, - sym_label, + ACTIONS(3291), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4487), 1, + anon_sym_COLON_COLON, + STATE(1106), 1, + sym_parameters, + STATE(1948), 1, + sym_type_arguments, STATE(2429), 2, sym_line_comment, sym_block_comment, - [75937] = 4, + [75377] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2430), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3539), 5, + ACTIONS(4834), 1, + anon_sym_PIPE, + ACTIONS(5446), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5448), 1, anon_sym_COLON, + ACTIONS(5450), 1, anon_sym_EQ, - anon_sym_where, - [75955] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2431), 2, + ACTIONS(5452), 1, + anon_sym_else, + STATE(2430), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75973] = 8, + [75403] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(407), 1, anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5468), 1, - anon_sym_move, - STATE(472), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + STATE(1775), 1, sym_block, - STATE(3637), 1, + STATE(3597), 1, sym_label, - STATE(2432), 2, + STATE(2431), 2, sym_line_comment, sym_block_comment, - [75999] = 8, + [75429] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + STATE(2432), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3529), 5, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5055), 1, - anon_sym_PLUS, - STATE(1790), 1, - sym_block, - STATE(3638), 1, - sym_label, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75447] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(5239), 1, + anon_sym_GT, + ACTIONS(5241), 1, + anon_sym_COMMA, + STATE(2794), 1, + sym_trait_bounds, + STATE(2795), 1, + aux_sym_type_arguments_repeat1, STATE(2433), 2, sym_line_comment, sym_block_comment, - [76025] = 4, + [75473] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5454), 1, + anon_sym_RPAREN, + ACTIONS(5456), 1, + anon_sym_COMMA, + STATE(2803), 1, + aux_sym_parameters_repeat1, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2434), 2, sym_line_comment, sym_block_comment, - ACTIONS(3547), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76043] = 8, + [75497] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5037), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(5470), 1, + ACTIONS(5458), 1, anon_sym_SEMI, - STATE(550), 1, + STATE(526), 1, sym_block, - STATE(3633), 1, + STATE(3592), 1, sym_label, STATE(2435), 2, sym_line_comment, sym_block_comment, - [76069] = 8, + [75523] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5083), 1, + ACTIONS(4993), 1, anon_sym_LBRACE, - ACTIONS(5472), 1, + ACTIONS(5460), 1, anon_sym_SEMI, - STATE(1355), 1, + STATE(1156), 1, sym_block, - STATE(3636), 1, + STATE(3595), 1, sym_label, STATE(2436), 2, sym_line_comment, sym_block_comment, - [76095] = 4, + [75549] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5217), 1, + anon_sym_COLON, + ACTIONS(5219), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2437), 2, sym_line_comment, sym_block_comment, - ACTIONS(3551), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76113] = 8, + [75573] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5423), 1, - anon_sym_GT, - ACTIONS(5425), 1, - anon_sym_COMMA, - STATE(2808), 1, - aux_sym_type_parameters_repeat1, - STATE(2811), 1, - sym_trait_bounds, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5001), 1, + anon_sym_PLUS, + STATE(1653), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2438), 2, sym_line_comment, sym_block_comment, - [76139] = 8, + [75599] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5474), 1, - anon_sym_SEMI, - STATE(575), 1, - sym_block, - STATE(3633), 1, - sym_label, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5161), 1, + anon_sym_COLON, + ACTIONS(5219), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2439), 2, sym_line_comment, sym_block_comment, - [76165] = 8, + [75623] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4511), 1, - anon_sym_COLON_COLON, - ACTIONS(4642), 1, - anon_sym_COLON, - STATE(1956), 1, - sym_type_arguments, - STATE(2688), 1, - sym_trait_bounds, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4999), 1, + anon_sym_LBRACE, + ACTIONS(5462), 1, + anon_sym_SEMI, + STATE(539), 1, + sym_block, + STATE(3592), 1, + sym_label, STATE(2440), 2, sym_line_comment, sym_block_comment, - [76191] = 6, + [75649] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5478), 1, + ACTIONS(1451), 1, + anon_sym_RPAREN, + ACTIONS(5464), 1, anon_sym_COMMA, - STATE(2461), 1, - aux_sym_where_clause_repeat1, + STATE(2838), 1, + aux_sym_parameters_repeat1, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2441), 2, sym_line_comment, sym_block_comment, - ACTIONS(5476), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [76213] = 8, + [75673] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5037), 1, + ACTIONS(4993), 1, anon_sym_LBRACE, - ACTIONS(5480), 1, + ACTIONS(5466), 1, anon_sym_SEMI, - STATE(596), 1, + STATE(1204), 1, sym_block, - STATE(3633), 1, + STATE(3595), 1, sym_label, STATE(2442), 2, sym_line_comment, sym_block_comment, - [76239] = 8, + [75699] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5083), 1, - anon_sym_LBRACE, - ACTIONS(5482), 1, - anon_sym_SEMI, - STATE(1076), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + STATE(1813), 1, sym_block, - STATE(3636), 1, + STATE(3597), 1, sym_label, STATE(2443), 2, sym_line_comment, sym_block_comment, - [76265] = 5, + [75725] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5486), 1, - anon_sym_COMMA, - ACTIONS(5484), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(2444), 3, + ACTIONS(4993), 1, + anon_sym_LBRACE, + ACTIONS(5468), 1, + anon_sym_SEMI, + STATE(1237), 1, + sym_block, + STATE(3595), 1, + sym_label, + STATE(2444), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - [76285] = 8, + [75751] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3007), 1, - anon_sym_POUND, - ACTIONS(5489), 1, - sym_identifier, - ACTIONS(5491), 1, - sym_integer_literal, - STATE(1062), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1448), 1, - sym_attribute_item, + ACTIONS(5472), 1, + anon_sym_COLON_COLON, + ACTIONS(5474), 1, + anon_sym_as, STATE(2445), 2, sym_line_comment, sym_block_comment, - [76311] = 4, + ACTIONS(5470), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [75773] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -174832,286 +174303,297 @@ static const uint16_t ts_small_parse_table[] = { STATE(2446), 2, sym_line_comment, sym_block_comment, - ACTIONS(3469), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [76329] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2447), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3555), 5, + ACTIONS(3623), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [76347] = 8, + [75791] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5083), 1, + ACTIONS(4993), 1, anon_sym_LBRACE, - ACTIONS(5493), 1, + ACTIONS(5476), 1, anon_sym_SEMI, - STATE(1106), 1, + STATE(1259), 1, sym_block, - STATE(3636), 1, + STATE(3595), 1, sym_label, - STATE(2448), 2, + STATE(2447), 2, sym_line_comment, sym_block_comment, - [76373] = 8, + [75817] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5495), 1, + ACTIONS(5373), 1, + anon_sym_as, + ACTIONS(5478), 1, + anon_sym_COLON_COLON, + STATE(2448), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5369), 3, anon_sym_SEMI, - ACTIONS(5497), 1, - anon_sym_COLON, - ACTIONS(5499), 1, - anon_sym_EQ, - ACTIONS(5501), 1, - anon_sym_else, + anon_sym_RBRACE, + anon_sym_COMMA, + [75839] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5001), 1, + anon_sym_PLUS, + STATE(1485), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2449), 2, sym_line_comment, sym_block_comment, - [76399] = 8, + [75865] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5083), 1, + ACTIONS(4993), 1, anon_sym_LBRACE, - ACTIONS(5503), 1, + ACTIONS(5480), 1, anon_sym_SEMI, - STATE(1119), 1, + STATE(1288), 1, sym_block, - STATE(3636), 1, + STATE(3595), 1, sym_label, STATE(2450), 2, sym_line_comment, sym_block_comment, - [76425] = 8, + [75891] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5037), 1, + ACTIONS(4993), 1, anon_sym_LBRACE, - ACTIONS(5505), 1, + ACTIONS(5482), 1, anon_sym_SEMI, - STATE(500), 1, + STATE(1301), 1, sym_block, - STATE(3633), 1, + STATE(3595), 1, sym_label, STATE(2451), 2, sym_line_comment, sym_block_comment, - [76451] = 5, + [75917] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3881), 2, - anon_sym_LPAREN, + ACTIONS(5373), 1, + anon_sym_as, + ACTIONS(5484), 1, anon_sym_COLON_COLON, STATE(2452), 2, sym_line_comment, sym_block_comment, - ACTIONS(4684), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [76471] = 8, + ACTIONS(5369), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [75939] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5083), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(5507), 1, + ACTIONS(5486), 1, anon_sym_SEMI, - STATE(1124), 1, + STATE(542), 1, sym_block, - STATE(3636), 1, + STATE(3592), 1, sym_label, STATE(2453), 2, sym_line_comment, sym_block_comment, - [76497] = 7, + [75965] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_EQ, - ACTIONS(5045), 1, - anon_sym_COLON, - STATE(2794), 1, - sym_trait_bounds, - ACTIONS(5509), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4993), 1, + anon_sym_LBRACE, + ACTIONS(5488), 1, + anon_sym_SEMI, + STATE(1306), 1, + sym_block, + STATE(3595), 1, + sym_label, STATE(2454), 2, sym_line_comment, sym_block_comment, - [76521] = 4, + [75991] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4993), 1, + anon_sym_LBRACE, + ACTIONS(5490), 1, + anon_sym_SEMI, + STATE(1330), 1, + sym_block, + STATE(3595), 1, + sym_label, STATE(2455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [76539] = 7, + [76017] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1415), 1, - anon_sym_RPAREN, - ACTIONS(5511), 1, - anon_sym_COMMA, - STATE(2919), 1, - aux_sym_parameters_repeat1, - ACTIONS(4513), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4993), 1, + anon_sym_LBRACE, + ACTIONS(5492), 1, + anon_sym_SEMI, + STATE(1336), 1, + sym_block, + STATE(3595), 1, + sym_label, STATE(2456), 2, sym_line_comment, sym_block_comment, - [76563] = 8, + [76043] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5083), 1, + ACTIONS(4993), 1, anon_sym_LBRACE, - ACTIONS(5513), 1, + ACTIONS(5494), 1, anon_sym_SEMI, - STATE(1149), 1, + STATE(1346), 1, sym_block, - STATE(3636), 1, + STATE(3595), 1, sym_label, STATE(2457), 2, sym_line_comment, sym_block_comment, - [76589] = 8, + [76069] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5083), 1, + ACTIONS(4993), 1, anon_sym_LBRACE, - ACTIONS(5515), 1, + ACTIONS(5496), 1, anon_sym_SEMI, - STATE(1155), 1, + STATE(1350), 1, sym_block, - STATE(3636), 1, + STATE(3595), 1, sym_label, STATE(2458), 2, sym_line_comment, sym_block_comment, - [76615] = 8, + [76095] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5083), 1, + ACTIONS(4993), 1, anon_sym_LBRACE, - ACTIONS(5517), 1, + ACTIONS(5498), 1, anon_sym_SEMI, - STATE(1165), 1, + STATE(1354), 1, sym_block, - STATE(3636), 1, + STATE(3595), 1, sym_label, STATE(2459), 2, sym_line_comment, sym_block_comment, - [76641] = 8, + [76121] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(407), 1, + anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5083), 1, - anon_sym_LBRACE, - ACTIONS(5519), 1, - anon_sym_SEMI, - STATE(1169), 1, + ACTIONS(5500), 1, + anon_sym_move, + STATE(1661), 1, sym_block, - STATE(3636), 1, + STATE(3597), 1, sym_label, STATE(2460), 2, sym_line_comment, sym_block_comment, - [76667] = 6, + [76147] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5521), 1, - anon_sym_COMMA, - STATE(2444), 1, - aux_sym_where_clause_repeat1, + ACTIONS(3997), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4487), 1, + anon_sym_COLON_COLON, + STATE(1618), 1, + sym_parameters, + STATE(1948), 1, + sym_type_arguments, STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3454), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [76689] = 8, + [76173] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5083), 1, - anon_sym_LBRACE, - ACTIONS(5523), 1, - anon_sym_SEMI, - STATE(1173), 1, - sym_block, - STATE(3636), 1, - sym_label, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(5305), 1, + anon_sym_GT, + ACTIONS(5307), 1, + anon_sym_COMMA, + STATE(2897), 1, + sym_trait_bounds, + STATE(2898), 1, + aux_sym_type_arguments_repeat1, STATE(2462), 2, sym_line_comment, sym_block_comment, - [76715] = 4, + [76199] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -175119,406 +174601,386 @@ static const uint16_t ts_small_parse_table[] = { STATE(2463), 2, sym_line_comment, sym_block_comment, - ACTIONS(5525), 5, + ACTIONS(5502), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76733] = 8, + [76217] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5527), 1, - anon_sym_move, - STATE(1840), 1, - sym_block, - STATE(3638), 1, - sym_label, + ACTIONS(5504), 1, + anon_sym_RPAREN, + ACTIONS(5506), 1, + anon_sym_COMMA, + STATE(2900), 1, + aux_sym_parameters_repeat1, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2464), 2, sym_line_comment, sym_block_comment, - [76759] = 8, + [76241] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5529), 1, - anon_sym_SEMI, - STATE(620), 1, - sym_block, - STATE(3633), 1, - sym_label, STATE(2465), 2, sym_line_comment, sym_block_comment, - [76785] = 8, + ACTIONS(5508), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76259] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5531), 1, - anon_sym_STAR_SLASH, - ACTIONS(5533), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5535), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5537), 1, - sym__block_comment_content, - STATE(3108), 1, - sym__block_doc_comment_marker, STATE(2466), 2, sym_line_comment, sym_block_comment, - [76811] = 5, + ACTIONS(3639), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76277] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4513), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 3, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(5510), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [76831] = 8, + anon_sym_where, + [76295] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5539), 1, - anon_sym_SEMI, - STATE(600), 1, - sym_block, - STATE(3633), 1, - sym_label, STATE(2468), 2, sym_line_comment, sym_block_comment, - [76857] = 4, + ACTIONS(5512), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76313] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1407), 1, + anon_sym_RPAREN, + ACTIONS(5514), 1, + anon_sym_COMMA, + STATE(2906), 1, + aux_sym_parameters_repeat1, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3559), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76875] = 8, + [76337] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4822), 1, - anon_sym_PIPE, - ACTIONS(5541), 1, - anon_sym_SEMI, - ACTIONS(5543), 1, + ACTIONS(4983), 1, anon_sym_COLON, - ACTIONS(5545), 1, - anon_sym_EQ, - ACTIONS(5547), 1, - anon_sym_else, + ACTIONS(5259), 1, + anon_sym_GT, + ACTIONS(5261), 1, + anon_sym_COMMA, + STATE(2925), 1, + sym_trait_bounds, + STATE(2926), 1, + aux_sym_type_arguments_repeat1, STATE(2470), 2, sym_line_comment, sym_block_comment, - [76901] = 5, + [76363] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3915), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4999), 1, + anon_sym_LBRACE, + ACTIONS(5516), 1, + anon_sym_SEMI, + STATE(567), 1, + sym_block, + STATE(3592), 1, + sym_label, STATE(2471), 2, sym_line_comment, sym_block_comment, - ACTIONS(4684), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [76921] = 8, + [76389] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4013), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4511), 1, - anon_sym_COLON_COLON, - STATE(1599), 1, - sym_parameters, - STATE(1956), 1, - sym_type_arguments, + ACTIONS(4784), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2472), 2, sym_line_comment, sym_block_comment, - [76947] = 8, + ACTIONS(3675), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [76409] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4866), 1, + ACTIONS(4836), 1, anon_sym_RPAREN, - ACTIONS(5549), 1, + ACTIONS(5518), 1, anon_sym_COLON, - ACTIONS(5551), 1, + ACTIONS(5520), 1, anon_sym_PIPE, - ACTIONS(5553), 1, + ACTIONS(5522), 1, anon_sym_COMMA, - STATE(2772), 1, + STATE(2828), 1, aux_sym_closure_parameters_repeat1, STATE(2473), 2, sym_line_comment, sym_block_comment, - [76973] = 7, + [76435] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(5229), 1, - anon_sym_COLON, - ACTIONS(5263), 1, - anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4999), 1, + anon_sym_LBRACE, + ACTIONS(5524), 1, + anon_sym_SEMI, + STATE(573), 1, + sym_block, + STATE(3592), 1, + sym_label, STATE(2474), 2, sym_line_comment, sym_block_comment, - [76997] = 8, + [76461] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5555), 1, - anon_sym_SEMI, - STATE(582), 1, - sym_block, - STATE(3633), 1, - sym_label, + ACTIONS(1453), 1, + anon_sym_RPAREN, + ACTIONS(5526), 1, + anon_sym_COMMA, + STATE(2777), 1, + aux_sym_parameters_repeat1, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2475), 2, sym_line_comment, sym_block_comment, - [77023] = 8, + [76485] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5330), 1, - anon_sym_GT, - ACTIONS(5332), 1, - anon_sym_COMMA, - STATE(2815), 1, - sym_trait_bounds, - STATE(2816), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4487), 1, + anon_sym_COLON_COLON, + STATE(1948), 1, + sym_type_arguments, + STATE(1975), 1, + sym_parameters, STATE(2476), 2, sym_line_comment, sym_block_comment, - [77049] = 7, + [76511] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5557), 1, - anon_sym_RPAREN, - ACTIONS(5559), 1, - anon_sym_COMMA, - STATE(2820), 1, - aux_sym_parameters_repeat1, - ACTIONS(4513), 2, + ACTIONS(4983), 1, anon_sym_COLON, - anon_sym_PIPE, + STATE(2944), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3169), 1, + sym_trait_bounds, + ACTIONS(5528), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2477), 2, sym_line_comment, sym_block_comment, - [77073] = 6, + [76535] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5563), 1, - anon_sym_COLON_COLON, - ACTIONS(5565), 1, - anon_sym_as, + ACTIONS(4983), 1, + anon_sym_COLON, + ACTIONS(5325), 1, + anon_sym_GT, + ACTIONS(5327), 1, + anon_sym_COMMA, + STATE(2894), 1, + sym_trait_bounds, + STATE(3030), 1, + aux_sym_type_arguments_repeat1, STATE(2478), 2, sym_line_comment, sym_block_comment, - ACTIONS(5561), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [77095] = 6, + [76561] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5565), 1, - anon_sym_as, - ACTIONS(5567), 1, - anon_sym_COLON_COLON, STATE(2479), 2, sym_line_comment, sym_block_comment, - ACTIONS(5561), 3, + ACTIONS(5530), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [77117] = 8, + anon_sym_where, + [76579] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_GT, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5569), 1, - anon_sym_COMMA, - STATE(2811), 1, - sym_trait_bounds, - STATE(2922), 1, - aux_sym_type_parameters_repeat1, STATE(2480), 2, sym_line_comment, sym_block_comment, - [77143] = 7, + ACTIONS(5532), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76597] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5328), 1, - anon_sym_PLUS, - STATE(3351), 1, - sym_trait_bounds, - ACTIONS(5571), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(2481), 2, sym_line_comment, sym_block_comment, - [77167] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1465), 1, - anon_sym_RPAREN, - ACTIONS(5573), 1, + ACTIONS(5534), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - STATE(2828), 1, - aux_sym_parameters_repeat1, - ACTIONS(4513), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2482), 2, - sym_line_comment, - sym_block_comment, - [77191] = 8, + anon_sym_where, + [76615] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5037), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - ACTIONS(5575), 1, + ACTIONS(5536), 1, anon_sym_SEMI, - STATE(692), 1, + STATE(584), 1, sym_block, - STATE(3633), 1, + STATE(3592), 1, sym_label, - STATE(2483), 2, + STATE(2482), 2, sym_line_comment, sym_block_comment, - [77217] = 8, + [76641] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5289), 1, - anon_sym_GT, - ACTIONS(5291), 1, + ACTIONS(5538), 1, anon_sym_COMMA, - STATE(2866), 1, - sym_trait_bounds, - STATE(2867), 1, - aux_sym_type_arguments_repeat1, + STATE(2416), 1, + aux_sym_where_clause_repeat1, + STATE(2483), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3467), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [76663] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4999), 1, + anon_sym_LBRACE, + ACTIONS(5540), 1, + anon_sym_SEMI, + STATE(714), 1, + sym_block, + STATE(3592), 1, + sym_label, STATE(2484), 2, sym_line_comment, sym_block_comment, - [77243] = 7, + [76689] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3099), 1, - anon_sym_PLUS, - ACTIONS(5045), 1, - anon_sym_COLON, - STATE(3351), 1, - sym_trait_bounds, - ACTIONS(5571), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(4999), 1, + anon_sym_LBRACE, + ACTIONS(5542), 1, + anon_sym_SEMI, + STATE(588), 1, + sym_block, + STATE(3592), 1, + sym_label, STATE(2485), 2, sym_line_comment, sym_block_comment, - [77267] = 6, + [76715] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5565), 1, - anon_sym_as, - ACTIONS(5577), 1, - anon_sym_COLON_COLON, STATE(2486), 2, sym_line_comment, sym_block_comment, - ACTIONS(5561), 3, + ACTIONS(5544), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [77289] = 8, + anon_sym_where, + [76733] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -175527,80 +174989,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5579), 1, + ACTIONS(5546), 1, anon_sym_move, - STATE(1461), 1, + STATE(1463), 1, sym_block, - STATE(3589), 1, + STATE(3547), 1, sym_label, STATE(2487), 2, sym_line_comment, sym_block_comment, - [77315] = 8, + [76759] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - ACTIONS(5055), 1, - anon_sym_PLUS, - STATE(1416), 1, + ACTIONS(4999), 1, + anon_sym_LBRACE, + ACTIONS(5548), 1, + anon_sym_SEMI, + STATE(592), 1, sym_block, - STATE(3589), 1, + STATE(3592), 1, sym_label, STATE(2488), 2, sym_line_comment, sym_block_comment, - [77341] = 4, + [76785] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5550), 1, + anon_sym_RPAREN, + ACTIONS(5552), 1, + anon_sym_COMMA, + STATE(2933), 1, + aux_sym_parameters_repeat1, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2489), 2, sym_line_comment, sym_block_comment, - ACTIONS(5581), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77359] = 8, + [76809] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4511), 1, - anon_sym_COLON_COLON, - STATE(1184), 1, - sym_parameters, - STATE(1956), 1, - sym_type_arguments, + ACTIONS(3099), 1, + anon_sym_PLUS, + ACTIONS(4983), 1, + anon_sym_COLON, + STATE(3169), 1, + sym_trait_bounds, + ACTIONS(5528), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2490), 2, sym_line_comment, sym_block_comment, - [77385] = 4, + [76833] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + ACTIONS(5001), 1, + anon_sym_PLUS, + STATE(1454), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2491), 2, sym_line_comment, sym_block_comment, - ACTIONS(5583), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77403] = 4, + [76859] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -175608,13 +175076,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(2492), 2, sym_line_comment, sym_block_comment, - ACTIONS(5585), 5, + ACTIONS(5554), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [77421] = 4, + [76877] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -175622,160 +175090,158 @@ static const uint16_t ts_small_parse_table[] = { STATE(2493), 2, sym_line_comment, sym_block_comment, - ACTIONS(5587), 5, + ACTIONS(5556), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [77439] = 8, + [76895] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5055), 1, - anon_sym_PLUS, - STATE(1419), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2494), 2, sym_line_comment, sym_block_comment, - [77465] = 7, + ACTIONS(3327), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [76915] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_EQ, - ACTIONS(5045), 1, - anon_sym_COLON, - STATE(2794), 1, - sym_trait_bounds, - ACTIONS(5589), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5558), 1, + anon_sym_STAR_SLASH, + ACTIONS(5560), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5562), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5564), 1, + sym__block_comment_content, + STATE(3143), 1, + sym__block_doc_comment_marker, STATE(2495), 2, sym_line_comment, sym_block_comment, - [77489] = 6, + [76941] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5463), 1, - anon_sym_RBRACK, - ACTIONS(3370), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4513), 2, + ACTIONS(4834), 1, anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(5566), 1, + anon_sym_SEMI, + ACTIONS(5568), 1, + anon_sym_COLON, + ACTIONS(5570), 1, + anon_sym_EQ, + ACTIONS(5572), 1, + anon_sym_else, STATE(2496), 2, sym_line_comment, sym_block_comment, - [77511] = 8, + [76967] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4822), 1, - anon_sym_PIPE, - ACTIONS(5591), 1, - anon_sym_SEMI, - ACTIONS(5593), 1, + ACTIONS(4983), 1, anon_sym_COLON, - ACTIONS(5595), 1, - anon_sym_EQ, - ACTIONS(5597), 1, - anon_sym_else, + ACTIONS(5257), 1, + anon_sym_PLUS, + STATE(3193), 1, + sym_trait_bounds, + ACTIONS(5389), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2497), 2, sym_line_comment, sym_block_comment, - [77537] = 4, + [76991] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5574), 1, + anon_sym_DQUOTE, + STATE(2566), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5576), 2, + sym_string_content, + sym_escape_sequence, STATE(2498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3563), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77555] = 7, + [77012] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(5261), 1, - anon_sym_COLON, - ACTIONS(5263), 1, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5578), 1, anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5580), 1, + anon_sym_for, + STATE(1948), 1, + sym_type_arguments, STATE(2499), 2, sym_line_comment, sym_block_comment, - [77579] = 4, + [77035] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(4889), 1, + anon_sym_where, + STATE(1123), 1, + sym_declaration_list, + STATE(3205), 1, + sym_where_clause, STATE(2500), 2, sym_line_comment, sym_block_comment, - ACTIONS(5599), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77597] = 8, + [77058] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5601), 1, - anon_sym_SEMI, - ACTIONS(5603), 1, - anon_sym_COLON, - ACTIONS(5605), 1, - anon_sym_EQ, - ACTIONS(5607), 1, - anon_sym_else, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4930), 1, + anon_sym_LBRACE, + STATE(1129), 1, + sym_field_declaration_list, + STATE(3227), 1, + sym_where_clause, STATE(2501), 2, sym_line_comment, sym_block_comment, - [77623] = 5, + [77081] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4852), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5582), 1, + anon_sym_in, STATE(2502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3933), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [77643] = 4, + ACTIONS(5584), 3, + sym_self, + sym_super, + sym_crate, + [77100] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -175783,1064 +175249,1026 @@ static const uint16_t ts_small_parse_table[] = { STATE(2503), 2, sym_line_comment, sym_block_comment, - ACTIONS(3579), 5, - anon_sym_SEMI, + ACTIONS(4353), 4, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77661] = 4, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [77117] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1400), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3587), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77679] = 4, + [77140] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(688), 1, + sym_declaration_list, + STATE(3309), 1, + sym_where_clause, STATE(2505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77697] = 6, + [77163] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5609), 1, - anon_sym_RBRACK, - ACTIONS(3933), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4852), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(5586), 1, + anon_sym_COLON_COLON, STATE(2506), 2, sym_line_comment, sym_block_comment, - [77719] = 8, + ACTIONS(4728), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77182] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5055), 1, - anon_sym_PLUS, - STATE(1720), 1, - sym_block, - STATE(3638), 1, - sym_label, + ACTIONS(5588), 1, + anon_sym_COLON_COLON, STATE(2507), 2, sym_line_comment, sym_block_comment, - [77745] = 8, + ACTIONS(4746), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77201] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5348), 1, - anon_sym_GT, - ACTIONS(5350), 1, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(5590), 1, + anon_sym_RPAREN, + ACTIONS(5592), 1, anon_sym_COMMA, - STATE(3014), 1, - sym_trait_bounds, - STATE(3023), 1, - aux_sym_type_arguments_repeat1, + STATE(2797), 1, + aux_sym_slice_pattern_repeat1, STATE(2508), 2, sym_line_comment, sym_block_comment, - [77771] = 4, + [77224] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(5594), 1, + anon_sym_RPAREN, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(2800), 1, + aux_sym_slice_pattern_repeat1, STATE(2509), 2, sym_line_comment, sym_block_comment, - ACTIONS(5612), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77789] = 4, + [77247] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5598), 1, + anon_sym_COLON_COLON, STATE(2510), 2, sym_line_comment, sym_block_comment, - ACTIONS(5614), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77807] = 8, + ACTIONS(4746), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77266] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5616), 1, - anon_sym_SEMI, - STATE(746), 1, - sym_block, - STATE(3633), 1, - sym_label, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5454), 1, + anon_sym_RPAREN, + ACTIONS(5456), 1, + anon_sym_COMMA, + STATE(2803), 1, + aux_sym_parameters_repeat1, STATE(2511), 2, sym_line_comment, sym_block_comment, - [77833] = 8, + [77289] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5378), 1, - anon_sym_GT, - ACTIONS(5380), 1, - anon_sym_COMMA, - STATE(2892), 1, - sym_trait_bounds, - STATE(2893), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5600), 1, + anon_sym_COLON_COLON, STATE(2512), 2, sym_line_comment, sym_block_comment, - [77859] = 4, + ACTIONS(4746), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77308] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4485), 1, + anon_sym_LT2, + STATE(3512), 1, + sym_type_arguments, + ACTIONS(5602), 2, + sym_identifier, + sym_super, STATE(2513), 2, sym_line_comment, sym_block_comment, - ACTIONS(5618), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77877] = 7, + [77329] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5620), 1, - anon_sym_RPAREN, - ACTIONS(5622), 1, - anon_sym_COMMA, - STATE(2905), 1, - aux_sym_parameters_repeat1, - ACTIONS(4513), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(4485), 1, + anon_sym_LT2, + STATE(3561), 1, + sym_type_arguments, + ACTIONS(5602), 2, + sym_identifier, + sym_super, STATE(2514), 2, sym_line_comment, sym_block_comment, - [77901] = 6, + [77350] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3933), 1, - anon_sym_PLUS, - ACTIONS(4852), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5609), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5586), 1, + anon_sym_COLON_COLON, STATE(2515), 2, sym_line_comment, sym_block_comment, - [77923] = 8, + ACTIONS(4738), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77369] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5624), 1, - anon_sym_SEMI, - STATE(533), 1, - sym_block, - STATE(3633), 1, - sym_label, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5604), 1, + anon_sym_SEMI, + ACTIONS(5606), 1, + anon_sym_EQ, + ACTIONS(5608), 1, + anon_sym_else, STATE(2516), 2, sym_line_comment, sym_block_comment, - [77949] = 4, + [77392] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5588), 1, + anon_sym_COLON_COLON, STATE(2517), 2, sym_line_comment, sym_block_comment, - ACTIONS(5626), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77967] = 8, + ACTIONS(4686), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77411] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5628), 1, - anon_sym_GT, - ACTIONS(5630), 1, - anon_sym_COMMA, - STATE(2811), 1, - sym_trait_bounds, - STATE(2838), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5598), 1, + anon_sym_COLON_COLON, STATE(2518), 2, sym_line_comment, sym_block_comment, - [77993] = 8, + ACTIONS(4686), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77430] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5083), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(5632), 1, - anon_sym_SEMI, - STATE(1256), 1, - sym_block, - STATE(3636), 1, - sym_label, + ACTIONS(4889), 1, + anon_sym_where, + STATE(1172), 1, + sym_declaration_list, + STATE(3126), 1, + sym_where_clause, STATE(2519), 2, sym_line_comment, sym_block_comment, - [78019] = 4, + [77453] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5610), 1, + anon_sym_SEMI, + STATE(3397), 1, + sym_where_clause, STATE(2520), 2, sym_line_comment, sym_block_comment, - ACTIONS(5634), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78037] = 4, + [77476] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(4889), 1, + anon_sym_where, + STATE(1183), 1, + sym_declaration_list, + STATE(3140), 1, + sym_where_clause, STATE(2521), 2, sym_line_comment, sym_block_comment, - ACTIONS(5636), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78055] = 4, + [77499] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5612), 1, + anon_sym_COLON, STATE(2522), 2, sym_line_comment, sym_block_comment, - ACTIONS(5638), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4834), 3, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_where, - [78073] = 8, + [77518] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4712), 1, - anon_sym_GT, - ACTIONS(5045), 1, - anon_sym_COLON, - ACTIONS(5640), 1, - anon_sym_COMMA, - STATE(2811), 1, - sym_trait_bounds, - STATE(2925), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5253), 1, + anon_sym_LBRACE, + STATE(1188), 1, + sym_enum_variant_list, + STATE(3148), 1, + sym_where_clause, STATE(2523), 2, sym_line_comment, sym_block_comment, - [78099] = 8, + [77541] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5055), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, anon_sym_PLUS, - STATE(1414), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(5614), 1, + anon_sym_SEMI, + STATE(3406), 1, + sym_where_clause, STATE(2524), 2, sym_line_comment, sym_block_comment, - [78125] = 4, + [77564] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4930), 1, + anon_sym_LBRACE, + STATE(1194), 1, + sym_field_declaration_list, + STATE(3159), 1, + sym_where_clause, STATE(2525), 2, sym_line_comment, sym_block_comment, - ACTIONS(5642), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78143] = 8, + [77587] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5297), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5055), 1, - anon_sym_PLUS, - STATE(1850), 1, - sym_block, - STATE(3638), 1, - sym_label, + STATE(695), 1, + sym_enum_variant_list, + STATE(3161), 1, + sym_where_clause, STATE(2526), 2, sym_line_comment, sym_block_comment, - [78169] = 8, + [77610] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5037), 1, - anon_sym_LBRACE, - ACTIONS(5644), 1, - anon_sym_SEMI, - STATE(546), 1, - sym_block, - STATE(3633), 1, - sym_label, + ACTIONS(5600), 1, + anon_sym_COLON_COLON, STATE(2527), 2, sym_line_comment, sym_block_comment, - [78195] = 6, + ACTIONS(4686), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77629] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5648), 1, - anon_sym_COLON_COLON, - ACTIONS(5650), 1, - anon_sym_as, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1406), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2528), 2, sym_line_comment, sym_block_comment, - ACTIONS(5646), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [78217] = 6, + [77652] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5652), 1, - anon_sym_DQUOTE, - STATE(2730), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5654), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(534), 1, + sym_declaration_list, + STATE(3136), 1, + sym_where_clause, STATE(2529), 2, sym_line_comment, sym_block_comment, - [78238] = 4, + [77675] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5219), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2530), 2, sym_line_comment, sym_block_comment, - ACTIONS(4307), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [78255] = 7, + [77696] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(466), 1, - sym_block, - STATE(3637), 1, - sym_label, + STATE(610), 1, + sym_declaration_list, + STATE(3149), 1, + sym_where_clause, STATE(2531), 2, sym_line_comment, sym_block_comment, - [78278] = 5, + [77719] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5328), 1, - anon_sym_PLUS, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5616), 1, + sym_identifier, + ACTIONS(5618), 1, + sym_super, + STATE(2037), 1, + sym_type_arguments, STATE(2532), 2, sym_line_comment, sym_block_comment, - ACTIONS(5656), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [78297] = 7, - ACTIONS(103), 1, + [77742] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5658), 1, - anon_sym_LPAREN, - ACTIONS(5660), 1, - anon_sym_LBRACK, - ACTIONS(5662), 1, - anon_sym_LBRACE, - STATE(1964), 1, - sym_delim_token_tree, + ACTIONS(5620), 1, + aux_sym_token_repetition_pattern_token1, STATE(2533), 2, sym_line_comment, sym_block_comment, - [78320] = 7, + ACTIONS(5622), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [77761] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(481), 1, - sym_block, - STATE(3637), 1, - sym_label, STATE(2534), 2, sym_line_comment, sym_block_comment, - [78343] = 7, + ACTIONS(903), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [77778] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(456), 1, - sym_block, - STATE(3637), 1, - sym_label, + ACTIONS(4889), 1, + anon_sym_where, + STATE(701), 1, + sym_field_declaration_list, + STATE(3036), 1, + sym_where_clause, STATE(2535), 2, sym_line_comment, sym_block_comment, - [78366] = 5, + [77801] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_COLON_COLON, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(406), 1, + sym_block, + STATE(3522), 1, + sym_label, STATE(2536), 2, sym_line_comment, sym_block_comment, - ACTIONS(4782), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78385] = 7, + [77824] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, - anon_sym_LT2, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5666), 1, - sym_identifier, - STATE(1565), 1, - sym_type_arguments, + ACTIONS(1451), 1, + anon_sym_RPAREN, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5464), 1, + anon_sym_COMMA, + STATE(2838), 1, + aux_sym_parameters_repeat1, STATE(2537), 2, sym_line_comment, sym_block_comment, - [78408] = 7, + [77847] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(486), 1, - sym_block, - STATE(3637), 1, - sym_label, + STATE(759), 1, + sym_declaration_list, + STATE(3032), 1, + sym_where_clause, STATE(2538), 2, sym_line_comment, sym_block_comment, - [78431] = 6, + [77870] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5668), 1, - anon_sym_DQUOTE, - STATE(2730), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5654), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5624), 1, + anon_sym_SEMI, + ACTIONS(5626), 1, + anon_sym_EQ, + ACTIONS(5628), 1, + anon_sym_else, STATE(2539), 2, sym_line_comment, sym_block_comment, - [78452] = 7, + [77893] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5658), 1, - anon_sym_LPAREN, - ACTIONS(5660), 1, - anon_sym_LBRACK, - ACTIONS(5662), 1, - anon_sym_LBRACE, - STATE(1965), 1, - sym_delim_token_tree, + ACTIONS(5257), 1, + anon_sym_PLUS, STATE(2540), 2, sym_line_comment, sym_block_comment, - [78475] = 7, + ACTIONS(5630), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [77912] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4019), 1, - anon_sym_LT2, - ACTIONS(5670), 1, - sym_identifier, - ACTIONS(5672), 1, - sym_super, - STATE(1592), 1, - sym_type_arguments, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5632), 1, + anon_sym_SEMI, + STATE(3429), 1, + sym_where_clause, STATE(2541), 2, sym_line_comment, sym_block_comment, - [78498] = 7, + [77935] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4019), 1, - anon_sym_LT2, - ACTIONS(5670), 1, - sym_identifier, - ACTIONS(5672), 1, - sym_super, - STATE(1579), 1, - sym_type_arguments, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(4889), 1, + anon_sym_where, + STATE(1232), 1, + sym_declaration_list, + STATE(3246), 1, + sym_where_clause, STATE(2542), 2, sym_line_comment, sym_block_comment, - [78521] = 7, + [77958] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5674), 1, - anon_sym_SEMI, - STATE(3534), 1, - sym_where_clause, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_LT, + STATE(2207), 1, + sym_parameters, + STATE(3172), 1, + sym_type_parameters, STATE(2543), 2, sym_line_comment, sym_block_comment, - [78544] = 7, + [77981] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, - sym_identifier, - ACTIONS(5678), 1, - anon_sym_LT2, - ACTIONS(5680), 1, - sym_super, - STATE(2452), 1, - sym_type_arguments, STATE(2544), 2, sym_line_comment, sym_block_comment, - [78567] = 7, + ACTIONS(5409), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [77998] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, - sym_identifier, - ACTIONS(5678), 1, - anon_sym_LT2, - ACTIONS(5680), 1, - sym_super, - STATE(2471), 1, - sym_type_arguments, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5634), 1, + anon_sym_SEMI, + STATE(3459), 1, + sym_where_clause, STATE(2545), 2, sym_line_comment, sym_block_comment, - [78590] = 7, + [78021] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5682), 1, - anon_sym_RPAREN, - ACTIONS(5684), 1, - anon_sym_COMMA, - STATE(2800), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(4889), 1, + anon_sym_where, + STATE(1246), 1, + sym_declaration_list, + STATE(3252), 1, + sym_where_clause, STATE(2546), 2, sym_line_comment, sym_block_comment, - [78613] = 5, - ACTIONS(3), 1, + [78044] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5686), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5257), 1, + anon_sym_PLUS, STATE(2547), 2, sym_line_comment, sym_block_comment, - ACTIONS(5688), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [78632] = 7, + ACTIONS(5636), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [78063] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1447), 1, - anon_sym_RPAREN, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5461), 1, - anon_sym_COMMA, - STATE(2967), 1, - aux_sym_parameters_repeat1, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5616), 1, + sym_identifier, + ACTIONS(5618), 1, + sym_super, + STATE(2036), 1, + sym_type_arguments, STATE(2548), 2, sym_line_comment, sym_block_comment, - [78655] = 4, + [78086] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5638), 1, + anon_sym_LPAREN, + ACTIONS(5640), 1, + anon_sym_LBRACK, + ACTIONS(5642), 1, + anon_sym_LBRACE, + STATE(392), 1, + sym_delim_token_tree, STATE(2549), 2, sym_line_comment, sym_block_comment, - ACTIONS(5690), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [78672] = 7, + [78109] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5692), 1, + ACTIONS(4161), 1, + anon_sym_LBRACE, + STATE(2834), 1, + sym_use_list, + ACTIONS(5644), 2, sym_identifier, - STATE(3641), 1, - sym_type_arguments, + sym_super, STATE(2550), 2, sym_line_comment, sym_block_comment, - [78695] = 7, + [78130] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5694), 1, - anon_sym_SEMI, - STATE(3482), 1, - sym_where_clause, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(391), 1, + sym_block, + STATE(3522), 1, + sym_label, STATE(2551), 2, sym_line_comment, sym_block_comment, - [78718] = 7, + [78153] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4013), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, - anon_sym_LT2, - STATE(1614), 1, - sym_parameters, - STATE(1958), 1, - sym_type_arguments, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5646), 1, + anon_sym_SEMI, + STATE(3480), 1, + sym_where_clause, STATE(2552), 2, sym_line_comment, sym_block_comment, - [78741] = 7, + [78176] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5692), 1, - sym_identifier, - STATE(3457), 1, - sym_type_arguments, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5648), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2553), 2, sym_line_comment, sym_block_comment, - [78764] = 7, + [78195] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - STATE(1958), 1, + STATE(3512), 1, sym_type_arguments, - STATE(1977), 1, - sym_parameters, + ACTIONS(5123), 2, + sym_identifier, + sym_super, STATE(2554), 2, sym_line_comment, sym_block_comment, - [78787] = 4, + [78216] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4485), 1, + anon_sym_LT2, + STATE(3561), 1, + sym_type_arguments, + ACTIONS(5123), 2, + sym_identifier, + sym_super, STATE(2555), 2, sym_line_comment, sym_block_comment, - ACTIONS(5484), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78804] = 6, + [78237] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4147), 1, - anon_sym_LBRACE, - STATE(3071), 1, - sym_use_list, - ACTIONS(5696), 2, - sym_identifier, - sym_super, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5650), 1, + anon_sym_RPAREN, + ACTIONS(5652), 1, + anon_sym_COMMA, + STATE(2984), 1, + aux_sym_tuple_type_repeat1, STATE(2556), 2, sym_line_comment, sym_block_comment, - [78825] = 7, + [78260] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(479), 1, - sym_block, - STATE(3637), 1, - sym_label, + ACTIONS(4983), 1, + anon_sym_COLON, + STATE(3193), 1, + sym_trait_bounds, + ACTIONS(5389), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2557), 2, sym_line_comment, sym_block_comment, - [78848] = 6, + [78281] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - STATE(3457), 1, + ACTIONS(5578), 1, + anon_sym_COLON_COLON, + ACTIONS(5654), 1, + anon_sym_for, + STATE(1948), 1, sym_type_arguments, - ACTIONS(5215), 2, - sym_identifier, - sym_super, STATE(2558), 2, sym_line_comment, sym_block_comment, - [78869] = 5, + [78304] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, anon_sym_PLUS, + ACTIONS(5656), 1, + anon_sym_SEMI, + STATE(3604), 1, + sym_where_clause, STATE(2559), 2, sym_line_comment, sym_block_comment, - ACTIONS(5698), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [78888] = 7, + [78327] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(756), 1, + ACTIONS(4889), 1, + anon_sym_where, + STATE(1296), 1, sym_declaration_list, - STATE(3294), 1, + STATE(3187), 1, sym_where_clause, STATE(2560), 2, sym_line_comment, sym_block_comment, - [78911] = 7, + [78350] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, - anon_sym_LT2, - ACTIONS(3607), 1, - anon_sym_COLON_COLON, - ACTIONS(4916), 1, - anon_sym_BANG, - STATE(1369), 1, - sym_type_arguments, + ACTIONS(4885), 1, + anon_sym_LBRACE, + ACTIONS(4889), 1, + anon_sym_where, + STATE(616), 1, + sym_field_declaration_list, + STATE(3293), 1, + sym_where_clause, STATE(2561), 2, sym_line_comment, sym_block_comment, - [78934] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5557), 1, - anon_sym_RPAREN, - ACTIONS(5559), 1, - anon_sym_COMMA, - STATE(2820), 1, - aux_sym_parameters_repeat1, - STATE(2562), 2, - sym_line_comment, - sym_block_comment, - [78957] = 7, + [78373] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1469), 1, + STATE(403), 1, sym_block, - STATE(3589), 1, + STATE(3522), 1, sym_label, - STATE(2563), 2, + STATE(2562), 2, sym_line_comment, sym_block_comment, - [78980] = 7, + [78396] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5360), 1, + ACTIONS(5658), 1, + anon_sym_LPAREN, + ACTIONS(5660), 1, + anon_sym_LBRACK, + ACTIONS(5662), 1, anon_sym_LBRACE, - STATE(578), 1, - sym_enum_variant_list, - STATE(3340), 1, - sym_where_clause, - STATE(2564), 2, + STATE(2626), 1, + sym_token_tree, + STATE(2563), 2, sym_line_comment, sym_block_comment, - [79003] = 6, + [78419] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(5263), 1, - anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2565), 2, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(285), 1, + sym_block, + STATE(3522), 1, + sym_label, + STATE(2564), 2, sym_line_comment, sym_block_comment, - [79024] = 7, + [78442] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5700), 1, - anon_sym_RPAREN, - ACTIONS(5702), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5664), 1, + anon_sym_EQ, + ACTIONS(5666), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2785), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2566), 2, + STATE(2565), 2, sym_line_comment, sym_block_comment, - [79047] = 7, + [78463] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5704), 1, - anon_sym_RBRACK, - ACTIONS(5706), 1, - anon_sym_COMMA, - STATE(2788), 1, - aux_sym_slice_pattern_repeat1, - STATE(2567), 2, + ACTIONS(5668), 1, + anon_sym_DQUOTE, + ACTIONS(5670), 2, + sym_string_content, + sym_escape_sequence, + STATE(2566), 3, sym_line_comment, sym_block_comment, - [79070] = 7, + aux_sym_string_literal_repeat1, + [78482] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, - anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(477), 1, + STATE(396), 1, sym_block, - STATE(3637), 1, + STATE(3522), 1, sym_label, - STATE(2568), 2, + STATE(2567), 2, sym_line_comment, sym_block_comment, - [79093] = 7, + [78505] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_GT, - ACTIONS(5569), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5673), 1, + anon_sym_RPAREN, + ACTIONS(5675), 1, anon_sym_COMMA, - ACTIONS(5708), 1, - anon_sym_EQ, - STATE(2922), 1, - aux_sym_type_parameters_repeat1, - STATE(2569), 2, + STATE(3003), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2568), 2, sym_line_comment, sym_block_comment, - [79116] = 5, + [78528] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5710), 1, - anon_sym_COLON, - STATE(2570), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4822), 3, - anon_sym_RPAREN, + ACTIONS(5395), 1, anon_sym_PIPE, + ACTIONS(5677), 1, + anon_sym_RPAREN, + ACTIONS(5679), 1, anon_sym_COMMA, - [79135] = 7, + STATE(2935), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2569), 2, + sym_line_comment, + sym_block_comment, + [78551] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -176849,14 +176277,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1477), 1, + STATE(1375), 1, sym_block, - STATE(3589), 1, + STATE(3547), 1, sym_label, + STATE(2570), 2, + sym_line_comment, + sym_block_comment, + [78574] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5518), 1, + anon_sym_COLON, + ACTIONS(5520), 1, + anon_sym_PIPE, + ACTIONS(5522), 1, + anon_sym_COMMA, + STATE(2828), 1, + aux_sym_closure_parameters_repeat1, STATE(2571), 2, sym_line_comment, sym_block_comment, - [79158] = 7, + [78597] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -176865,94 +176309,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1470), 1, + STATE(1381), 1, sym_block, - STATE(3589), 1, + STATE(3547), 1, sym_label, STATE(2572), 2, sym_line_comment, sym_block_comment, - [79181] = 7, + [78620] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5185), 1, - anon_sym_LPAREN, - ACTIONS(5187), 1, - anon_sym_LBRACK, - ACTIONS(5191), 1, - anon_sym_LBRACE, - STATE(1441), 1, - sym_delim_token_tree, + ACTIONS(5681), 1, + anon_sym_DQUOTE, + STATE(2660), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5576), 2, + sym_string_content, + sym_escape_sequence, STATE(2573), 2, sym_line_comment, sym_block_comment, - [79204] = 7, + [78641] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1465), 1, - anon_sym_RPAREN, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5573), 1, - anon_sym_COMMA, - STATE(2828), 1, - aux_sym_parameters_repeat1, + ACTIONS(1229), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(479), 1, + sym_block, + STATE(3596), 1, + sym_label, STATE(2574), 2, sym_line_comment, sym_block_comment, - [79227] = 7, + [78664] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5712), 1, - anon_sym_COLON_COLON, - ACTIONS(5714), 1, - anon_sym_for, - STATE(1956), 1, - sym_type_arguments, + ACTIONS(1229), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(467), 1, + sym_block, + STATE(3596), 1, + sym_label, STATE(2575), 2, sym_line_comment, sym_block_comment, - [79250] = 7, + [78687] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5683), 1, + anon_sym_DQUOTE, + STATE(2587), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5576), 2, + sym_string_content, + sym_escape_sequence, + STATE(2576), 2, + sym_line_comment, + sym_block_comment, + [78708] = 7, + ACTIONS(19), 1, anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(3589), 1, - sym_label, - STATE(3622), 1, + STATE(395), 1, sym_block, - STATE(2576), 2, + STATE(3522), 1, + sym_label, + STATE(2577), 2, sym_line_comment, sym_block_comment, - [79273] = 7, + [78731] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1693), 1, + ACTIONS(4993), 1, + anon_sym_LBRACE, + STATE(2849), 1, sym_block, - STATE(3638), 1, + STATE(3595), 1, sym_label, - STATE(2577), 2, + STATE(2578), 2, sym_line_comment, sym_block_comment, - [79296] = 7, + [78754] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -176961,362 +176419,374 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1798), 1, + STATE(1664), 1, sym_block, - STATE(3638), 1, + STATE(3597), 1, sym_label, - STATE(2578), 2, + STATE(2579), 2, sym_line_comment, sym_block_comment, - [79319] = 6, + [78777] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5716), 1, - anon_sym_DQUOTE, - STATE(2586), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5654), 2, - sym_string_content, - sym_escape_sequence, - STATE(2579), 2, + ACTIONS(4003), 1, + anon_sym_LT2, + ACTIONS(4119), 1, + anon_sym_COLON_COLON, + ACTIONS(4786), 1, + anon_sym_BANG, + STATE(1609), 1, + sym_type_arguments, + STATE(2580), 2, sym_line_comment, sym_block_comment, - [79340] = 7, + [78800] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(1229), 1, anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(474), 1, + STATE(480), 1, sym_block, - STATE(3637), 1, + STATE(3596), 1, sym_label, - STATE(2580), 2, + STATE(2581), 2, sym_line_comment, sym_block_comment, - [79363] = 7, + [78823] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1772), 1, - sym_block, - STATE(3638), 1, + STATE(3547), 1, sym_label, - STATE(2581), 2, + STATE(3613), 1, + sym_block, + STATE(2582), 2, sym_line_comment, sym_block_comment, - [79386] = 7, + [78846] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5718), 1, + ACTIONS(5685), 1, anon_sym_LPAREN, - ACTIONS(5720), 1, + ACTIONS(5687), 1, anon_sym_LBRACK, - ACTIONS(5722), 1, + ACTIONS(5689), 1, anon_sym_LBRACE, - STATE(1027), 1, + STATE(1957), 1, sym_delim_token_tree, - STATE(2582), 2, + STATE(2583), 2, sym_line_comment, sym_block_comment, - [79409] = 7, + [78869] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1229), 1, anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1797), 1, + STATE(489), 1, sym_block, - STATE(3638), 1, + STATE(3596), 1, sym_label, - STATE(2583), 2, + STATE(2584), 2, sym_line_comment, sym_block_comment, - [79432] = 7, + [78892] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1229), 1, anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1572), 1, + STATE(456), 1, sym_block, - STATE(3638), 1, + STATE(3596), 1, sym_label, - STATE(2584), 2, + STATE(2585), 2, sym_line_comment, sym_block_comment, - [79455] = 7, + [78915] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1229), 1, anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1811), 1, + STATE(469), 1, sym_block, - STATE(3638), 1, + STATE(3596), 1, sym_label, - STATE(2585), 2, + STATE(2586), 2, sym_line_comment, sym_block_comment, - [79478] = 6, + [78938] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5724), 1, + ACTIONS(5691), 1, anon_sym_DQUOTE, - STATE(2730), 1, + STATE(2566), 1, aux_sym_string_literal_repeat1, - ACTIONS(5654), 2, + ACTIONS(5576), 2, sym_string_content, sym_escape_sequence, - STATE(2586), 2, + STATE(2587), 2, sym_line_comment, sym_block_comment, - [79499] = 7, + [78959] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5718), 1, + ACTIONS(5685), 1, anon_sym_LPAREN, - ACTIONS(5720), 1, + ACTIONS(5687), 1, anon_sym_LBRACK, - ACTIONS(5722), 1, + ACTIONS(5689), 1, anon_sym_LBRACE, - STATE(1028), 1, + STATE(1960), 1, sym_delim_token_tree, - STATE(2587), 2, - sym_line_comment, - sym_block_comment, - [79522] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5726), 1, - sym_identifier, - ACTIONS(5728), 1, - sym_super, - STATE(2042), 1, - sym_type_arguments, STATE(2588), 2, sym_line_comment, sym_block_comment, - [79545] = 7, + [78982] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4003), 1, anon_sym_LT2, - ACTIONS(5726), 1, + ACTIONS(5693), 1, sym_identifier, - ACTIONS(5728), 1, + ACTIONS(5695), 1, sym_super, - STATE(2050), 1, + STATE(1559), 1, sym_type_arguments, STATE(2589), 2, sym_line_comment, sym_block_comment, - [79568] = 7, + [79005] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4003), 1, anon_sym_LT2, - ACTIONS(5728), 1, - sym_super, - ACTIONS(5730), 1, + ACTIONS(5693), 1, sym_identifier, - STATE(3641), 1, + ACTIONS(5695), 1, + sym_super, + STATE(1561), 1, sym_type_arguments, STATE(2590), 2, sym_line_comment, sym_block_comment, - [79591] = 7, + [79028] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5728), 1, + ACTIONS(5602), 1, sym_super, - ACTIONS(5730), 1, + ACTIONS(5697), 1, sym_identifier, - STATE(3457), 1, + ACTIONS(5699), 1, + anon_sym_LT2, + STATE(2411), 1, sym_type_arguments, STATE(2591), 2, sym_line_comment, sym_block_comment, - [79614] = 6, + [79051] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5732), 1, - anon_sym_DQUOTE, - STATE(2529), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5654), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5602), 1, + sym_super, + ACTIONS(5697), 1, + sym_identifier, + ACTIONS(5699), 1, + anon_sym_LT2, + STATE(2412), 1, + sym_type_arguments, STATE(2592), 2, sym_line_comment, sym_block_comment, - [79635] = 6, + [79074] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5734), 1, - anon_sym_DQUOTE, - STATE(2696), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5654), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5701), 1, + anon_sym_RPAREN, + ACTIONS(5703), 1, + anon_sym_COMMA, + STATE(2888), 1, + aux_sym_tuple_type_repeat1, STATE(2593), 2, sym_line_comment, sym_block_comment, - [79656] = 7, + [79097] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5549), 1, - anon_sym_COLON, - ACTIONS(5551), 1, - anon_sym_PIPE, - ACTIONS(5553), 1, - anon_sym_COMMA, - STATE(2772), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5123), 1, + sym_super, + ACTIONS(5616), 1, + sym_identifier, + STATE(3512), 1, + sym_type_arguments, STATE(2594), 2, sym_line_comment, sym_block_comment, - [79679] = 7, + [79120] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(1601), 1, anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(3386), 1, + STATE(2124), 1, sym_block, - STATE(3589), 1, + STATE(3588), 1, sym_label, STATE(2595), 2, sym_line_comment, sym_block_comment, - [79702] = 7, + [79143] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(1707), 1, - sym_block, - STATE(3638), 1, - sym_label, + ACTIONS(3997), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_LT2, + STATE(1622), 1, + sym_parameters, + STATE(1950), 1, + sym_type_arguments, STATE(2596), 2, sym_line_comment, sym_block_comment, - [79725] = 7, + [79166] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(5728), 1, + ACTIONS(5123), 1, sym_super, - ACTIONS(5736), 1, + ACTIONS(5616), 1, sym_identifier, - STATE(2042), 1, + STATE(3561), 1, sym_type_arguments, STATE(2597), 2, sym_line_comment, sym_block_comment, - [79748] = 7, + [79189] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5728), 1, - sym_super, - ACTIONS(5736), 1, - sym_identifier, - STATE(2050), 1, - sym_type_arguments, + ACTIONS(5395), 1, + anon_sym_PIPE, STATE(2598), 2, sym_line_comment, sym_block_comment, - [79771] = 7, + ACTIONS(5705), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [79208] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5707), 1, + anon_sym_COMMA, + ACTIONS(5705), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2599), 3, + sym_line_comment, + sym_block_comment, + aux_sym_slice_pattern_repeat1, + [79227] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1229), 1, anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1406), 1, + STATE(472), 1, sym_block, - STATE(3589), 1, + STATE(3596), 1, sym_label, - STATE(2599), 2, + STATE(2600), 2, sym_line_comment, sym_block_comment, - [79794] = 7, + [79250] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, + STATE(2601), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3263), 4, + anon_sym_COLON, anon_sym_PLUS, - ACTIONS(5738), 1, - anon_sym_SEMI, - ACTIONS(5740), 1, - anon_sym_EQ, - ACTIONS(5742), 1, - anon_sym_else, - STATE(2600), 2, + anon_sym_GT, + anon_sym_COMMA, + [79267] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1229), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(475), 1, + sym_block, + STATE(3596), 1, + sym_label, + STATE(2602), 2, sym_line_comment, sym_block_comment, - [79817] = 7, + [79290] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -177325,1533 +176795,1508 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(3589), 1, + STATE(3547), 1, sym_label, - STATE(3634), 1, + STATE(3589), 1, sym_block, - STATE(2601), 2, + STATE(2603), 2, sym_line_comment, sym_block_comment, - [79840] = 7, + [79313] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1415), 1, - anon_sym_RPAREN, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5511), 1, - anon_sym_COMMA, - STATE(2919), 1, - aux_sym_parameters_repeat1, - STATE(2602), 2, + ACTIONS(4650), 1, + anon_sym_DOT_DOT, + ACTIONS(5710), 1, + anon_sym_COLON_COLON, + ACTIONS(4652), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2604), 2, sym_line_comment, sym_block_comment, - [79863] = 7, + [79334] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5744), 1, + ACTIONS(5504), 1, anon_sym_RPAREN, - ACTIONS(5746), 1, + ACTIONS(5506), 1, anon_sym_COMMA, - STATE(2797), 1, - aux_sym_tuple_type_repeat1, - STATE(2603), 2, + STATE(2900), 1, + aux_sym_parameters_repeat1, + STATE(2605), 2, sym_line_comment, sym_block_comment, - [79886] = 7, + [79357] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(1187), 1, - sym_block, - STATE(3589), 1, - sym_label, - STATE(2604), 2, + ACTIONS(5712), 1, + anon_sym_DQUOTE, + STATE(2614), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5576), 2, + sym_string_content, + sym_escape_sequence, + STATE(2606), 2, sym_line_comment, sym_block_comment, - [79909] = 7, + [79378] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1728), 1, - sym_block, - STATE(3638), 1, + STATE(3547), 1, sym_label, - STATE(2605), 2, - sym_line_comment, - sym_block_comment, - [79932] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(409), 1, + STATE(3594), 1, sym_block, - STATE(3600), 1, - sym_label, - STATE(2606), 2, + STATE(2607), 2, sym_line_comment, sym_block_comment, - [79955] = 7, + [79401] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5312), 1, - anon_sym_LBRACE, - STATE(1290), 1, - sym_enum_variant_list, - STATE(3275), 1, - sym_where_clause, - STATE(2607), 2, + ACTIONS(3299), 1, + anon_sym_LT2, + ACTIONS(3473), 1, + anon_sym_COLON_COLON, + ACTIONS(4872), 1, + anon_sym_BANG, + STATE(1074), 1, + sym_type_arguments, + STATE(2608), 2, sym_line_comment, sym_block_comment, - [79978] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [79424] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(405), 1, + STATE(1373), 1, sym_block, - STATE(3600), 1, + STATE(3547), 1, sym_label, - STATE(2608), 2, - sym_line_comment, - sym_block_comment, - [80001] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5748), 1, - anon_sym_DQUOTE, - STATE(2614), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5654), 2, - sym_string_content, - sym_escape_sequence, STATE(2609), 2, sym_line_comment, sym_block_comment, - [80022] = 7, + [79447] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(1229), 1, anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1747), 1, + STATE(481), 1, sym_block, - STATE(3638), 1, + STATE(3596), 1, sym_label, STATE(2610), 2, sym_line_comment, sym_block_comment, - [80045] = 5, - ACTIONS(3), 1, + [79470] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5750), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5001), 1, + anon_sym_PLUS, STATE(2611), 2, sym_line_comment, sym_block_comment, - ACTIONS(5752), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [80064] = 6, + ACTIONS(5714), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [79489] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_COLON, - STATE(3351), 1, - sym_trait_bounds, - ACTIONS(5571), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5137), 1, + anon_sym_LBRACK, + ACTIONS(5141), 1, + anon_sym_LBRACE, + STATE(1374), 1, + sym_delim_token_tree, STATE(2612), 2, sym_line_comment, sym_block_comment, - [80085] = 7, + [79512] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5754), 1, - anon_sym_LPAREN, - ACTIONS(5756), 1, - anon_sym_LBRACK, - ACTIONS(5758), 1, - anon_sym_LBRACE, - STATE(1757), 1, - sym_delim_token_tree, + ACTIONS(1407), 1, + anon_sym_RPAREN, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5514), 1, + anon_sym_COMMA, + STATE(2906), 1, + aux_sym_parameters_repeat1, STATE(2613), 2, sym_line_comment, sym_block_comment, - [80108] = 6, + [79535] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5760), 1, + ACTIONS(5716), 1, anon_sym_DQUOTE, - STATE(2730), 1, + STATE(2566), 1, aux_sym_string_literal_repeat1, - ACTIONS(5654), 2, + ACTIONS(5576), 2, sym_string_content, sym_escape_sequence, STATE(2614), 2, sym_line_comment, sym_block_comment, - [80129] = 7, + [79556] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5754), 1, - anon_sym_LPAREN, - ACTIONS(5756), 1, - anon_sym_LBRACK, - ACTIONS(5758), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - STATE(1770), 1, - sym_delim_token_tree, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1663), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2615), 2, sym_line_comment, sym_block_comment, - [80152] = 7, + [79579] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5728), 1, - sym_super, - ACTIONS(5762), 1, - sym_identifier, - STATE(2042), 1, - sym_type_arguments, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1665), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2616), 2, sym_line_comment, sym_block_comment, - [80175] = 7, + [79602] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5728), 1, - sym_super, - ACTIONS(5762), 1, - sym_identifier, - STATE(2050), 1, - sym_type_arguments, + ACTIONS(5718), 1, + anon_sym_DQUOTE, + STATE(2498), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5576), 2, + sym_string_content, + sym_escape_sequence, STATE(2617), 2, sym_line_comment, sym_block_comment, - [80198] = 7, + [79623] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5730), 1, - sym_identifier, - STATE(3641), 1, - sym_type_arguments, + ACTIONS(1229), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(485), 1, + sym_block, + STATE(3596), 1, + sym_label, STATE(2618), 2, sym_line_comment, sym_block_comment, - [80221] = 7, + [79646] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5730), 1, - sym_identifier, - STATE(3457), 1, - sym_type_arguments, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1668), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2619), 2, sym_line_comment, sym_block_comment, - [80244] = 7, + [79669] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5764), 1, - sym_identifier, - STATE(3641), 1, - sym_type_arguments, + ACTIONS(5720), 1, + anon_sym_LPAREN, + ACTIONS(5722), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_LBRACE, + STATE(1026), 1, + sym_delim_token_tree, STATE(2620), 2, sym_line_comment, sym_block_comment, - [80267] = 7, + [79692] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LT, - STATE(2240), 1, - sym_parameters, - STATE(3180), 1, - sym_type_parameters, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1670), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2621), 2, sym_line_comment, sym_block_comment, - [80290] = 7, + [79715] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(407), 1, anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(1464), 1, + STATE(1566), 1, sym_block, - STATE(3589), 1, + STATE(3597), 1, sym_label, STATE(2622), 2, sym_line_comment, sym_block_comment, - [80313] = 6, + [79738] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5766), 1, - anon_sym_DQUOTE, - STATE(2624), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5654), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5638), 1, + anon_sym_LPAREN, + ACTIONS(5640), 1, + anon_sym_LBRACK, + ACTIONS(5642), 1, + anon_sym_LBRACE, + STATE(408), 1, + sym_delim_token_tree, STATE(2623), 2, sym_line_comment, sym_block_comment, - [80334] = 6, + [79761] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5768), 1, - anon_sym_DQUOTE, - STATE(2730), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5654), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1674), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2624), 2, sym_line_comment, sym_block_comment, - [80355] = 7, + [79784] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5770), 1, - anon_sym_RPAREN, - ACTIONS(5772), 1, - anon_sym_COMMA, - STATE(2955), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(5726), 1, + sym_identifier, STATE(2625), 2, sym_line_comment, sym_block_comment, - [80378] = 7, + ACTIONS(5728), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [79803] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5728), 1, - sym_super, - ACTIONS(5774), 1, - sym_identifier, - STATE(3641), 1, - sym_type_arguments, STATE(2626), 2, sym_line_comment, sym_block_comment, - [80401] = 7, + ACTIONS(5730), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [79820] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(5728), 1, + ACTIONS(5618), 1, sym_super, - ACTIONS(5774), 1, + ACTIONS(5732), 1, sym_identifier, - STATE(3457), 1, + STATE(2037), 1, sym_type_arguments, STATE(2627), 2, sym_line_comment, sym_block_comment, - [80424] = 5, + [79843] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5776), 1, - anon_sym_COLON_COLON, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5732), 1, + sym_identifier, + STATE(2036), 1, + sym_type_arguments, STATE(2628), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80443] = 5, + [79866] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5778), 1, - anon_sym_in, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5734), 1, + sym_identifier, + STATE(3512), 1, + sym_type_arguments, STATE(2629), 2, sym_line_comment, sym_block_comment, - ACTIONS(5780), 3, - sym_self, - sym_super, - sym_crate, - [80462] = 7, + [79889] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5782), 1, - anon_sym_SEMI, - STATE(3657), 1, - sym_where_clause, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5734), 1, + sym_identifier, + STATE(3561), 1, + sym_type_arguments, STATE(2630), 2, sym_line_comment, sym_block_comment, - [80485] = 7, + [79912] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(673), 1, - sym_declaration_list, - STATE(3241), 1, - sym_where_clause, + ACTIONS(3299), 1, + anon_sym_LT2, + ACTIONS(5123), 1, + sym_super, + ACTIONS(5736), 1, + sym_identifier, + STATE(1418), 1, + sym_type_arguments, STATE(2631), 2, sym_line_comment, sym_block_comment, - [80508] = 7, + [79935] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5784), 1, - anon_sym_RBRACK, - ACTIONS(5786), 1, - anon_sym_COMMA, - STATE(2960), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1692), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2632), 2, sym_line_comment, sym_block_comment, - [80531] = 7, + [79958] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(1114), 1, - sym_declaration_list, - STATE(3355), 1, - sym_where_clause, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1380), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2633), 2, sym_line_comment, sym_block_comment, - [80554] = 7, + [79981] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5788), 1, - anon_sym_RPAREN, - ACTIONS(5790), 1, - anon_sym_COMMA, - STATE(2845), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5738), 1, + sym_identifier, + STATE(3512), 1, + sym_type_arguments, STATE(2634), 2, sym_line_comment, sym_block_comment, - [80577] = 7, + [80004] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5455), 1, - anon_sym_RPAREN, - ACTIONS(5457), 1, - anon_sym_COMMA, - STATE(3049), 1, - aux_sym_parameters_repeat1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1086), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2635), 2, sym_line_comment, sym_block_comment, - [80600] = 7, + [80027] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5792), 1, - anon_sym_LPAREN, - ACTIONS(5794), 1, - anon_sym_LBRACK, - ACTIONS(5796), 1, - anon_sym_LBRACE, - STATE(406), 1, - sym_delim_token_tree, - STATE(2636), 2, + ACTIONS(5740), 1, + anon_sym_COMMA, + ACTIONS(4149), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2636), 3, sym_line_comment, sym_block_comment, - [80623] = 7, + aux_sym_arguments_repeat1, + [80046] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5774), 1, - sym_identifier, - STATE(3641), 1, - sym_type_arguments, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1698), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2637), 2, sym_line_comment, sym_block_comment, - [80646] = 7, + [80069] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5774), 1, - sym_identifier, - STATE(3457), 1, - sym_type_arguments, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(5743), 1, + anon_sym_RBRACK, + ACTIONS(5745), 1, + anon_sym_COMMA, + STATE(2942), 1, + aux_sym_slice_pattern_repeat1, STATE(2638), 2, sym_line_comment, sym_block_comment, - [80669] = 7, + [80092] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_LPAREN, - ACTIONS(4509), 1, - anon_sym_LT2, - STATE(1185), 1, - sym_parameters, - STATE(1958), 1, - sym_type_arguments, + ACTIONS(5747), 1, + anon_sym_DQUOTE, + STATE(2642), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5576), 2, + sym_string_content, + sym_escape_sequence, STATE(2639), 2, sym_line_comment, sym_block_comment, - [80692] = 7, + [80113] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5798), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5800), 1, - anon_sym_for, - ACTIONS(5802), 1, - anon_sym_loop, - ACTIONS(5804), 1, - anon_sym_while, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1704), 1, + sym_block, + STATE(3597), 1, + sym_label, STATE(2640), 2, sym_line_comment, sym_block_comment, - [80715] = 7, + [80136] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5764), 1, - sym_identifier, - STATE(3457), 1, - sym_type_arguments, + ACTIONS(5749), 1, + anon_sym_LPAREN, + ACTIONS(5751), 1, + anon_sym_LBRACK, + ACTIONS(5753), 1, + anon_sym_LBRACE, + STATE(1708), 1, + sym_delim_token_tree, STATE(2641), 2, sym_line_comment, sym_block_comment, - [80738] = 7, + [80159] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, - anon_sym_LT2, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5806), 1, - sym_identifier, - STATE(1468), 1, - sym_type_arguments, + ACTIONS(5755), 1, + anon_sym_DQUOTE, + STATE(2566), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5576), 2, + sym_string_content, + sym_escape_sequence, STATE(2642), 2, sym_line_comment, sym_block_comment, - [80761] = 4, + [80180] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5749), 1, + anon_sym_LPAREN, + ACTIONS(5751), 1, + anon_sym_LBRACK, + ACTIONS(5753), 1, + anon_sym_LBRACE, + STATE(1711), 1, + sym_delim_token_tree, STATE(2643), 2, sym_line_comment, sym_block_comment, - ACTIONS(963), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [80778] = 5, + [80203] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5757), 1, + sym_identifier, + STATE(2037), 1, + sym_type_arguments, STATE(2644), 2, sym_line_comment, sym_block_comment, - ACTIONS(5808), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [80797] = 5, - ACTIONS(3), 1, + [80226] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5810), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5757), 1, + sym_identifier, + STATE(2036), 1, + sym_type_arguments, STATE(2645), 2, sym_line_comment, sym_block_comment, - ACTIONS(5812), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [80816] = 7, + [80249] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(5045), 1, - anon_sym_COLON, - STATE(1958), 1, + ACTIONS(5123), 1, + sym_super, + ACTIONS(5734), 1, + sym_identifier, + STATE(3512), 1, sym_type_arguments, - STATE(2666), 1, - sym_trait_bounds, STATE(2646), 2, sym_line_comment, sym_block_comment, - [80839] = 7, + [80272] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5814), 1, - anon_sym_RPAREN, - ACTIONS(5816), 1, - anon_sym_COMMA, - STATE(2857), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5123), 1, + sym_super, + ACTIONS(5734), 1, + sym_identifier, + STATE(3561), 1, + sym_type_arguments, STATE(2647), 2, sym_line_comment, sym_block_comment, - [80862] = 7, + [80295] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LT, - STATE(2202), 1, - sym_parameters, - STATE(3301), 1, - sym_type_parameters, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5759), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2648), 2, sym_line_comment, sym_block_comment, - [80885] = 7, + [80314] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, + ACTIONS(343), 1, anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(2134), 1, + STATE(3439), 1, sym_block, - STATE(3629), 1, + STATE(3547), 1, sym_label, STATE(2649), 2, sym_line_comment, sym_block_comment, - [80908] = 6, + [80337] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(5231), 1, - anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5761), 1, + anon_sym_COLON, STATE(2650), 2, sym_line_comment, sym_block_comment, - [80929] = 5, + ACTIONS(4834), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [80356] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4513), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5818), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_LT, + STATE(2213), 1, + sym_parameters, + STATE(3120), 1, + sym_type_parameters, STATE(2651), 2, sym_line_comment, sym_block_comment, - [80948] = 6, + [80379] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_COLON, - STATE(2811), 1, - sym_trait_bounds, - ACTIONS(5820), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5763), 1, + anon_sym_DQUOTE, + STATE(2655), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5576), 2, + sym_string_content, + sym_escape_sequence, STATE(2652), 2, sym_line_comment, sym_block_comment, - [80969] = 7, + [80400] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, + ACTIONS(1453), 1, + anon_sym_RPAREN, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(5822), 1, - anon_sym_SEMI, - ACTIONS(5824), 1, - anon_sym_EQ, - ACTIONS(5826), 1, - anon_sym_else, + ACTIONS(5526), 1, + anon_sym_COMMA, + STATE(2777), 1, + aux_sym_parameters_repeat1, STATE(2653), 2, sym_line_comment, sym_block_comment, - [80992] = 7, - ACTIONS(103), 1, + [80423] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LT, - STATE(2216), 1, - sym_parameters, - STATE(3249), 1, - sym_type_parameters, + ACTIONS(5765), 1, + aux_sym_token_repetition_pattern_token1, STATE(2654), 2, sym_line_comment, sym_block_comment, - [81015] = 5, + ACTIONS(5767), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [80442] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5776), 1, - anon_sym_COLON_COLON, + ACTIONS(5769), 1, + anon_sym_DQUOTE, + STATE(2566), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5576), 2, + sym_string_content, + sym_escape_sequence, STATE(2655), 2, sym_line_comment, sym_block_comment, - ACTIONS(4786), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81034] = 5, + [80463] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5828), 1, - anon_sym_in, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5771), 1, + sym_identifier, + STATE(3512), 1, + sym_type_arguments, STATE(2656), 2, sym_line_comment, sym_block_comment, - ACTIONS(5830), 3, - sym_self, - sym_super, - sym_crate, - [81053] = 7, + [80486] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(640), 1, - sym_declaration_list, - STATE(3129), 1, - sym_where_clause, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5771), 1, + sym_identifier, + STATE(3561), 1, + sym_type_arguments, STATE(2657), 2, sym_line_comment, sym_block_comment, - [81076] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [80509] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(394), 1, - sym_block, - STATE(3600), 1, - sym_label, STATE(2658), 2, sym_line_comment, sym_block_comment, - [81099] = 7, + ACTIONS(985), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [80526] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5832), 1, - anon_sym_SEMI, - STATE(3583), 1, - sym_where_clause, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1389), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2659), 2, sym_line_comment, sym_block_comment, - [81122] = 7, + [80549] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5312), 1, - anon_sym_LBRACE, - STATE(1190), 1, - sym_enum_variant_list, - STATE(3142), 1, - sym_where_clause, + ACTIONS(5773), 1, + anon_sym_DQUOTE, + STATE(2566), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5576), 2, + sym_string_content, + sym_escape_sequence, STATE(2660), 2, sym_line_comment, sym_block_comment, - [81145] = 7, + [80570] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1284), 1, - sym_declaration_list, - STATE(3270), 1, - sym_where_clause, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_LT2, + STATE(1950), 1, + sym_type_arguments, + STATE(1981), 1, + sym_parameters, STATE(2661), 2, sym_line_comment, sym_block_comment, - [81168] = 7, + [80593] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(3528), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5738), 1, + sym_identifier, + STATE(3561), 1, + sym_type_arguments, STATE(2662), 2, sym_line_comment, sym_block_comment, - [81191] = 7, + [80616] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5628), 1, - anon_sym_GT, - ACTIONS(5630), 1, - anon_sym_COMMA, - ACTIONS(5708), 1, - anon_sym_EQ, - STATE(2838), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5123), 1, + sym_super, + ACTIONS(5771), 1, + sym_identifier, + STATE(3512), 1, + sym_type_arguments, STATE(2663), 2, sym_line_comment, sym_block_comment, - [81214] = 7, + [80639] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5834), 1, - anon_sym_RPAREN, - ACTIONS(5836), 1, - anon_sym_COMMA, - STATE(2872), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5123), 1, + sym_super, + ACTIONS(5771), 1, + sym_identifier, + STATE(3561), 1, + sym_type_arguments, STATE(2664), 2, sym_line_comment, sym_block_comment, - [81237] = 5, + [80662] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3396), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2665), 2, sym_line_comment, sym_block_comment, - ACTIONS(5838), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [81256] = 4, + [80685] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(676), 1, + sym_declaration_list, + STATE(3274), 1, + sym_where_clause, STATE(2666), 2, sym_line_comment, sym_block_comment, - ACTIONS(5840), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [81273] = 7, + [80708] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(5135), 1, + anon_sym_LPAREN, + ACTIONS(5137), 1, + anon_sym_LBRACK, + ACTIONS(5141), 1, anon_sym_LBRACE, - STATE(741), 1, - sym_declaration_list, - STATE(3237), 1, - sym_where_clause, + STATE(1390), 1, + sym_delim_token_tree, STATE(2667), 2, sym_line_comment, sym_block_comment, - [81296] = 7, + [80731] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LBRACE, - ACTIONS(4936), 1, - anon_sym_where, - STATE(1298), 1, - sym_field_declaration_list, - STATE(3284), 1, - sym_where_clause, + ACTIONS(3299), 1, + anon_sym_LT2, + ACTIONS(5123), 1, + sym_super, + ACTIONS(5775), 1, + sym_identifier, + STATE(1588), 1, + sym_type_arguments, STATE(2668), 2, sym_line_comment, sym_block_comment, - [81319] = 7, + [80754] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(5728), 1, - sym_super, - ACTIONS(5764), 1, - sym_identifier, - STATE(3457), 1, + ACTIONS(4983), 1, + anon_sym_COLON, + STATE(1950), 1, sym_type_arguments, + STATE(2675), 1, + sym_trait_bounds, STATE(2669), 2, sym_line_comment, sym_block_comment, - [81342] = 5, + [80777] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, - anon_sym_COLON, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5171), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2670), 2, sym_line_comment, sym_block_comment, - ACTIONS(4822), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [81361] = 7, + [80798] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1208), 1, - sym_declaration_list, - STATE(3167), 1, - sym_where_clause, + ACTIONS(5391), 1, + anon_sym_RPAREN, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(5397), 1, + anon_sym_COMMA, + STATE(2905), 1, + aux_sym_slice_pattern_repeat1, STATE(2671), 2, sym_line_comment, sym_block_comment, - [81384] = 7, + [80821] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5844), 1, - anon_sym_SEMI, - STATE(3550), 1, - sym_where_clause, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_LT, + STATE(2190), 1, + sym_parameters, + STATE(3210), 1, + sym_type_parameters, STATE(2672), 2, sym_line_comment, sym_block_comment, - [81407] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [80844] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(382), 1, - sym_block, - STATE(3600), 1, - sym_label, + ACTIONS(5777), 1, + anon_sym_in, STATE(2673), 2, sym_line_comment, sym_block_comment, - [81430] = 7, + ACTIONS(5779), 3, + sym_self, + sym_super, + sym_crate, + [80863] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, + ACTIONS(5781), 1, anon_sym_LBRACE, - STATE(1350), 1, - sym_declaration_list, - STATE(3320), 1, - sym_where_clause, + ACTIONS(5783), 1, + anon_sym_for, + ACTIONS(5785), 1, + anon_sym_loop, + ACTIONS(5787), 1, + anon_sym_while, STATE(2674), 2, sym_line_comment, sym_block_comment, - [81453] = 7, + [80886] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(3429), 1, - sym_block, - STATE(3589), 1, - sym_label, STATE(2675), 2, sym_line_comment, sym_block_comment, - [81476] = 7, + ACTIONS(5789), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [80903] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(1472), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5791), 1, + anon_sym_SEMI, + STATE(3521), 1, + sym_where_clause, STATE(2676), 2, sym_line_comment, sym_block_comment, - [81499] = 7, + [80926] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LBRACE, - ACTIONS(4936), 1, - anon_sym_where, - STATE(1217), 1, - sym_field_declaration_list, - STATE(3176), 1, - sym_where_clause, STATE(2677), 2, sym_line_comment, sym_block_comment, - [81522] = 7, + ACTIONS(5793), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [80943] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5712), 1, - anon_sym_COLON_COLON, - ACTIONS(5846), 1, - anon_sym_for, - STATE(1956), 1, - sym_type_arguments, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5795), 1, + anon_sym_SEMI, + ACTIONS(5797), 1, + anon_sym_EQ, + ACTIONS(5799), 1, + anon_sym_else, STATE(2678), 2, sym_line_comment, sym_block_comment, - [81545] = 7, + [80966] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LT, - STATE(2221), 1, - sym_parameters, - STATE(3276), 1, - sym_type_parameters, + ACTIONS(3299), 1, + anon_sym_LT2, + ACTIONS(5123), 1, + sym_super, + ACTIONS(5775), 1, + sym_identifier, + STATE(1586), 1, + sym_type_arguments, STATE(2679), 2, sym_line_comment, sym_block_comment, - [81568] = 7, + [80989] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(476), 1, - sym_block, - STATE(3637), 1, - sym_label, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4511), 1, + anon_sym_BANG, + ACTIONS(4604), 1, + anon_sym_COLON_COLON, + STATE(1951), 1, + sym_type_arguments, STATE(2680), 2, sym_line_comment, sym_block_comment, - [81591] = 6, + [81012] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_COLON, - STATE(2811), 1, - sym_trait_bounds, - ACTIONS(5848), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5001), 1, + anon_sym_PLUS, STATE(2681), 2, sym_line_comment, sym_block_comment, - [81612] = 5, + ACTIONS(5801), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [81031] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5328), 1, - anon_sym_PLUS, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(413), 1, + sym_block, + STATE(3522), 1, + sym_label, STATE(2682), 2, sym_line_comment, sym_block_comment, - ACTIONS(5850), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [81631] = 7, + [81054] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, - anon_sym_RPAREN, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5447), 1, - anon_sym_COMMA, - STATE(3063), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3460), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2683), 2, sym_line_comment, sym_block_comment, - [81654] = 7, - ACTIONS(103), 1, + [81077] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5792), 1, - anon_sym_LPAREN, - ACTIONS(5794), 1, - anon_sym_LBRACK, - ACTIONS(5796), 1, - anon_sym_LBRACE, - STATE(392), 1, - sym_delim_token_tree, + ACTIONS(5803), 1, + aux_sym_token_repetition_pattern_token1, STATE(2684), 2, sym_line_comment, sym_block_comment, - [81677] = 7, + ACTIONS(5805), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [81096] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(1392), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_LT, + STATE(2228), 1, + sym_parameters, + STATE(3234), 1, + sym_type_parameters, STATE(2685), 2, sym_line_comment, sym_block_comment, - [81700] = 5, + [81119] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5297), 1, + anon_sym_LBRACE, + STATE(596), 1, + sym_enum_variant_list, + STATE(3053), 1, + sym_where_clause, STATE(2686), 2, sym_line_comment, sym_block_comment, - ACTIONS(4786), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81719] = 7, + [81142] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5854), 1, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(5807), 1, anon_sym_RPAREN, - ACTIONS(5856), 1, + ACTIONS(5809), 1, anon_sym_COMMA, - STATE(2777), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2753), 1, + aux_sym_tuple_pattern_repeat1, STATE(2687), 2, sym_line_comment, sym_block_comment, - [81742] = 4, + [81165] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(5811), 1, + anon_sym_RPAREN, + ACTIONS(5813), 1, + anon_sym_COMMA, + STATE(2918), 1, + aux_sym_slice_pattern_repeat1, STATE(2688), 2, sym_line_comment, sym_block_comment, - ACTIONS(5858), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [81759] = 7, + [81188] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(1465), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(5815), 1, + anon_sym_RBRACK, + ACTIONS(5817), 1, + anon_sym_COMMA, + STATE(2755), 1, + aux_sym_slice_pattern_repeat1, STATE(2689), 2, sym_line_comment, sym_block_comment, - [81782] = 7, + [81211] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(5712), 1, - anon_sym_COLON_COLON, - ACTIONS(5860), 1, - anon_sym_for, - STATE(1956), 1, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5819), 1, + sym_identifier, + STATE(2037), 1, sym_type_arguments, STATE(2690), 2, sym_line_comment, sym_block_comment, - [81805] = 5, + [81234] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5862), 1, - anon_sym_COMMA, - ACTIONS(5808), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2691), 3, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1466), 1, + sym_block, + STATE(3547), 1, + sym_label, + STATE(2691), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [81824] = 5, + [81257] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5865), 1, - sym_identifier, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3350), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2692), 2, sym_line_comment, sym_block_comment, - ACTIONS(5867), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [81843] = 7, - ACTIONS(103), 1, + [81280] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4968), 1, - anon_sym_LBRACE, - STATE(685), 1, - sym_field_declaration_list, - STATE(3261), 1, - sym_where_clause, + ACTIONS(5821), 1, + aux_sym_token_repetition_pattern_token1, STATE(2693), 2, sym_line_comment, sym_block_comment, - [81866] = 7, + ACTIONS(5823), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [81299] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(3437), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_LT, + STATE(2194), 1, + sym_parameters, + STATE(3247), 1, + sym_type_parameters, STATE(2694), 2, sym_line_comment, sym_block_comment, - [81889] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [81322] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(341), 1, - sym_block, - STATE(3600), 1, - sym_label, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5825), 1, + anon_sym_SEMI, + ACTIONS(5827), 1, + anon_sym_EQ, + ACTIONS(5829), 1, + anon_sym_else, STATE(2695), 2, sym_line_comment, sym_block_comment, - [81912] = 6, + [81345] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5869), 1, - anon_sym_DQUOTE, - STATE(2730), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5654), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3415), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2696), 2, sym_line_comment, sym_block_comment, - [81933] = 4, + [81368] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3418), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2697), 2, sym_line_comment, sym_block_comment, - ACTIONS(3263), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [81950] = 7, + [81391] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(5692), 1, - sym_identifier, - ACTIONS(5728), 1, - sym_super, - STATE(2042), 1, + ACTIONS(4714), 1, + anon_sym_for, + ACTIONS(5578), 1, + anon_sym_COLON_COLON, + STATE(1948), 1, sym_type_arguments, STATE(2698), 2, sym_line_comment, sym_block_comment, - [81973] = 7, + [81414] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LT, - STATE(2227), 1, - sym_parameters, - STATE(3291), 1, - sym_type_parameters, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3369), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2699), 2, sym_line_comment, sym_block_comment, - [81996] = 7, + [81437] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -178860,61 +178305,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(3589), 1, - sym_label, - STATE(3604), 1, + STATE(3380), 1, sym_block, + STATE(3547), 1, + sym_label, STATE(2700), 2, sym_line_comment, sym_block_comment, - [82019] = 7, + [81460] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(651), 1, - sym_declaration_list, - STATE(3179), 1, - sym_where_clause, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(1377), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2701), 2, sym_line_comment, sym_block_comment, - [82042] = 6, + [81483] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_COLON, - STATE(2811), 1, - sym_trait_bounds, - ACTIONS(5871), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5819), 1, + sym_identifier, + STATE(2036), 1, + sym_type_arguments, STATE(2702), 2, sym_line_comment, sym_block_comment, - [82063] = 7, + [81506] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5874), 1, - anon_sym_SEMI, - STATE(3584), 1, - sym_where_clause, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3540), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2703), 2, sym_line_comment, sym_block_comment, - [82086] = 7, + [81529] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -178923,62 +178369,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(3541), 1, - sym_block, - STATE(3589), 1, + STATE(3547), 1, sym_label, + STATE(3551), 1, + sym_block, STATE(2704), 2, sym_line_comment, sym_block_comment, - [82109] = 7, + [81552] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(3542), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5831), 1, + anon_sym_RPAREN, + ACTIONS(5833), 1, + anon_sym_COMMA, + STATE(2762), 1, + aux_sym_tuple_type_repeat1, STATE(2705), 2, sym_line_comment, sym_block_comment, - [82132] = 7, + [81575] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4533), 1, - anon_sym_BANG, - ACTIONS(4624), 1, - anon_sym_COLON_COLON, - STATE(1955), 1, - sym_type_arguments, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3407), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2706), 2, sym_line_comment, sym_block_comment, - [82155] = 7, + [81598] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1365), 1, - sym_declaration_list, - STATE(3327), 1, - sym_where_clause, + ACTIONS(4479), 1, + anon_sym_LPAREN, + ACTIONS(4887), 1, + anon_sym_LT, + STATE(2223), 1, + sym_parameters, + STATE(3226), 1, + sym_type_parameters, STATE(2707), 2, sym_line_comment, sym_block_comment, - [82178] = 7, + [81621] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -178987,1235 +178433,1163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(3309), 1, anon_sym_SQUOTE, - STATE(3589), 1, - sym_label, - STATE(3617), 1, + STATE(3345), 1, sym_block, + STATE(3547), 1, + sym_label, STATE(2708), 2, sym_line_comment, sym_block_comment, - [82201] = 7, + [81644] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(3589), 1, - sym_label, - STATE(3618), 1, - sym_block, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5835), 1, + anon_sym_RPAREN, + ACTIONS(5837), 1, + anon_sym_COMMA, + STATE(2899), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2709), 2, sym_line_comment, sym_block_comment, - [82224] = 5, + [81667] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5876), 1, - anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5839), 1, + anon_sym_RPAREN, + ACTIONS(5841), 1, + anon_sym_COMMA, + STATE(2946), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2710), 2, sym_line_comment, sym_block_comment, - ACTIONS(4786), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82243] = 7, + [81690] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5878), 1, - anon_sym_RPAREN, - ACTIONS(5880), 1, - anon_sym_COMMA, - STATE(2895), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5123), 1, + sym_super, + ACTIONS(5738), 1, + sym_identifier, + STATE(3512), 1, + sym_type_arguments, STATE(2711), 2, sym_line_comment, sym_block_comment, - [82266] = 7, + [81713] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(5882), 1, - anon_sym_RPAREN, - ACTIONS(5884), 1, - anon_sym_COMMA, - STATE(2899), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4499), 1, + anon_sym_DOT_DOT, + ACTIONS(5163), 1, + anon_sym_COLON_COLON, + ACTIONS(4501), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2712), 2, sym_line_comment, sym_block_comment, - [82289] = 7, + [81734] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(3589), 1, - sym_label, - STATE(3648), 1, - sym_block, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5550), 1, + anon_sym_RPAREN, + ACTIONS(5552), 1, + anon_sym_COMMA, + STATE(2933), 1, + aux_sym_parameters_repeat1, STATE(2713), 2, sym_line_comment, sym_block_comment, - [82312] = 7, + [81757] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5843), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(3589), 1, - sym_label, - STATE(3606), 1, - sym_block, + ACTIONS(5845), 1, + anon_sym_for, + ACTIONS(5847), 1, + anon_sym_loop, + ACTIONS(5849), 1, + anon_sym_while, STATE(2714), 2, sym_line_comment, sym_block_comment, - [82335] = 7, + [81780] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5728), 1, - sym_super, - ACTIONS(5764), 1, - sym_identifier, - STATE(3641), 1, - sym_type_arguments, + ACTIONS(4983), 1, + anon_sym_COLON, + STATE(3169), 1, + sym_trait_bounds, + ACTIONS(5528), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2715), 2, sym_line_comment, sym_block_comment, - [82358] = 7, + [81801] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(3291), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(4800), 1, - anon_sym_for, - ACTIONS(5712), 1, - anon_sym_COLON_COLON, - STATE(1956), 1, + STATE(1107), 1, + sym_parameters, + STATE(1950), 1, sym_type_arguments, STATE(2716), 2, sym_line_comment, sym_block_comment, - [82381] = 6, + [81824] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, + ACTIONS(3299), 1, + anon_sym_LT2, + ACTIONS(5123), 1, + sym_super, + ACTIONS(5736), 1, + sym_identifier, + STATE(1432), 1, + sym_type_arguments, + STATE(2717), 2, + sym_line_comment, + sym_block_comment, + [81847] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4499), 1, anon_sym_DOT_DOT, - ACTIONS(5257), 1, + ACTIONS(5207), 1, anon_sym_COLON_COLON, - ACTIONS(4525), 2, + ACTIONS(4501), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2717), 2, + STATE(2718), 2, sym_line_comment, sym_block_comment, - [82402] = 6, + [81868] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - STATE(3641), 1, - sym_type_arguments, - ACTIONS(5728), 2, - sym_identifier, - sym_super, - STATE(2718), 2, + ACTIONS(5851), 1, + anon_sym_LBRACE, + ACTIONS(5853), 1, + anon_sym_for, + ACTIONS(5855), 1, + anon_sym_loop, + ACTIONS(5857), 1, + anon_sym_while, + STATE(2719), 2, sym_line_comment, sym_block_comment, - [82423] = 7, + [81891] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(5692), 1, - sym_identifier, - ACTIONS(5728), 1, + ACTIONS(5123), 1, sym_super, - STATE(2050), 1, + ACTIONS(5738), 1, + sym_identifier, + STATE(3561), 1, sym_type_arguments, - STATE(2719), 2, - sym_line_comment, - sym_block_comment, - [82446] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5886), 1, - anon_sym_LPAREN, - ACTIONS(5888), 1, - anon_sym_LBRACK, - ACTIONS(5890), 1, - anon_sym_LBRACE, - STATE(2549), 1, - sym_token_tree, STATE(2720), 2, sym_line_comment, sym_block_comment, - [82469] = 7, + [81914] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5892), 1, - anon_sym_LBRACE, - ACTIONS(5894), 1, - anon_sym_for, - ACTIONS(5896), 1, - anon_sym_loop, - ACTIONS(5898), 1, - anon_sym_while, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(411), 1, + sym_block, + STATE(3522), 1, + sym_label, STATE(2721), 2, sym_line_comment, sym_block_comment, - [82492] = 7, + [81937] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5360), 1, - anon_sym_LBRACE, - STATE(659), 1, - sym_enum_variant_list, - STATE(3317), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5859), 1, + anon_sym_SEMI, + STATE(3610), 1, sym_where_clause, STATE(2722), 2, sym_line_comment, sym_block_comment, - [82515] = 7, + [81960] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5620), 1, - anon_sym_RPAREN, - ACTIONS(5622), 1, - anon_sym_COMMA, - STATE(2905), 1, - aux_sym_parameters_repeat1, + ACTIONS(5861), 1, + sym_identifier, STATE(2723), 2, sym_line_comment, sym_block_comment, - [82538] = 7, + ACTIONS(5863), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [81979] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, + ACTIONS(5865), 1, anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(475), 1, - sym_block, - STATE(3637), 1, - sym_label, + ACTIONS(5867), 1, + anon_sym_for, + ACTIONS(5869), 1, + anon_sym_loop, + ACTIONS(5871), 1, + anon_sym_while, STATE(2724), 2, sym_line_comment, sym_block_comment, - [82561] = 6, + [82002] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - STATE(3641), 1, - sym_type_arguments, - ACTIONS(5680), 2, - sym_identifier, - sym_super, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3309), 1, + anon_sym_SQUOTE, + STATE(3462), 1, + sym_block, + STATE(3547), 1, + sym_label, STATE(2725), 2, sym_line_comment, sym_block_comment, - [82582] = 7, + [82025] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1227), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(478), 1, - sym_block, - STATE(3637), 1, - sym_label, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4760), 1, + anon_sym_for, + ACTIONS(5578), 1, + anon_sym_COLON_COLON, + STATE(1948), 1, + sym_type_arguments, STATE(2726), 2, sym_line_comment, sym_block_comment, - [82605] = 6, + [82048] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(5680), 2, - sym_identifier, - sym_super, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5253), 1, + anon_sym_LBRACE, + STATE(1110), 1, + sym_enum_variant_list, + STATE(3097), 1, + sym_where_clause, STATE(2727), 2, sym_line_comment, sym_block_comment, - [82626] = 6, + [82071] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_DQUOTE, - STATE(2539), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5654), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5578), 1, + anon_sym_COLON_COLON, + ACTIONS(5873), 1, + anon_sym_for, + STATE(1948), 1, + sym_type_arguments, STATE(2728), 2, sym_line_comment, sym_block_comment, - [82647] = 6, + [82094] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - STATE(3641), 1, + ACTIONS(5578), 1, + anon_sym_COLON_COLON, + ACTIONS(5875), 1, + anon_sym_for, + STATE(1948), 1, sym_type_arguments, - ACTIONS(5215), 2, - sym_identifier, - sym_super, STATE(2729), 2, sym_line_comment, sym_block_comment, - [82668] = 5, + [82117] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_DQUOTE, - ACTIONS(5904), 2, - sym_string_content, - sym_escape_sequence, - STATE(2730), 3, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5578), 1, + anon_sym_COLON_COLON, + ACTIONS(5877), 1, + anon_sym_for, + STATE(1948), 1, + sym_type_arguments, + STATE(2730), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [82687] = 7, + [82140] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5907), 1, - anon_sym_RPAREN, - ACTIONS(5909), 1, - anon_sym_COMMA, - STATE(2841), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5578), 1, + anon_sym_COLON_COLON, + ACTIONS(5879), 1, + anon_sym_for, + STATE(1948), 1, + sym_type_arguments, STATE(2731), 2, sym_line_comment, sym_block_comment, - [82710] = 7, + [82163] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(3424), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(4485), 1, + anon_sym_LT2, + STATE(3512), 1, + sym_type_arguments, + ACTIONS(5618), 2, + sym_identifier, + sym_super, STATE(2732), 2, sym_line_comment, sym_block_comment, - [82733] = 6, + [82184] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4523), 1, - anon_sym_DOT_DOT, - ACTIONS(5275), 1, - anon_sym_COLON_COLON, - ACTIONS(4525), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4485), 1, + anon_sym_LT2, + STATE(3561), 1, + sym_type_arguments, + ACTIONS(5618), 2, + sym_identifier, + sym_super, STATE(2733), 2, sym_line_comment, sym_block_comment, - [82754] = 7, + [82205] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - ACTIONS(5083), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(4948), 1, anon_sym_LBRACE, - STATE(2824), 1, - sym_block, - STATE(3636), 1, - sym_label, + STATE(744), 1, + sym_declaration_list, + STATE(3108), 1, + sym_where_clause, STATE(2734), 2, sym_line_comment, sym_block_comment, - [82777] = 5, + [82228] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_COLON_COLON, + ACTIONS(5720), 1, + anon_sym_LPAREN, + ACTIONS(5722), 1, + anon_sym_LBRACK, + ACTIONS(5724), 1, + anon_sym_LBRACE, + STATE(1030), 1, + sym_delim_token_tree, STATE(2735), 2, sym_line_comment, sym_block_comment, - ACTIONS(4750), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82796] = 7, + [82251] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5911), 1, - anon_sym_LBRACE, - ACTIONS(5913), 1, - anon_sym_for, - ACTIONS(5915), 1, - anon_sym_loop, - ACTIONS(5917), 1, - anon_sym_while, + ACTIONS(4680), 1, + anon_sym_GT, + ACTIONS(5881), 1, + anon_sym_COMMA, + STATE(2978), 1, + aux_sym_type_parameters_repeat1, STATE(2736), 2, sym_line_comment, sym_block_comment, - [82819] = 7, + [82271] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - sym_block, - STATE(3638), 1, - sym_label, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5883), 1, + anon_sym_SEMI, + STATE(3392), 1, + sym_where_clause, STATE(2737), 2, sym_line_comment, sym_block_comment, - [82842] = 6, + [82291] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4668), 1, - anon_sym_DOT_DOT, - ACTIONS(5919), 1, - anon_sym_COLON_COLON, - ACTIONS(4670), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(5885), 1, + anon_sym_for, + STATE(1950), 1, + sym_type_arguments, STATE(2738), 2, sym_line_comment, sym_block_comment, - [82863] = 5, + [82311] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4513), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5921), 2, - anon_sym_RPAREN, + ACTIONS(5887), 1, + anon_sym_RBRACE, + ACTIONS(5889), 1, anon_sym_COMMA, + STATE(2961), 1, + aux_sym_enum_variant_list_repeat2, STATE(2739), 2, sym_line_comment, sym_block_comment, - [82882] = 5, + [82331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5923), 1, - sym_identifier, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(5891), 1, + anon_sym_SEMI, + STATE(651), 1, + sym_declaration_list, STATE(2740), 2, sym_line_comment, sym_block_comment, - ACTIONS(5925), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [82901] = 7, + [82351] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5927), 1, - anon_sym_SEMI, - STATE(3484), 1, - sym_where_clause, + ACTIONS(5893), 1, + anon_sym_RBRACE, + ACTIONS(5895), 1, + anon_sym_COMMA, + STATE(2784), 1, + aux_sym_field_initializer_list_repeat1, STATE(2741), 2, sym_line_comment, sym_block_comment, - [82924] = 7, + [82371] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4968), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(665), 1, - sym_field_declaration_list, - STATE(3097), 1, - sym_where_clause, + ACTIONS(5897), 1, + anon_sym_SEMI, + STATE(1137), 1, + sym_declaration_list, STATE(2742), 2, sym_line_comment, sym_block_comment, - [82947] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82391] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(393), 1, - sym_block, - STATE(3600), 1, - sym_label, STATE(2743), 2, sym_line_comment, sym_block_comment, - [82970] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + ACTIONS(5899), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82407] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(391), 1, - sym_block, - STATE(3600), 1, - sym_label, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(5901), 1, + anon_sym_SEMI, + STATE(686), 1, + sym_declaration_list, STATE(2744), 2, sym_line_comment, sym_block_comment, - [82993] = 7, + [82427] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4712), 1, - anon_sym_GT, - ACTIONS(5640), 1, + ACTIONS(4578), 1, + anon_sym_COLON_COLON, + ACTIONS(5278), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5708), 1, - anon_sym_EQ, - STATE(2925), 1, - aux_sym_type_parameters_repeat1, STATE(2745), 2, sym_line_comment, sym_block_comment, - [83016] = 7, + [82445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5185), 1, - anon_sym_LPAREN, - ACTIONS(5187), 1, - anon_sym_LBRACK, - ACTIONS(5191), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - STATE(1394), 1, - sym_delim_token_tree, + ACTIONS(5903), 1, + anon_sym_SEMI, + STATE(625), 1, + sym_declaration_list, STATE(2746), 2, sym_line_comment, sym_block_comment, - [83039] = 7, + [82465] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5423), 1, - anon_sym_GT, - ACTIONS(5425), 1, - anon_sym_COMMA, - ACTIONS(5708), 1, - anon_sym_EQ, - STATE(2808), 1, - aux_sym_type_parameters_repeat1, STATE(2747), 2, sym_line_comment, sym_block_comment, - [83062] = 7, + ACTIONS(5905), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82481] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4812), 1, - anon_sym_for, - ACTIONS(5712), 1, - anon_sym_COLON_COLON, - STATE(1956), 1, - sym_type_arguments, + ACTIONS(4343), 1, + anon_sym_RBRACE, + ACTIONS(5907), 1, + anon_sym_COMMA, + STATE(2913), 1, + aux_sym_use_list_repeat1, STATE(2748), 2, sym_line_comment, sym_block_comment, - [83085] = 7, + [82501] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5929), 1, - anon_sym_SEMI, - ACTIONS(5931), 1, - anon_sym_EQ, - ACTIONS(5933), 1, - anon_sym_else, STATE(2749), 2, sym_line_comment, sym_block_comment, - [83108] = 6, + ACTIONS(5909), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82517] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - STATE(3457), 1, - sym_type_arguments, - ACTIONS(5728), 2, - sym_identifier, - sym_super, + ACTIONS(943), 1, + anon_sym_RBRACK, + ACTIONS(4129), 1, + anon_sym_COMMA, + STATE(2636), 1, + aux_sym_arguments_repeat1, STATE(2750), 2, sym_line_comment, sym_block_comment, - [83129] = 7, + [82537] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(541), 1, - sym_declaration_list, - STATE(3310), 1, - sym_where_clause, STATE(2751), 2, sym_line_comment, sym_block_comment, - [83152] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + ACTIONS(5911), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82553] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(413), 1, - sym_block, - STATE(3600), 1, - sym_label, STATE(2752), 2, sym_line_comment, sym_block_comment, - [83175] = 7, + ACTIONS(5913), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82569] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5935), 1, - anon_sym_SEMI, - ACTIONS(5937), 1, - anon_sym_EQ, - ACTIONS(5939), 1, - anon_sym_else, + ACTIONS(2995), 1, + anon_sym_RPAREN, + ACTIONS(5915), 1, + anon_sym_COMMA, + STATE(2878), 1, + aux_sym_tuple_pattern_repeat1, STATE(2753), 2, sym_line_comment, sym_block_comment, - [83198] = 5, + [82589] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5941), 1, - anon_sym_COMMA, - ACTIONS(4201), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2754), 3, + STATE(2754), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [83217] = 7, + ACTIONS(5917), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82605] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5712), 1, - anon_sym_COLON_COLON, - ACTIONS(5944), 1, - anon_sym_for, - STATE(1956), 1, - sym_type_arguments, + ACTIONS(3055), 1, + anon_sym_RBRACK, + ACTIONS(5919), 1, + anon_sym_COMMA, + STATE(2599), 1, + aux_sym_slice_pattern_repeat1, STATE(2755), 2, sym_line_comment, sym_block_comment, - [83240] = 7, + [82625] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5712), 1, - anon_sym_COLON_COLON, - ACTIONS(5946), 1, - anon_sym_for, - STATE(1956), 1, - sym_type_arguments, STATE(2756), 2, sym_line_comment, sym_block_comment, - [83263] = 7, + ACTIONS(5921), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82641] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, - anon_sym_LT2, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5666), 1, - sym_identifier, - STATE(1568), 1, - sym_type_arguments, STATE(2757), 2, sym_line_comment, sym_block_comment, - [83286] = 7, + ACTIONS(5923), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82657] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4019), 1, - anon_sym_LT2, - ACTIONS(4143), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_BANG, - STATE(1632), 1, - sym_type_arguments, + ACTIONS(5925), 1, + anon_sym_RBRACE, + ACTIONS(5927), 1, + anon_sym_COMMA, + STATE(2798), 1, + aux_sym_struct_pattern_repeat1, STATE(2758), 2, sym_line_comment, sym_block_comment, - [83309] = 7, + [82677] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, - anon_sym_LT2, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5806), 1, - sym_identifier, - STATE(1484), 1, - sym_type_arguments, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5759), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2759), 2, sym_line_comment, sym_block_comment, - [83332] = 7, + [82695] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5712), 1, - anon_sym_COLON_COLON, - ACTIONS(5948), 1, - anon_sym_for, - STATE(1956), 1, - sym_type_arguments, + ACTIONS(5929), 1, + anon_sym_RBRACE, + ACTIONS(5931), 1, + anon_sym_COMMA, + STATE(2801), 1, + aux_sym_struct_pattern_repeat1, STATE(2760), 2, sym_line_comment, sym_block_comment, - [83355] = 7, + [82715] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1273), 1, - sym_declaration_list, - STATE(3268), 1, - sym_where_clause, STATE(2761), 2, sym_line_comment, sym_block_comment, - [83378] = 7, + ACTIONS(5933), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82731] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(1483), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(3185), 1, + anon_sym_RPAREN, + ACTIONS(5935), 1, + anon_sym_COMMA, + STATE(2923), 1, + aux_sym_tuple_type_repeat1, STATE(2762), 2, sym_line_comment, sym_block_comment, - [83401] = 7, + [82751] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5950), 1, + ACTIONS(5937), 1, anon_sym_SEMI, - STATE(3451), 1, + STATE(3410), 1, sym_where_clause, STATE(2763), 2, sym_line_comment, sym_block_comment, - [83424] = 5, - ACTIONS(3), 1, + [82771] = 6, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5952), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5454), 1, + anon_sym_RPAREN, + ACTIONS(5456), 1, + anon_sym_COMMA, + STATE(2803), 1, + aux_sym_parameters_repeat1, STATE(2764), 2, sym_line_comment, sym_block_comment, - ACTIONS(5954), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83443] = 5, + [82791] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5852), 1, - anon_sym_COLON_COLON, STATE(2765), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 3, + ACTIONS(4822), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83462] = 4, + [82807] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4887), 1, + anon_sym_LT, + ACTIONS(5939), 1, + anon_sym_EQ, + STATE(3430), 1, + sym_type_parameters, STATE(2766), 2, sym_line_comment, sym_block_comment, - ACTIONS(955), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [83479] = 7, + [82827] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(3476), 1, - sym_block, - STATE(3589), 1, - sym_label, - STATE(2767), 2, + ACTIONS(5759), 1, + anon_sym_RPAREN, + ACTIONS(5941), 1, + anon_sym_COMMA, + STATE(2767), 3, sym_line_comment, sym_block_comment, - [83502] = 7, + aux_sym_parameters_repeat1, + [82845] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - ACTIONS(4934), 1, - anon_sym_LT, - STATE(2207), 1, - sym_parameters, - STATE(3088), 1, - sym_type_parameters, + ACTIONS(5944), 1, + anon_sym_RBRACE, + ACTIONS(5946), 1, + anon_sym_COMMA, + STATE(2748), 1, + aux_sym_use_list_repeat1, STATE(2768), 2, sym_line_comment, sym_block_comment, - [83525] = 5, + [82865] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5876), 1, - anon_sym_COLON_COLON, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5948), 1, + anon_sym_SEMI, + ACTIONS(5950), 1, + anon_sym_EQ, STATE(2769), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83544] = 7, + [82885] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3309), 1, - anon_sym_SQUOTE, - STATE(3477), 1, - sym_block, - STATE(3589), 1, - sym_label, + ACTIONS(5952), 1, + anon_sym_RBRACE, + ACTIONS(5954), 1, + anon_sym_COMMA, + STATE(2807), 1, + aux_sym_enum_variant_list_repeat2, STATE(2770), 2, sym_line_comment, sym_block_comment, - [83567] = 7, + [82905] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4806), 1, + anon_sym_RBRACE, ACTIONS(5956), 1, - anon_sym_LBRACE, - ACTIONS(5958), 1, - anon_sym_for, - ACTIONS(5960), 1, - anon_sym_loop, - ACTIONS(5962), 1, - anon_sym_while, + anon_sym_COMMA, + STATE(2851), 1, + aux_sym_field_initializer_list_repeat1, STATE(2771), 2, sym_line_comment, sym_block_comment, - [83590] = 6, + [82925] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5553), 1, + ACTIONS(5960), 1, + anon_sym_COLON, + ACTIONS(5958), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(5964), 1, - anon_sym_PIPE, - STATE(2784), 1, - aux_sym_closure_parameters_repeat1, STATE(2772), 2, sym_line_comment, sym_block_comment, - [83610] = 4, + [82943] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4676), 1, + anon_sym_GT, + ACTIONS(5962), 1, + anon_sym_COMMA, + STATE(2978), 1, + aux_sym_type_parameters_repeat1, STATE(2773), 2, sym_line_comment, sym_block_comment, - ACTIONS(5966), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83626] = 6, + [82963] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4962), 1, - anon_sym_RBRACE, - ACTIONS(5968), 1, + ACTIONS(4676), 1, + anon_sym_GT, + ACTIONS(5962), 1, anon_sym_COMMA, - STATE(2961), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2813), 1, + aux_sym_type_parameters_repeat1, STATE(2774), 2, sym_line_comment, sym_block_comment, - [83646] = 4, + [82983] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(5964), 1, + anon_sym_SEMI, + STATE(1160), 1, + sym_declaration_list, STATE(2775), 2, sym_line_comment, sym_block_comment, - ACTIONS(4906), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83662] = 6, + [83003] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5970), 1, - anon_sym_SEMI, - STATE(552), 1, - sym_declaration_list, STATE(2776), 2, sym_line_comment, sym_block_comment, - [83682] = 6, + ACTIONS(4836), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83019] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5972), 1, + ACTIONS(1459), 1, anon_sym_RPAREN, - ACTIONS(5974), 1, + ACTIONS(5966), 1, anon_sym_COMMA, - STATE(2798), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2767), 1, + aux_sym_parameters_repeat1, STATE(2777), 2, sym_line_comment, sym_block_comment, - [83702] = 6, + [83039] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5976), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5968), 1, anon_sym_SEMI, - STATE(554), 1, - sym_declaration_list, + ACTIONS(5970), 1, + anon_sym_EQ, STATE(2778), 2, sym_line_comment, sym_block_comment, - [83722] = 5, + [83059] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5549), 1, - anon_sym_COLON, - ACTIONS(5978), 2, - anon_sym_PIPE, + ACTIONS(5972), 1, + anon_sym_RBRACE, + ACTIONS(5974), 1, anon_sym_COMMA, + STATE(2820), 1, + aux_sym_field_declaration_list_repeat1, STATE(2779), 2, sym_line_comment, sym_block_comment, - [83740] = 6, + [83079] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5980), 1, - sym_identifier, - ACTIONS(5982), 1, - anon_sym_await, - ACTIONS(5984), 1, - sym_integer_literal, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5976), 1, + anon_sym_SEMI, + STATE(3387), 1, + sym_where_clause, STATE(2780), 2, sym_line_comment, sym_block_comment, - [83760] = 6, + [83099] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4962), 1, - anon_sym_RBRACE, - ACTIONS(5968), 1, - anon_sym_COMMA, - STATE(2966), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5978), 1, + anon_sym_SEMI, + STATE(3404), 1, + sym_where_clause, STATE(2781), 2, sym_line_comment, sym_block_comment, - [83780] = 6, + [83119] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5986), 1, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(5980), 1, anon_sym_SEMI, - ACTIONS(5988), 1, - anon_sym_RBRACK, + STATE(1181), 1, + sym_declaration_list, STATE(2782), 2, sym_line_comment, sym_block_comment, - [83800] = 6, + [83139] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(933), 1, - anon_sym_RBRACK, - ACTIONS(4141), 1, - anon_sym_COMMA, - STATE(2754), 1, - aux_sym_arguments_repeat1, STATE(2783), 2, sym_line_comment, sym_block_comment, - [83820] = 5, + ACTIONS(4842), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83155] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5978), 1, - anon_sym_PIPE, - ACTIONS(5990), 1, + ACTIONS(4856), 1, + anon_sym_RBRACE, + ACTIONS(5982), 1, anon_sym_COMMA, - STATE(2784), 3, + STATE(2851), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2784), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [83838] = 6, + [83175] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_RPAREN, - ACTIONS(5993), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_tuple_pattern_repeat1, STATE(2785), 2, sym_line_comment, sym_block_comment, - [83858] = 6, + ACTIONS(4800), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83191] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, - anon_sym_LT2, - ACTIONS(4972), 1, - anon_sym_COLON_COLON, - STATE(1369), 1, - sym_type_arguments, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5984), 1, + anon_sym_SEMI, + STATE(3509), 1, + sym_where_clause, STATE(2786), 2, sym_line_comment, sym_block_comment, - [83878] = 4, + [83211] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5986), 1, + anon_sym_SEMI, + ACTIONS(5988), 1, + anon_sym_EQ, STATE(2787), 2, sym_line_comment, sym_block_comment, - ACTIONS(4880), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83894] = 6, + [83231] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3087), 1, - anon_sym_RBRACK, - ACTIONS(5995), 1, - anon_sym_COMMA, - STATE(2691), 1, - aux_sym_slice_pattern_repeat1, STATE(2788), 2, sym_line_comment, sym_block_comment, - [83914] = 5, + ACTIONS(4844), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83247] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5997), 2, + ACTIONS(955), 1, anon_sym_RPAREN, + ACTIONS(4131), 1, anon_sym_COMMA, + STATE(2636), 1, + aux_sym_arguments_repeat1, STATE(2789), 2, sym_line_comment, sym_block_comment, - [83932] = 4, + [83267] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -180223,119 +179597,121 @@ static const uint16_t ts_small_parse_table[] = { STATE(2790), 2, sym_line_comment, sym_block_comment, - ACTIONS(4924), 3, + ACTIONS(4746), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83948] = 6, + [83283] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5999), 1, - anon_sym_SEMI, - STATE(615), 1, - sym_declaration_list, + ACTIONS(957), 1, + anon_sym_RBRACK, + ACTIONS(5990), 1, + anon_sym_COMMA, + STATE(2636), 1, + aux_sym_arguments_repeat1, STATE(2791), 2, sym_line_comment, sym_block_comment, - [83968] = 5, + [83303] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6003), 1, - anon_sym_COLON, - ACTIONS(6001), 2, - anon_sym_RBRACE, + ACTIONS(5522), 1, anon_sym_COMMA, + ACTIONS(5992), 1, + anon_sym_PIPE, + STATE(2828), 1, + aux_sym_closure_parameters_repeat1, STATE(2792), 2, sym_line_comment, sym_block_comment, - [83986] = 6, + [83323] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, - anon_sym_RBRACE, - ACTIONS(6007), 1, - anon_sym_COMMA, - STATE(2898), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(5994), 1, + anon_sym_SEMI, + STATE(3411), 1, + sym_where_clause, STATE(2793), 2, sym_line_comment, sym_block_comment, - [84006] = 4, + [83343] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1641), 1, + anon_sym_GT, + ACTIONS(5996), 1, + anon_sym_COMMA, + STATE(2835), 1, + aux_sym_type_arguments_repeat1, STATE(2794), 2, sym_line_comment, sym_block_comment, - ACTIONS(6009), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - [84022] = 6, + [83363] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6011), 1, - anon_sym_RBRACE, - ACTIONS(6013), 1, + ACTIONS(1641), 1, + anon_sym_GT, + ACTIONS(5996), 1, anon_sym_COMMA, - STATE(3006), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2953), 1, + aux_sym_type_arguments_repeat1, STATE(2795), 2, sym_line_comment, sym_block_comment, - [84042] = 6, + [83383] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6015), 1, - anon_sym_RBRACE, - ACTIONS(6017), 1, - anon_sym_COMMA, - STATE(2901), 1, - aux_sym_struct_pattern_repeat1, STATE(2796), 2, sym_line_comment, sym_block_comment, - [84062] = 6, + ACTIONS(4798), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83399] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3191), 1, + ACTIONS(3063), 1, anon_sym_RPAREN, - ACTIONS(6019), 1, + ACTIONS(5998), 1, anon_sym_COMMA, - STATE(2942), 1, - aux_sym_tuple_type_repeat1, + STATE(2599), 1, + aux_sym_slice_pattern_repeat1, STATE(2797), 2, sym_line_comment, sym_block_comment, - [84082] = 5, + [83419] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6021), 1, - anon_sym_RPAREN, - ACTIONS(6023), 1, + ACTIONS(5173), 1, + anon_sym_RBRACE, + ACTIONS(6000), 1, anon_sym_COMMA, - STATE(2798), 3, + STATE(2999), 1, + aux_sym_struct_pattern_repeat1, + STATE(2798), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [84100] = 4, + [83439] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -180343,160 +179719,157 @@ static const uint16_t ts_small_parse_table[] = { STATE(2799), 2, sym_line_comment, sym_block_comment, - ACTIONS(6026), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [84116] = 6, + ACTIONS(4788), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83455] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3221), 1, + ACTIONS(3065), 1, anon_sym_RPAREN, - ACTIONS(6028), 1, + ACTIONS(6002), 1, anon_sym_COMMA, - STATE(2942), 1, - aux_sym_tuple_type_repeat1, + STATE(2599), 1, + aux_sym_slice_pattern_repeat1, STATE(2800), 2, sym_line_comment, sym_block_comment, - [84136] = 6, + [83475] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4702), 1, - anon_sym_GT, - ACTIONS(6030), 1, + ACTIONS(5177), 1, + anon_sym_RBRACE, + ACTIONS(6004), 1, anon_sym_COMMA, - STATE(2882), 1, - aux_sym_type_parameters_repeat1, + STATE(2999), 1, + aux_sym_struct_pattern_repeat1, STATE(2801), 2, sym_line_comment, sym_block_comment, - [84156] = 6, + [83495] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6032), 1, - anon_sym_SEMI, - ACTIONS(6034), 1, - anon_sym_EQ, STATE(2802), 2, sym_line_comment, sym_block_comment, - [84176] = 6, + ACTIONS(4790), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83511] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5557), 1, + ACTIONS(1451), 1, anon_sym_RPAREN, - ACTIONS(5559), 1, + ACTIONS(5464), 1, anon_sym_COMMA, - STATE(2820), 1, + STATE(2767), 1, aux_sym_parameters_repeat1, STATE(2803), 2, sym_line_comment, sym_block_comment, - [84196] = 5, + [83531] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6036), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2804), 2, sym_line_comment, sym_block_comment, - [84214] = 4, + ACTIONS(4796), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83547] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1451), 1, + anon_sym_RPAREN, + ACTIONS(5464), 1, + anon_sym_COMMA, + STATE(2838), 1, + aux_sym_parameters_repeat1, STATE(2805), 2, sym_line_comment, sym_block_comment, - ACTIONS(983), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [84230] = 6, + [83567] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5620), 1, - anon_sym_RPAREN, - ACTIONS(5622), 1, - anon_sym_COMMA, - STATE(2905), 1, - aux_sym_parameters_repeat1, STATE(2806), 2, sym_line_comment, sym_block_comment, - [84250] = 6, - ACTIONS(27), 1, + ACTIONS(4802), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [83583] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6038), 1, - anon_sym_move, - STATE(223), 1, - sym_closure_parameters, + ACTIONS(4910), 1, + anon_sym_RBRACE, + ACTIONS(6006), 1, + anon_sym_COMMA, + STATE(2852), 1, + aux_sym_enum_variant_list_repeat2, STATE(2807), 2, sym_line_comment, sym_block_comment, - [84270] = 6, + [83603] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_GT, - ACTIONS(5569), 1, + ACTIONS(4910), 1, + anon_sym_RBRACE, + ACTIONS(6006), 1, anon_sym_COMMA, - STATE(2882), 1, - aux_sym_type_parameters_repeat1, + STATE(2840), 1, + aux_sym_enum_variant_list_repeat2, STATE(2808), 2, sym_line_comment, sym_block_comment, - [84290] = 4, + [83623] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4633), 1, + anon_sym_COLON, + ACTIONS(4952), 1, + anon_sym_COLON_COLON, + STATE(2675), 1, + sym_trait_bounds, STATE(2809), 2, sym_line_comment, sym_block_comment, - ACTIONS(4882), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84306] = 6, + [83643] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6040), 1, - anon_sym_RBRACE, - ACTIONS(6042), 1, - anon_sym_COMMA, - STATE(2884), 1, - aux_sym_struct_pattern_repeat1, STATE(2810), 2, sym_line_comment, sym_block_comment, - [84326] = 4, + ACTIONS(4826), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83659] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -180504,11 +179877,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(2811), 2, sym_line_comment, sym_block_comment, - ACTIONS(6044), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - [84342] = 4, + ACTIONS(4862), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83675] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -180516,269 +179889,266 @@ static const uint16_t ts_small_parse_table[] = { STATE(2812), 2, sym_line_comment, sym_block_comment, - ACTIONS(4894), 3, + ACTIONS(4824), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [84358] = 6, + [83691] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6046), 1, - anon_sym_SEMI, - ACTIONS(6048), 1, - anon_sym_EQ, + ACTIONS(4662), 1, + anon_sym_GT, + ACTIONS(6008), 1, + anon_sym_COMMA, + STATE(2978), 1, + aux_sym_type_parameters_repeat1, STATE(2813), 2, sym_line_comment, sym_block_comment, - [84378] = 6, + [83711] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_GT, - ACTIONS(5569), 1, - anon_sym_COMMA, - STATE(2922), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6010), 1, + anon_sym_SEMI, + STATE(1212), 1, + sym_declaration_list, STATE(2814), 2, sym_line_comment, sym_block_comment, - [84398] = 6, + [83731] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1637), 1, - anon_sym_GT, - ACTIONS(6050), 1, - anon_sym_COMMA, - STATE(2827), 1, - aux_sym_type_arguments_repeat1, STATE(2815), 2, sym_line_comment, sym_block_comment, - [84418] = 6, + ACTIONS(4766), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83747] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1637), 1, - anon_sym_GT, - ACTIONS(6050), 1, - anon_sym_COMMA, - STATE(2843), 1, - aux_sym_type_arguments_repeat1, STATE(2816), 2, sym_line_comment, sym_block_comment, - [84438] = 4, + ACTIONS(4776), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83763] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6012), 1, + anon_sym_SEMI, + STATE(1218), 1, + sym_declaration_list, STATE(2817), 2, sym_line_comment, sym_block_comment, - ACTIONS(4918), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84454] = 5, + [83783] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(6052), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6014), 1, + anon_sym_SEMI, + ACTIONS(6016), 1, + anon_sym_EQ, STATE(2818), 2, sym_line_comment, sym_block_comment, - [84472] = 6, + [83803] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6054), 1, - anon_sym_RBRACE, - ACTIONS(6056), 1, - anon_sym_COMMA, - STATE(2911), 1, - aux_sym_enum_variant_list_repeat2, STATE(2819), 2, sym_line_comment, sym_block_comment, - [84492] = 6, + ACTIONS(4686), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83819] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1465), 1, - anon_sym_RPAREN, - ACTIONS(5573), 1, + ACTIONS(4920), 1, + anon_sym_RBRACE, + ACTIONS(6018), 1, anon_sym_COMMA, - STATE(2909), 1, - aux_sym_parameters_repeat1, + STATE(3010), 1, + aux_sym_field_declaration_list_repeat1, STATE(2820), 2, sym_line_comment, sym_block_comment, - [84512] = 5, + [83839] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6058), 2, - anon_sym_RPAREN, + ACTIONS(4920), 1, + anon_sym_RBRACE, + ACTIONS(6018), 1, anon_sym_COMMA, + STATE(2848), 1, + aux_sym_field_declaration_list_repeat1, STATE(2821), 2, sym_line_comment, sym_block_comment, - [84530] = 5, + [83859] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6058), 1, - anon_sym_RPAREN, - ACTIONS(6060), 1, - anon_sym_COMMA, - STATE(2822), 3, + ACTIONS(3009), 1, + anon_sym_SQUOTE, + ACTIONS(6020), 1, + anon_sym_GT, + STATE(3058), 1, + sym_lifetime, + STATE(2822), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [84548] = 6, + [83879] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1465), 1, - anon_sym_RPAREN, - ACTIONS(5573), 1, - anon_sym_COMMA, - STATE(2828), 1, - aux_sym_parameters_repeat1, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6022), 1, + anon_sym_SEMI, + STATE(1229), 1, + sym_declaration_list, STATE(2823), 2, sym_line_comment, sym_block_comment, - [84568] = 4, + [83899] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2824), 2, + ACTIONS(6024), 1, + anon_sym_GT, + ACTIONS(6026), 1, + anon_sym_COMMA, + STATE(2824), 3, sym_line_comment, sym_block_comment, - ACTIONS(1407), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84584] = 5, + aux_sym_for_lifetimes_repeat1, + [83917] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6063), 1, - anon_sym_RBRACE, - ACTIONS(6065), 1, - anon_sym_COMMA, - STATE(2825), 3, + STATE(2825), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [84602] = 6, + ACTIONS(4854), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83933] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_RBRACE, - ACTIONS(6068), 1, - anon_sym_COMMA, - STATE(2825), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6029), 1, + anon_sym_SEMI, + ACTIONS(6031), 1, + anon_sym_EQ, STATE(2826), 2, sym_line_comment, sym_block_comment, - [84622] = 6, + [83953] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1641), 1, - anon_sym_GT, - ACTIONS(6070), 1, - anon_sym_COMMA, - STATE(2843), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(6033), 1, + anon_sym_SEMI, + STATE(3449), 1, + sym_where_clause, STATE(2827), 2, sym_line_comment, sym_block_comment, - [84642] = 6, + [83973] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1467), 1, - anon_sym_RPAREN, - ACTIONS(6072), 1, + ACTIONS(5522), 1, anon_sym_COMMA, - STATE(2909), 1, - aux_sym_parameters_repeat1, + ACTIONS(6035), 1, + anon_sym_PIPE, + STATE(2973), 1, + aux_sym_closure_parameters_repeat1, STATE(2828), 2, sym_line_comment, sym_block_comment, - [84662] = 6, + [83993] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(6074), 1, - anon_sym_for, - STATE(1958), 1, - sym_type_arguments, + ACTIONS(1025), 1, + anon_sym_RPAREN, + ACTIONS(4153), 1, + anon_sym_COMMA, + STATE(2636), 1, + aux_sym_arguments_repeat1, STATE(2829), 2, sym_line_comment, sym_block_comment, - [84682] = 6, + [84013] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5553), 1, + ACTIONS(959), 1, + anon_sym_RPAREN, + ACTIONS(6037), 1, anon_sym_COMMA, - ACTIONS(6076), 1, - anon_sym_PIPE, - STATE(2772), 1, - aux_sym_closure_parameters_repeat1, + STATE(2636), 1, + aux_sym_arguments_repeat1, STATE(2830), 2, sym_line_comment, sym_block_comment, - [84702] = 6, + [84033] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5233), 1, - anon_sym_RBRACE, - ACTIONS(6078), 1, - anon_sym_COMMA, - STATE(2863), 1, - aux_sym_struct_pattern_repeat1, STATE(2831), 2, sym_line_comment, sym_block_comment, - [84722] = 4, + ACTIONS(4764), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84049] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -180786,640 +180156,636 @@ static const uint16_t ts_small_parse_table[] = { STATE(2832), 2, sym_line_comment, sym_block_comment, - ACTIONS(4786), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84738] = 6, + ACTIONS(6039), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84065] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4710), 1, - anon_sym_GT, - ACTIONS(6080), 1, - anon_sym_COMMA, - STATE(2882), 1, - aux_sym_type_parameters_repeat1, STATE(2833), 2, sym_line_comment, sym_block_comment, - [84758] = 6, + ACTIONS(4868), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84081] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3009), 1, - anon_sym_SQUOTE, - ACTIONS(6082), 1, - anon_sym_GT, - STATE(3257), 1, - sym_lifetime, STATE(2834), 2, sym_line_comment, sym_block_comment, - [84778] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + ACTIONS(6041), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84097] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6084), 1, - anon_sym_move, - STATE(216), 1, - sym_closure_parameters, + ACTIONS(1625), 1, + anon_sym_GT, + ACTIONS(6043), 1, + anon_sym_COMMA, + STATE(2953), 1, + aux_sym_type_arguments_repeat1, STATE(2835), 2, sym_line_comment, sym_block_comment, - [84798] = 6, + [84117] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6086), 1, - anon_sym_SEMI, - STATE(626), 1, - sym_declaration_list, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(6045), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2836), 2, sym_line_comment, sym_block_comment, - [84818] = 6, + [84135] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(903), 1, - anon_sym_RBRACK, - ACTIONS(4129), 1, - anon_sym_COMMA, - STATE(2754), 1, - aux_sym_arguments_repeat1, + ACTIONS(6047), 1, + anon_sym_EQ_GT, + ACTIONS(6049), 1, + anon_sym_PIPE, + ACTIONS(6051), 1, + anon_sym_if, STATE(2837), 2, sym_line_comment, sym_block_comment, - [84838] = 6, + [84155] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4712), 1, - anon_sym_GT, - ACTIONS(5640), 1, + ACTIONS(1409), 1, + anon_sym_RPAREN, + ACTIONS(6053), 1, anon_sym_COMMA, - STATE(2882), 1, - aux_sym_type_parameters_repeat1, + STATE(2767), 1, + aux_sym_parameters_repeat1, STATE(2838), 2, sym_line_comment, sym_block_comment, - [84858] = 6, + [84175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6082), 1, - anon_sym_GT, - ACTIONS(6088), 1, + ACTIONS(4578), 1, + anon_sym_COLON_COLON, + ACTIONS(6055), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2929), 1, - aux_sym_for_lifetimes_repeat1, STATE(2839), 2, sym_line_comment, sym_block_comment, - [84878] = 6, + [84193] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4712), 1, - anon_sym_GT, - ACTIONS(5640), 1, + ACTIONS(4904), 1, + anon_sym_RBRACE, + ACTIONS(6057), 1, anon_sym_COMMA, - STATE(2925), 1, - aux_sym_type_parameters_repeat1, + STATE(2852), 1, + aux_sym_enum_variant_list_repeat2, STATE(2840), 2, sym_line_comment, sym_block_comment, - [84898] = 6, + [84213] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3205), 1, - anon_sym_RPAREN, - ACTIONS(6090), 1, - anon_sym_COMMA, - STATE(2942), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6059), 1, + anon_sym_SEMI, + STATE(1261), 1, + sym_declaration_list, STATE(2841), 2, sym_line_comment, sym_block_comment, - [84918] = 6, + [84233] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1635), 1, - anon_sym_GT, - ACTIONS(6092), 1, - anon_sym_COMMA, - STATE(2843), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6061), 1, + anon_sym_SEMI, + STATE(1263), 1, + sym_declaration_list, STATE(2842), 2, sym_line_comment, sym_block_comment, - [84938] = 5, + [84253] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5571), 1, - anon_sym_GT, - ACTIONS(6094), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(5648), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2843), 3, + STATE(2843), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [84956] = 6, + [84271] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(6097), 1, + ACTIONS(6063), 1, anon_sym_SEMI, - STATE(1260), 1, + STATE(1269), 1, sym_declaration_list, STATE(2844), 2, sym_line_comment, sym_block_comment, - [84976] = 6, + [84291] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6099), 1, - anon_sym_RPAREN, - ACTIONS(6101), 1, - anon_sym_COMMA, - STATE(2798), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6065), 1, + anon_sym_SEMI, + STATE(1271), 1, + sym_declaration_list, STATE(2845), 2, sym_line_comment, sym_block_comment, - [84996] = 5, + [84311] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(6103), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6067), 1, + anon_sym_SEMI, + ACTIONS(6069), 1, + anon_sym_EQ, STATE(2846), 2, sym_line_comment, sym_block_comment, - [85014] = 6, + [84331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4019), 1, - anon_sym_LT2, - ACTIONS(4970), 1, - anon_sym_COLON_COLON, - STATE(1632), 1, - sym_type_arguments, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6071), 1, + anon_sym_SEMI, + ACTIONS(6073), 1, + anon_sym_RBRACK, STATE(2847), 2, sym_line_comment, sym_block_comment, - [85034] = 5, + [84351] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6105), 2, - anon_sym_GT, + ACTIONS(4912), 1, + anon_sym_RBRACE, + ACTIONS(6075), 1, anon_sym_COMMA, + STATE(3010), 1, + aux_sym_field_declaration_list_repeat1, STATE(2848), 2, sym_line_comment, sym_block_comment, - [85052] = 6, + [84371] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6107), 1, - anon_sym_SEMI, - ACTIONS(6109), 1, - anon_sym_EQ, STATE(2849), 2, sym_line_comment, sym_block_comment, - [85072] = 5, + ACTIONS(1499), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84387] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6113), 1, - anon_sym_COLON, - ACTIONS(6111), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2850), 2, sym_line_comment, sym_block_comment, - [85090] = 6, + ACTIONS(5369), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84403] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6115), 1, + ACTIONS(6077), 1, anon_sym_RBRACE, - ACTIONS(6117), 1, + ACTIONS(6079), 1, anon_sym_COMMA, - STATE(3074), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2851), 2, + STATE(2851), 3, sym_line_comment, sym_block_comment, - [85110] = 6, + aux_sym_field_initializer_list_repeat1, + [84421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4816), 1, - anon_sym_LBRACE, - STATE(1958), 1, - sym_type_arguments, - STATE(2852), 2, + ACTIONS(6082), 1, + anon_sym_RBRACE, + ACTIONS(6084), 1, + anon_sym_COMMA, + STATE(2852), 3, sym_line_comment, sym_block_comment, - [85130] = 6, + aux_sym_enum_variant_list_repeat2, + [84439] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(6119), 1, - anon_sym_SEMI, - STATE(3449), 1, - sym_where_clause, + ACTIONS(6089), 1, + anon_sym_EQ, + ACTIONS(6087), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2853), 2, sym_line_comment, sym_block_comment, - [85150] = 4, + [84457] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4914), 1, + anon_sym_RBRACE, + ACTIONS(6091), 1, + anon_sym_COMMA, + STATE(2852), 1, + aux_sym_enum_variant_list_repeat2, STATE(2854), 2, sym_line_comment, sym_block_comment, - ACTIONS(4756), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85166] = 5, + [84477] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6121), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6093), 1, + anon_sym_SEMI, + STATE(1308), 1, + sym_declaration_list, STATE(2855), 2, sym_line_comment, sym_block_comment, - [85184] = 6, + [84497] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(6123), 1, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6095), 1, anon_sym_SEMI, - STATE(3453), 1, - sym_where_clause, + STATE(1310), 1, + sym_declaration_list, STATE(2856), 2, sym_line_comment, sym_block_comment, - [85204] = 6, + [84517] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6125), 1, + ACTIONS(1023), 1, anon_sym_RPAREN, - ACTIONS(6127), 1, + ACTIONS(6097), 1, anon_sym_COMMA, - STATE(2798), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2636), 1, + aux_sym_arguments_repeat1, STATE(2857), 2, sym_line_comment, sym_block_comment, - [85224] = 6, + [84537] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(6129), 1, + ACTIONS(6099), 1, anon_sym_SEMI, - STATE(1282), 1, + STATE(1316), 1, sym_declaration_list, STATE(2858), 2, sym_line_comment, sym_block_comment, - [85244] = 5, + [84557] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5708), 1, - anon_sym_EQ, - ACTIONS(5820), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6101), 1, + anon_sym_SEMI, + STATE(1318), 1, + sym_declaration_list, STATE(2859), 2, sym_line_comment, sym_block_comment, - [85262] = 6, + [84577] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4980), 1, - anon_sym_RBRACE, - ACTIONS(6131), 1, - anon_sym_COMMA, - STATE(2825), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6103), 1, + anon_sym_SEMI, + STATE(1324), 1, + sym_declaration_list, STATE(2860), 2, sym_line_comment, sym_block_comment, - [85282] = 5, + [84597] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6133), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6105), 1, + anon_sym_SEMI, + STATE(1326), 1, + sym_declaration_list, STATE(2861), 2, sym_line_comment, sym_block_comment, - [85300] = 6, + [84617] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4884), 1, - anon_sym_RBRACE, - ACTIONS(6135), 1, - anon_sym_COMMA, - STATE(2988), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(4633), 1, + anon_sym_COLON, + STATE(2675), 1, + sym_trait_bounds, STATE(2862), 2, sym_line_comment, sym_block_comment, - [85320] = 5, + [84637] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6137), 1, - anon_sym_RBRACE, - ACTIONS(6139), 1, - anon_sym_COMMA, - STATE(2863), 3, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6107), 1, + anon_sym_SEMI, + ACTIONS(6109), 1, + anon_sym_EQ, + STATE(2863), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [85338] = 6, + [84657] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4980), 1, - anon_sym_RBRACE, - ACTIONS(6131), 1, - anon_sym_COMMA, - STATE(2826), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4852), 1, + anon_sym_LBRACE, + STATE(1950), 1, + sym_type_arguments, STATE(2864), 2, sym_line_comment, sym_block_comment, - [85358] = 6, + [84677] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(6142), 1, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6111), 1, anon_sym_SEMI, - STATE(3469), 1, - sym_where_clause, + STATE(1342), 1, + sym_declaration_list, STATE(2865), 2, sym_line_comment, sym_block_comment, - [85378] = 6, + [84697] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1633), 1, - anon_sym_GT, - ACTIONS(6144), 1, - anon_sym_COMMA, - STATE(2870), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6113), 1, + anon_sym_SEMI, + STATE(1344), 1, + sym_declaration_list, STATE(2866), 2, sym_line_comment, sym_block_comment, - [85398] = 6, + [84717] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1633), 1, - anon_sym_GT, - ACTIONS(6144), 1, - anon_sym_COMMA, - STATE(2843), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6115), 1, + anon_sym_SEMI, + STATE(544), 1, + sym_declaration_list, STATE(2867), 2, sym_line_comment, sym_block_comment, - [85418] = 4, + [84737] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6117), 1, + anon_sym_SEMI, + STATE(546), 1, + sym_declaration_list, STATE(2868), 2, sym_line_comment, sym_block_comment, - ACTIONS(4513), 3, - anon_sym_EQ_GT, + [84757] = 6, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [85434] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6119), 1, + anon_sym_move, + STATE(217), 1, + sym_closure_parameters, STATE(2869), 2, sym_line_comment, sym_block_comment, - ACTIONS(4904), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85450] = 6, + [84777] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1625), 1, - anon_sym_GT, - ACTIONS(6146), 1, - anon_sym_COMMA, - STATE(2843), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6121), 1, + anon_sym_SEMI, + ACTIONS(6123), 1, + anon_sym_EQ, STATE(2870), 2, sym_line_comment, sym_block_comment, - [85470] = 6, + [84797] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6148), 1, - anon_sym_SEMI, - STATE(561), 1, - sym_declaration_list, + ACTIONS(917), 1, + anon_sym_RBRACK, + ACTIONS(6125), 1, + anon_sym_COMMA, + STATE(2636), 1, + aux_sym_arguments_repeat1, STATE(2871), 2, sym_line_comment, sym_block_comment, - [85490] = 6, + [84817] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3069), 1, - anon_sym_RPAREN, - ACTIONS(6150), 1, - anon_sym_COMMA, - STATE(2691), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6127), 1, + anon_sym_SEMI, + STATE(499), 1, + sym_declaration_list, STATE(2872), 2, sym_line_comment, sym_block_comment, - [85510] = 6, + [84837] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6152), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(6129), 1, anon_sym_SEMI, - STATE(563), 1, - sym_declaration_list, + STATE(3564), 1, + sym_where_clause, STATE(2873), 2, sym_line_comment, sym_block_comment, - [85530] = 6, + [84857] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4938), 1, - anon_sym_COLON_COLON, - STATE(1955), 1, - sym_type_arguments, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6131), 1, + anon_sym_SEMI, + STATE(501), 1, + sym_declaration_list, STATE(2874), 2, sym_line_comment, sym_block_comment, - [85550] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [84877] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6154), 1, - anon_sym_move, - STATE(230), 1, - sym_closure_parameters, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(6133), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2875), 2, sym_line_comment, sym_block_comment, - [85570] = 6, + [84895] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(943), 1, - anon_sym_RPAREN, - ACTIONS(4163), 1, - anon_sym_COMMA, - STATE(2754), 1, - aux_sym_arguments_repeat1, STATE(2876), 2, sym_line_comment, sym_block_comment, - [85590] = 6, + ACTIONS(6135), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [84911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, + ACTIONS(5001), 1, anon_sym_PLUS, - ACTIONS(6156), 1, - anon_sym_SEMI, - ACTIONS(6158), 1, - anon_sym_EQ, + ACTIONS(6137), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2877), 2, sym_line_comment, sym_block_comment, - [85610] = 5, + [84929] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6160), 1, - anon_sym_AMP_AMP, - ACTIONS(4289), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2878), 2, + ACTIONS(6133), 1, + anon_sym_RPAREN, + ACTIONS(6139), 1, + anon_sym_COMMA, + STATE(2878), 3, sym_line_comment, sym_block_comment, - [85628] = 4, + aux_sym_tuple_pattern_repeat1, + [84947] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -181427,1153 +180793,1161 @@ static const uint16_t ts_small_parse_table[] = { STATE(2879), 2, sym_line_comment, sym_block_comment, - ACTIONS(6162), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85644] = 5, + ACTIONS(4804), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84963] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6160), 1, - anon_sym_AMP_AMP, - ACTIONS(6164), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(5677), 1, + anon_sym_RPAREN, + ACTIONS(5679), 1, + anon_sym_COMMA, + STATE(2935), 1, + aux_sym_tuple_pattern_repeat1, STATE(2880), 2, sym_line_comment, sym_block_comment, - [85662] = 4, + [84983] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6142), 1, + anon_sym_SEMI, + ACTIONS(6144), 1, + anon_sym_RBRACK, STATE(2881), 2, sym_line_comment, sym_block_comment, - ACTIONS(4912), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85678] = 5, + [85003] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5820), 1, - anon_sym_GT, - ACTIONS(6166), 1, - anon_sym_COMMA, - STATE(2882), 3, + STATE(2882), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [85696] = 6, + ACTIONS(4816), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85019] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6169), 1, - anon_sym_SEMI, - STATE(588), 1, - sym_declaration_list, STATE(2883), 2, sym_line_comment, sym_block_comment, - [85716] = 6, + ACTIONS(4818), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85035] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_RBRACE, - ACTIONS(6171), 1, - anon_sym_COMMA, - STATE(2863), 1, - aux_sym_struct_pattern_repeat1, STATE(2884), 2, sym_line_comment, sym_block_comment, - [85736] = 6, + ACTIONS(4820), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85051] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6173), 1, - anon_sym_EQ_GT, - ACTIONS(6175), 1, - anon_sym_PIPE, - ACTIONS(6177), 1, - anon_sym_if, + ACTIONS(3299), 1, + anon_sym_LT2, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, + STATE(1074), 1, + sym_type_arguments, STATE(2885), 2, sym_line_comment, sym_block_comment, - [85756] = 6, + [85071] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6179), 1, - anon_sym_SEMI, - STATE(569), 1, - sym_declaration_list, + ACTIONS(6146), 1, + anon_sym_RBRACE, + ACTIONS(6148), 1, + anon_sym_COMMA, + STATE(3006), 1, + aux_sym_field_declaration_list_repeat1, STATE(2886), 2, sym_line_comment, sym_block_comment, - [85776] = 6, + [85091] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(6181), 1, - anon_sym_COLON_COLON, - STATE(1471), 1, - sym_field_initializer_list, + ACTIONS(6150), 1, + anon_sym_SEMI, + STATE(507), 1, + sym_declaration_list, STATE(2887), 2, sym_line_comment, sym_block_comment, - [85796] = 6, + [85111] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(957), 1, - anon_sym_RBRACK, - ACTIONS(6183), 1, + ACTIONS(3201), 1, + anon_sym_RPAREN, + ACTIONS(6152), 1, anon_sym_COMMA, - STATE(2754), 1, - aux_sym_arguments_repeat1, + STATE(2923), 1, + aux_sym_tuple_type_repeat1, STATE(2888), 2, sym_line_comment, sym_block_comment, - [85816] = 6, + [85131] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6185), 1, - anon_sym_SEMI, - STATE(590), 1, - sym_declaration_list, + ACTIONS(5504), 1, + anon_sym_RPAREN, + ACTIONS(5506), 1, + anon_sym_COMMA, + STATE(2900), 1, + aux_sym_parameters_repeat1, STATE(2889), 2, sym_line_comment, sym_block_comment, - [85836] = 5, + [85151] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4593), 1, + ACTIONS(4009), 1, + anon_sym_LBRACE, + ACTIONS(6154), 1, anon_sym_COLON_COLON, - ACTIONS(5404), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(1770), 1, + sym_field_initializer_list, STATE(2890), 2, sym_line_comment, sym_block_comment, - [85854] = 6, + [85171] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, - anon_sym_RPAREN, - ACTIONS(5772), 1, - anon_sym_COMMA, - STATE(2955), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4952), 1, + anon_sym_COLON_COLON, + STATE(1951), 1, + sym_type_arguments, STATE(2891), 2, sym_line_comment, sym_block_comment, - [85874] = 6, + [85191] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1643), 1, - anon_sym_GT, - ACTIONS(6187), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6156), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2959), 1, - aux_sym_type_arguments_repeat1, STATE(2892), 2, sym_line_comment, sym_block_comment, - [85894] = 6, + [85209] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1643), 1, - anon_sym_GT, - ACTIONS(6187), 1, - anon_sym_COMMA, - STATE(2843), 1, - aux_sym_type_arguments_repeat1, STATE(2893), 2, sym_line_comment, sym_block_comment, - [85914] = 5, + ACTIONS(4834), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85225] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6189), 2, + ACTIONS(1633), 1, anon_sym_GT, + ACTIONS(6158), 1, anon_sym_COMMA, + STATE(2949), 1, + aux_sym_type_arguments_repeat1, STATE(2894), 2, sym_line_comment, sym_block_comment, - [85932] = 6, + [85245] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3055), 1, - anon_sym_RPAREN, - ACTIONS(6191), 1, - anon_sym_COMMA, - STATE(2691), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(6160), 1, + anon_sym_move, + STATE(227), 1, + sym_closure_parameters, STATE(2895), 2, sym_line_comment, sym_block_comment, - [85952] = 4, + [85265] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6162), 1, + sym_identifier, + ACTIONS(6164), 1, + anon_sym_ref, + ACTIONS(6166), 1, + sym_mutable_specifier, STATE(2896), 2, sym_line_comment, sym_block_comment, - ACTIONS(4876), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85968] = 6, + [85285] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6193), 1, - anon_sym_SEMI, - ACTIONS(6195), 1, - anon_sym_EQ, + ACTIONS(1627), 1, + anon_sym_GT, + ACTIONS(6168), 1, + anon_sym_COMMA, + STATE(2904), 1, + aux_sym_type_arguments_repeat1, STATE(2897), 2, sym_line_comment, sym_block_comment, - [85988] = 6, + [85305] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5197), 1, - anon_sym_RBRACE, - ACTIONS(6197), 1, + ACTIONS(1627), 1, + anon_sym_GT, + ACTIONS(6168), 1, anon_sym_COMMA, - STATE(2863), 1, - aux_sym_struct_pattern_repeat1, + STATE(2953), 1, + aux_sym_type_arguments_repeat1, STATE(2898), 2, sym_line_comment, sym_block_comment, - [86008] = 6, + [85325] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3075), 1, + ACTIONS(6170), 1, anon_sym_RPAREN, - ACTIONS(6199), 1, + ACTIONS(6172), 1, anon_sym_COMMA, - STATE(2691), 1, - aux_sym_slice_pattern_repeat1, + STATE(2991), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2899), 2, sym_line_comment, sym_block_comment, - [86028] = 6, + [85345] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6201), 1, - sym_identifier, - ACTIONS(6203), 1, - anon_sym_ref, - ACTIONS(6205), 1, - sym_mutable_specifier, + ACTIONS(1407), 1, + anon_sym_RPAREN, + ACTIONS(5514), 1, + anon_sym_COMMA, + STATE(2767), 1, + aux_sym_parameters_repeat1, STATE(2900), 2, sym_line_comment, sym_block_comment, - [86048] = 6, + [85365] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5199), 1, - anon_sym_RBRACE, - ACTIONS(6207), 1, + ACTIONS(1407), 1, + anon_sym_RPAREN, + ACTIONS(5514), 1, anon_sym_COMMA, - STATE(2863), 1, - aux_sym_struct_pattern_repeat1, + STATE(2906), 1, + aux_sym_parameters_repeat1, STATE(2901), 2, sym_line_comment, sym_block_comment, - [86068] = 6, + [85385] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4061), 1, - anon_sym_LBRACE, - ACTIONS(6209), 1, - anon_sym_COLON_COLON, - STATE(1780), 1, - sym_field_initializer_list, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6174), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2902), 2, sym_line_comment, sym_block_comment, - [86088] = 5, + [85403] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5921), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6176), 1, + anon_sym_SEMI, + STATE(509), 1, + sym_declaration_list, STATE(2903), 2, sym_line_comment, sym_block_comment, - [86106] = 6, + [85423] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4754), 1, - anon_sym_COLON_COLON, - ACTIONS(4844), 1, - anon_sym_BANG, - ACTIONS(6211), 1, - sym_identifier, + ACTIONS(1635), 1, + anon_sym_GT, + ACTIONS(6178), 1, + anon_sym_COMMA, + STATE(2953), 1, + aux_sym_type_arguments_repeat1, STATE(2904), 2, sym_line_comment, sym_block_comment, - [86126] = 6, + [85443] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1447), 1, + ACTIONS(3077), 1, anon_sym_RPAREN, - ACTIONS(5461), 1, + ACTIONS(6180), 1, anon_sym_COMMA, - STATE(2909), 1, - aux_sym_parameters_repeat1, + STATE(2599), 1, + aux_sym_slice_pattern_repeat1, STATE(2905), 2, sym_line_comment, sym_block_comment, - [86146] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [85463] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6213), 1, - anon_sym_move, - STATE(218), 1, - sym_closure_parameters, + ACTIONS(1411), 1, + anon_sym_RPAREN, + ACTIONS(6182), 1, + anon_sym_COMMA, + STATE(2767), 1, + aux_sym_parameters_repeat1, STATE(2906), 2, sym_line_comment, sym_block_comment, - [86166] = 6, + [85483] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1447), 1, - anon_sym_RPAREN, - ACTIONS(5461), 1, - anon_sym_COMMA, - STATE(2967), 1, - aux_sym_parameters_repeat1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6184), 1, + anon_sym_SEMI, + STATE(553), 1, + sym_declaration_list, STATE(2907), 2, sym_line_comment, sym_block_comment, - [86186] = 6, + [85503] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6215), 1, + ACTIONS(6188), 1, + anon_sym_COLON, + ACTIONS(6186), 2, anon_sym_RBRACE, - ACTIONS(6217), 1, anon_sym_COMMA, - STATE(2860), 1, - aux_sym_field_declaration_list_repeat1, STATE(2908), 2, sym_line_comment, sym_block_comment, - [86206] = 5, + [85521] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5921), 1, - anon_sym_RPAREN, - ACTIONS(6219), 1, + ACTIONS(6192), 1, + anon_sym_COLON, + ACTIONS(6190), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2909), 3, + STATE(2909), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [86224] = 6, + [85539] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6222), 1, - anon_sym_SEMI, - STATE(571), 1, - sym_declaration_list, + ACTIONS(6194), 1, + anon_sym_move, + STATE(229), 1, + sym_closure_parameters, STATE(2910), 2, sym_line_comment, sym_block_comment, - [86244] = 6, + [85559] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4926), 1, - anon_sym_RBRACE, - ACTIONS(6224), 1, - anon_sym_COMMA, - STATE(2961), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6196), 1, + anon_sym_SEMI, + STATE(555), 1, + sym_declaration_list, STATE(2911), 2, sym_line_comment, sym_block_comment, - [86264] = 6, + [85579] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4926), 1, + ACTIONS(6198), 1, anon_sym_RBRACE, - ACTIONS(6224), 1, + ACTIONS(6200), 1, anon_sym_COMMA, - STATE(2970), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2771), 1, + aux_sym_field_initializer_list_repeat1, STATE(2912), 2, sym_line_comment, sym_block_comment, - [86284] = 5, + [85599] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6226), 2, - anon_sym_RPAREN, + ACTIONS(6202), 1, + anon_sym_RBRACE, + ACTIONS(6204), 1, anon_sym_COMMA, - STATE(2913), 2, + STATE(2913), 3, sym_line_comment, sym_block_comment, - [86302] = 6, + aux_sym_use_list_repeat1, + [85617] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4696), 1, - anon_sym_GT, - ACTIONS(6228), 1, + ACTIONS(5231), 1, + anon_sym_RBRACE, + ACTIONS(6207), 1, anon_sym_COMMA, - STATE(2882), 1, - aux_sym_type_parameters_repeat1, + STATE(2999), 1, + aux_sym_struct_pattern_repeat1, STATE(2914), 2, sym_line_comment, sym_block_comment, - [86322] = 6, + [85637] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(6230), 1, + ACTIONS(6209), 1, anon_sym_SEMI, - STATE(3464), 1, + STATE(3501), 1, sym_where_clause, STATE(2915), 2, sym_line_comment, sym_block_comment, - [86342] = 6, + [85657] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4003), 1, anon_sym_LT2, - ACTIONS(6232), 1, - anon_sym_for, - STATE(1958), 1, + ACTIONS(4922), 1, + anon_sym_COLON_COLON, + STATE(1609), 1, sym_type_arguments, STATE(2916), 2, sym_line_comment, sym_block_comment, - [86362] = 6, + [85677] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6234), 1, - sym_identifier, - ACTIONS(6236), 1, - anon_sym_ref, - ACTIONS(6238), 1, - sym_mutable_specifier, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6211), 1, + anon_sym_SEMI, + STATE(561), 1, + sym_declaration_list, STATE(2917), 2, sym_line_comment, sym_block_comment, - [86382] = 6, + [85697] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, - anon_sym_LBRACE, - ACTIONS(6240), 1, - anon_sym_COLON_COLON, - STATE(1471), 1, - sym_field_initializer_list, + ACTIONS(3079), 1, + anon_sym_RPAREN, + ACTIONS(6213), 1, + anon_sym_COMMA, + STATE(2599), 1, + aux_sym_slice_pattern_repeat1, STATE(2918), 2, sym_line_comment, sym_block_comment, - [86402] = 6, + [85717] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1411), 1, - anon_sym_RPAREN, - ACTIONS(6242), 1, - anon_sym_COMMA, - STATE(2909), 1, - aux_sym_parameters_repeat1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6215), 1, + anon_sym_SEMI, + ACTIONS(6217), 1, + anon_sym_EQ, STATE(2919), 2, sym_line_comment, sym_block_comment, - [86422] = 6, + [85737] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6244), 1, - anon_sym_LPAREN, - ACTIONS(6246), 1, - anon_sym_LBRACK, - ACTIONS(6248), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, + ACTIONS(6219), 1, + anon_sym_SEMI, + STATE(563), 1, + sym_declaration_list, STATE(2920), 2, sym_line_comment, sym_block_comment, - [86442] = 6, + [85757] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6250), 1, - anon_sym_LPAREN, - ACTIONS(6252), 1, - anon_sym_LBRACK, - ACTIONS(6254), 1, - anon_sym_LBRACE, + ACTIONS(5205), 1, + anon_sym_RBRACE, + ACTIONS(6221), 1, + anon_sym_COMMA, + STATE(2999), 1, + aux_sym_struct_pattern_repeat1, STATE(2921), 2, sym_line_comment, sym_block_comment, - [86462] = 6, + [85777] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4706), 1, - anon_sym_GT, - ACTIONS(6256), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6223), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2882), 1, - aux_sym_type_parameters_repeat1, STATE(2922), 2, sym_line_comment, sym_block_comment, - [86482] = 6, + [85795] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(6258), 1, - anon_sym_SEMI, - STATE(3522), 1, - sym_where_clause, - STATE(2923), 2, + ACTIONS(6223), 1, + anon_sym_RPAREN, + ACTIONS(6225), 1, + anon_sym_COMMA, + STATE(2923), 3, sym_line_comment, sym_block_comment, - [86502] = 6, + aux_sym_tuple_type_repeat1, + [85813] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4724), 1, - anon_sym_GT, - ACTIONS(6260), 1, - anon_sym_COMMA, - STATE(2882), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6228), 1, + anon_sym_SEMI, + ACTIONS(6230), 1, + anon_sym_EQ, STATE(2924), 2, sym_line_comment, sym_block_comment, - [86522] = 6, + [85833] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, + ACTIONS(1629), 1, anon_sym_GT, - ACTIONS(6262), 1, + ACTIONS(6232), 1, anon_sym_COMMA, - STATE(2882), 1, - aux_sym_type_parameters_repeat1, + STATE(2927), 1, + aux_sym_type_arguments_repeat1, STATE(2925), 2, sym_line_comment, sym_block_comment, - [86542] = 6, + [85853] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(6264), 1, - anon_sym_LBRACE, - STATE(1958), 1, - sym_type_arguments, + ACTIONS(1629), 1, + anon_sym_GT, + ACTIONS(6232), 1, + anon_sym_COMMA, + STATE(2953), 1, + aux_sym_type_arguments_repeat1, STATE(2926), 2, sym_line_comment, sym_block_comment, - [86562] = 6, + [85873] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6266), 1, - anon_sym_SEMI, - STATE(1328), 1, - sym_declaration_list, + ACTIONS(1631), 1, + anon_sym_GT, + ACTIONS(6234), 1, + anon_sym_COMMA, + STATE(2953), 1, + aux_sym_type_arguments_repeat1, STATE(2927), 2, sym_line_comment, sym_block_comment, - [86582] = 6, + [85893] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3009), 1, - anon_sym_SQUOTE, - ACTIONS(6268), 1, - anon_sym_GT, - STATE(3257), 1, - sym_lifetime, + ACTIONS(1003), 1, + anon_sym_RBRACK, + ACTIONS(4151), 1, + anon_sym_COMMA, + STATE(2636), 1, + aux_sym_arguments_repeat1, STATE(2928), 2, sym_line_comment, sym_block_comment, - [86602] = 5, + [85913] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6270), 1, - anon_sym_GT, - ACTIONS(6272), 1, - anon_sym_COMMA, - STATE(2929), 3, + ACTIONS(6236), 1, + anon_sym_move, + STATE(239), 1, + sym_closure_parameters, + STATE(2929), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [86620] = 6, + [85933] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6275), 1, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(6238), 1, anon_sym_SEMI, - STATE(1335), 1, - sym_declaration_list, + STATE(3435), 1, + sym_where_clause, STATE(2930), 2, sym_line_comment, sym_block_comment, - [86640] = 6, + [85953] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, + ACTIONS(3440), 1, anon_sym_LBRACE, - ACTIONS(6277), 1, - anon_sym_SEMI, - STATE(734), 1, - sym_declaration_list, + ACTIONS(6240), 1, + anon_sym_COLON_COLON, + STATE(1429), 1, + sym_field_initializer_list, STATE(2931), 2, sym_line_comment, sym_block_comment, - [86660] = 6, + [85973] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6279), 1, - anon_sym_RBRACE, - ACTIONS(6281), 1, - anon_sym_COMMA, - STATE(2774), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4876), 1, + anon_sym_LBRACE, + ACTIONS(6242), 1, + anon_sym_SEMI, + STATE(1091), 1, + sym_declaration_list, STATE(2932), 2, sym_line_comment, sym_block_comment, - [86680] = 6, + [85993] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6283), 1, - anon_sym_SEMI, - ACTIONS(6285), 1, - anon_sym_EQ, + ACTIONS(1453), 1, + anon_sym_RPAREN, + ACTIONS(5526), 1, + anon_sym_COMMA, + STATE(2767), 1, + aux_sym_parameters_repeat1, STATE(2933), 2, sym_line_comment, sym_block_comment, - [86700] = 6, + [86013] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6287), 1, - anon_sym_SEMI, - ACTIONS(6289), 1, + ACTIONS(6244), 1, anon_sym_EQ, + ACTIONS(6246), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2934), 2, sym_line_comment, sym_block_comment, - [86720] = 4, + [86031] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(2999), 1, + anon_sym_RPAREN, + ACTIONS(6248), 1, + anon_sym_COMMA, + STATE(2878), 1, + aux_sym_tuple_pattern_repeat1, STATE(2935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4842), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86736] = 5, + [86051] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6293), 1, - anon_sym_COLON, - ACTIONS(6291), 2, - anon_sym_RBRACE, + ACTIONS(1453), 1, + anon_sym_RPAREN, + ACTIONS(5526), 1, anon_sym_COMMA, + STATE(2777), 1, + aux_sym_parameters_repeat1, STATE(2936), 2, sym_line_comment, sym_block_comment, - [86754] = 6, + [86071] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5020), 1, - anon_sym_RBRACE, - ACTIONS(6295), 1, - anon_sym_COMMA, - STATE(2989), 1, - aux_sym_field_declaration_list_repeat1, STATE(2937), 2, sym_line_comment, sym_block_comment, - [86774] = 6, + ACTIONS(6250), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86087] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6297), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6252), 1, anon_sym_SEMI, - STATE(703), 1, - sym_declaration_list, + ACTIONS(6254), 1, + anon_sym_EQ, STATE(2938), 2, sym_line_comment, sym_block_comment, - [86794] = 6, + [86107] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6299), 1, - anon_sym_SEMI, - STATE(1347), 1, - sym_declaration_list, + ACTIONS(1017), 1, + anon_sym_RBRACK, + ACTIONS(4065), 1, + anon_sym_COMMA, + STATE(2636), 1, + aux_sym_arguments_repeat1, STATE(2939), 2, sym_line_comment, sym_block_comment, - [86814] = 6, + [86127] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(4948), 1, - anon_sym_for, - STATE(1958), 1, - sym_type_arguments, STATE(2940), 2, sym_line_comment, sym_block_comment, - [86834] = 6, + ACTIONS(6256), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86143] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5455), 1, - anon_sym_RPAREN, - ACTIONS(5457), 1, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(6258), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3049), 1, - aux_sym_parameters_repeat1, STATE(2941), 2, sym_line_comment, sym_block_comment, - [86854] = 5, + [86161] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6226), 1, - anon_sym_RPAREN, - ACTIONS(6301), 1, + ACTIONS(3087), 1, + anon_sym_RBRACK, + ACTIONS(6260), 1, anon_sym_COMMA, - STATE(2942), 3, + STATE(2599), 1, + aux_sym_slice_pattern_repeat1, + STATE(2942), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [86872] = 4, + [86181] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(3009), 1, + anon_sym_SQUOTE, + ACTIONS(6262), 1, + anon_sym_GT, + STATE(3058), 1, + sym_lifetime, STATE(2943), 2, sym_line_comment, sym_block_comment, - ACTIONS(4920), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86888] = 6, + [86201] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6304), 1, - anon_sym_SEMI, - ACTIONS(6306), 1, - anon_sym_EQ, + ACTIONS(6262), 1, + anon_sym_GT, + ACTIONS(6264), 1, + anon_sym_COMMA, + STATE(2824), 1, + aux_sym_for_lifetimes_repeat1, STATE(2944), 2, sym_line_comment, sym_block_comment, - [86908] = 6, + [86221] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(6308), 1, - anon_sym_SEMI, - STATE(3581), 1, - sym_where_clause, + ACTIONS(6266), 1, + sym_identifier, + ACTIONS(6268), 1, + anon_sym_ref, + ACTIONS(6270), 1, + sym_mutable_specifier, STATE(2945), 2, sym_line_comment, sym_block_comment, - [86928] = 6, + [86241] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, - anon_sym_RBRACK, - ACTIONS(4183), 1, + ACTIONS(6272), 1, + anon_sym_RPAREN, + ACTIONS(6274), 1, anon_sym_COMMA, - STATE(2754), 1, - aux_sym_arguments_repeat1, + STATE(2991), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2946), 2, sym_line_comment, sym_block_comment, - [86948] = 4, + [86261] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6276), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2947), 2, sym_line_comment, sym_block_comment, - ACTIONS(4818), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86964] = 6, + [86279] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6310), 1, - anon_sym_LPAREN, - ACTIONS(6312), 1, - anon_sym_LBRACK, - ACTIONS(6314), 1, - anon_sym_LBRACE, + ACTIONS(6278), 1, + sym_identifier, + ACTIONS(6280), 1, + anon_sym_await, + ACTIONS(6282), 1, + sym_integer_literal, STATE(2948), 2, sym_line_comment, sym_block_comment, - [86984] = 4, + [86299] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1623), 1, + anon_sym_GT, + ACTIONS(6284), 1, + anon_sym_COMMA, + STATE(2953), 1, + aux_sym_type_arguments_repeat1, STATE(2949), 2, sym_line_comment, sym_block_comment, - ACTIONS(4820), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87000] = 6, + [86319] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(6316), 1, - anon_sym_SEMI, - STATE(3375), 1, - sym_where_clause, + ACTIONS(3440), 1, + anon_sym_LBRACE, + ACTIONS(6286), 1, + anon_sym_COLON_COLON, + STATE(1429), 1, + sym_field_initializer_list, STATE(2950), 2, sym_line_comment, sym_block_comment, - [87020] = 4, + [86339] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6288), 1, + anon_sym_LPAREN, + ACTIONS(6290), 1, + anon_sym_LBRACK, + ACTIONS(6292), 1, + anon_sym_LBRACE, STATE(2951), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87036] = 6, + [86359] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(959), 1, - anon_sym_RPAREN, - ACTIONS(6318), 1, - anon_sym_COMMA, - STATE(2754), 1, - aux_sym_arguments_repeat1, + ACTIONS(6294), 1, + anon_sym_LPAREN, + ACTIONS(6296), 1, + anon_sym_LBRACK, + ACTIONS(6298), 1, + anon_sym_LBRACE, STATE(2952), 2, sym_line_comment, sym_block_comment, - [87056] = 6, + [86379] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6320), 1, - anon_sym_SEMI, - STATE(1244), 1, - sym_declaration_list, - STATE(2953), 2, + ACTIONS(5389), 1, + anon_sym_GT, + ACTIONS(6300), 1, + anon_sym_COMMA, + STATE(2953), 3, sym_line_comment, sym_block_comment, - [87076] = 4, + aux_sym_type_arguments_repeat1, + [86397] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(6303), 1, + anon_sym_LBRACE, + STATE(1950), 1, + sym_type_arguments, STATE(2954), 2, sym_line_comment, sym_block_comment, - ACTIONS(4854), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87092] = 6, + [86417] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2995), 1, - anon_sym_RPAREN, - ACTIONS(6322), 1, - anon_sym_COMMA, - STATE(2822), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6305), 1, + anon_sym_SEMI, + STATE(580), 1, + sym_declaration_list, STATE(2955), 2, sym_line_comment, sym_block_comment, - [87112] = 4, + [86437] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6309), 1, + anon_sym_COLON, + ACTIONS(6307), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2956), 2, sym_line_comment, sym_block_comment, - ACTIONS(4824), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87128] = 6, + [86455] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_COLON, - ACTIONS(4938), 1, - anon_sym_COLON_COLON, - STATE(2666), 1, - sym_trait_bounds, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6311), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2957), 2, sym_line_comment, sym_block_comment, - [87148] = 4, + [86473] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6315), 1, + anon_sym_EQ, + ACTIONS(6313), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2958), 2, sym_line_comment, sym_block_comment, - ACTIONS(4878), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87164] = 6, + [86491] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1639), 1, - anon_sym_GT, - ACTIONS(6324), 1, - anon_sym_COMMA, - STATE(2843), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6317), 1, + anon_sym_SEMI, + STATE(582), 1, + sym_declaration_list, STATE(2959), 2, sym_line_comment, sym_block_comment, - [87184] = 6, + [86511] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3067), 1, - anon_sym_RBRACK, - ACTIONS(6326), 1, + ACTIONS(6319), 1, + anon_sym_RBRACE, + ACTIONS(6321), 1, anon_sym_COMMA, - STATE(2691), 1, - aux_sym_slice_pattern_repeat1, + STATE(2914), 1, + aux_sym_struct_pattern_repeat1, STATE(2960), 2, sym_line_comment, sym_block_comment, - [87204] = 5, + [86531] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6328), 1, + ACTIONS(4902), 1, anon_sym_RBRACE, - ACTIONS(6330), 1, + ACTIONS(6323), 1, anon_sym_COMMA, - STATE(2961), 3, + STATE(2852), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2961), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [87222] = 5, + [86551] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6335), 1, - anon_sym_EQ, - ACTIONS(6333), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6325), 1, + anon_sym_LPAREN, + ACTIONS(6327), 1, + anon_sym_LBRACK, + ACTIONS(6329), 1, + anon_sym_LBRACE, STATE(2962), 2, sym_line_comment, sym_block_comment, - [87240] = 4, + [86571] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4902), 1, + anon_sym_RBRACE, + ACTIONS(6323), 1, + anon_sym_COMMA, + STATE(2854), 1, + aux_sym_enum_variant_list_repeat2, STATE(2963), 2, sym_line_comment, sym_block_comment, - ACTIONS(4864), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87256] = 4, + [86591] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -182581,53 +181955,51 @@ static const uint16_t ts_small_parse_table[] = { STATE(2964), 2, sym_line_comment, sym_block_comment, - ACTIONS(4866), 3, + ACTIONS(4858), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87272] = 6, + [86607] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3099), 1, - anon_sym_PLUS, - ACTIONS(6337), 1, - sym_mutable_specifier, - ACTIONS(6339), 1, - sym_self, STATE(2965), 2, sym_line_comment, sym_block_comment, - [87292] = 6, + ACTIONS(4860), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86623] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, - anon_sym_RBRACE, - ACTIONS(6341), 1, + ACTIONS(925), 1, + anon_sym_RBRACK, + ACTIONS(4061), 1, anon_sym_COMMA, - STATE(2961), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2636), 1, + aux_sym_arguments_repeat1, STATE(2966), 2, sym_line_comment, sym_block_comment, - [87312] = 6, + [86643] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1461), 1, - anon_sym_RPAREN, - ACTIONS(6343), 1, + ACTIONS(4680), 1, + anon_sym_GT, + ACTIONS(5881), 1, anon_sym_COMMA, - STATE(2909), 1, - aux_sym_parameters_repeat1, + STATE(2979), 1, + aux_sym_type_parameters_repeat1, STATE(2967), 2, sym_line_comment, sym_block_comment, - [87332] = 4, + [86663] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -182635,813 +182007,819 @@ static const uint16_t ts_small_parse_table[] = { STATE(2968), 2, sym_line_comment, sym_block_comment, - ACTIONS(4914), 3, + ACTIONS(4864), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [87348] = 4, + [86679] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6331), 1, + anon_sym_LPAREN, + ACTIONS(6333), 1, + anon_sym_LBRACK, + ACTIONS(6335), 1, + anon_sym_LBRACE, STATE(2969), 2, sym_line_comment, sym_block_comment, - ACTIONS(6345), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87364] = 6, + [86699] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_RBRACE, - ACTIONS(6347), 1, + ACTIONS(5807), 1, + anon_sym_RPAREN, + ACTIONS(5809), 1, anon_sym_COMMA, - STATE(2961), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2753), 1, + aux_sym_tuple_pattern_repeat1, STATE(2970), 2, sym_line_comment, sym_block_comment, - [87384] = 4, + [86719] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5518), 1, + anon_sym_COLON, + ACTIONS(6337), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2971), 2, sym_line_comment, sym_block_comment, - ACTIONS(4872), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87400] = 6, + [86737] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(6349), 1, - anon_sym_for, - STATE(1958), 1, - sym_type_arguments, STATE(2972), 2, sym_line_comment, sym_block_comment, - [87420] = 4, + ACTIONS(6339), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86753] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2973), 2, + ACTIONS(6337), 1, + anon_sym_PIPE, + ACTIONS(6341), 1, + anon_sym_COMMA, + STATE(2973), 3, sym_line_comment, sym_block_comment, - ACTIONS(4856), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87436] = 5, + aux_sym_closure_parameters_repeat1, + [86771] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6351), 1, + ACTIONS(6346), 1, + anon_sym_COLON, + ACTIONS(6344), 2, anon_sym_RBRACE, - ACTIONS(6353), 1, anon_sym_COMMA, - STATE(2974), 3, + STATE(2974), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [87454] = 6, + [86789] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6356), 1, - anon_sym_SEMI, - STATE(1078), 1, - sym_declaration_list, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6348), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2975), 2, sym_line_comment, sym_block_comment, - [87474] = 6, + [86807] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6358), 1, - anon_sym_SEMI, - STATE(1080), 1, - sym_declaration_list, STATE(2976), 2, sym_line_comment, sym_block_comment, - [87494] = 6, + ACTIONS(4866), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86823] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6360), 1, - anon_sym_SEMI, - STATE(765), 1, - sym_declaration_list, STATE(2977), 2, sym_line_comment, sym_block_comment, - [87514] = 6, + ACTIONS(4870), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6362), 1, - sym_identifier, - ACTIONS(6364), 1, - anon_sym_await, - ACTIONS(6366), 1, - sym_integer_literal, - STATE(2978), 2, + ACTIONS(6350), 1, + anon_sym_GT, + ACTIONS(6352), 1, + anon_sym_COMMA, + STATE(2978), 3, sym_line_comment, sym_block_comment, - [87534] = 6, + aux_sym_type_parameters_repeat1, + [86857] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(6368), 1, - anon_sym_SEMI, - STATE(3412), 1, - sym_where_clause, + ACTIONS(4674), 1, + anon_sym_GT, + ACTIONS(6355), 1, + anon_sym_COMMA, + STATE(2978), 1, + aux_sym_type_parameters_repeat1, STATE(2979), 2, sym_line_comment, sym_block_comment, - [87554] = 6, + [86877] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(6370), 1, + ACTIONS(6357), 1, anon_sym_SEMI, - STATE(649), 1, + STATE(722), 1, sym_declaration_list, STATE(2980), 2, sym_line_comment, sym_block_comment, - [87574] = 4, + [86897] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6359), 1, + anon_sym_RBRACE, + ACTIONS(6361), 1, + anon_sym_COMMA, + STATE(2921), 1, + aux_sym_struct_pattern_repeat1, STATE(2981), 2, sym_line_comment, sym_block_comment, - ACTIONS(4858), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87590] = 6, + [86917] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6372), 1, - anon_sym_SEMI, - STATE(1086), 1, - sym_declaration_list, STATE(2982), 2, sym_line_comment, sym_block_comment, - [87610] = 6, + ACTIONS(6363), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86933] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6374), 1, - anon_sym_SEMI, - STATE(1088), 1, - sym_declaration_list, STATE(2983), 2, sym_line_comment, sym_block_comment, - [87630] = 6, + ACTIONS(4840), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86949] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, - anon_sym_COLON_COLON, - ACTIONS(4642), 1, - anon_sym_COLON, - STATE(2666), 1, - sym_trait_bounds, + ACTIONS(3213), 1, + anon_sym_RPAREN, + ACTIONS(6365), 1, + anon_sym_COMMA, + STATE(2923), 1, + aux_sym_tuple_type_repeat1, STATE(2984), 2, sym_line_comment, sym_block_comment, - [87650] = 6, + [86969] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, + ACTIONS(5257), 1, anon_sym_PLUS, - ACTIONS(6376), 1, - anon_sym_SEMI, - ACTIONS(6378), 1, - anon_sym_EQ, + ACTIONS(6367), 1, + anon_sym_GT, + ACTIONS(6369), 1, + anon_sym_as, STATE(2985), 2, sym_line_comment, sym_block_comment, - [87670] = 4, + [86989] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6371), 1, + anon_sym_SEMI, + STATE(728), 1, + sym_declaration_list, STATE(2986), 2, sym_line_comment, sym_block_comment, - ACTIONS(6380), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87686] = 6, + [87009] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4934), 1, - anon_sym_LT, - ACTIONS(6382), 1, - anon_sym_EQ, - STATE(3559), 1, - sym_type_parameters, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(6373), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2987), 2, sym_line_comment, sym_block_comment, - [87706] = 5, + [87027] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6384), 1, - anon_sym_RBRACE, - ACTIONS(6386), 1, - anon_sym_COMMA, - STATE(2988), 3, + STATE(2988), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [87724] = 6, + ACTIONS(6375), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [87043] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4952), 1, - anon_sym_RBRACE, - ACTIONS(6389), 1, - anon_sym_COMMA, - STATE(2825), 1, - aux_sym_field_declaration_list_repeat1, STATE(2989), 2, sym_line_comment, sym_block_comment, - [87744] = 6, + ACTIONS(1007), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [87059] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, - anon_sym_RBRACE, - ACTIONS(6391), 1, - anon_sym_COMMA, - STATE(2974), 1, - aux_sym_use_list_repeat1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6377), 1, + anon_sym_SEMI, + ACTIONS(6379), 1, + anon_sym_RBRACK, STATE(2990), 2, sym_line_comment, sym_block_comment, - [87764] = 4, + [87079] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2991), 2, + ACTIONS(6381), 1, + anon_sym_RPAREN, + ACTIONS(6383), 1, + anon_sym_COMMA, + STATE(2991), 3, sym_line_comment, sym_block_comment, - ACTIONS(6393), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87780] = 4, + aux_sym_ordered_field_declaration_list_repeat1, + [87097] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4979), 1, + anon_sym_for, + STATE(1950), 1, + sym_type_arguments, STATE(2992), 2, sym_line_comment, sym_block_comment, - ACTIONS(6395), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87796] = 4, + [87117] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(6386), 1, + anon_sym_for, + STATE(1950), 1, + sym_type_arguments, STATE(2993), 2, sym_line_comment, sym_block_comment, - ACTIONS(6397), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87812] = 4, + [87137] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6388), 1, + anon_sym_move, + STATE(236), 1, + sym_closure_parameters, STATE(2994), 2, sym_line_comment, sym_block_comment, - ACTIONS(6399), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87828] = 4, + [87157] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6390), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2995), 2, sym_line_comment, sym_block_comment, - ACTIONS(6401), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87844] = 4, + [87175] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5286), 1, + anon_sym_GT, + ACTIONS(5288), 1, + anon_sym_COMMA, + STATE(2736), 1, + aux_sym_type_parameters_repeat1, STATE(2996), 2, sym_line_comment, sym_block_comment, - ACTIONS(6403), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87860] = 6, + [87195] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6405), 1, - anon_sym_SEMI, - STATE(502), 1, - sym_declaration_list, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(6392), 1, + anon_sym_COLON_COLON, + STATE(1951), 1, + sym_type_arguments, STATE(2997), 2, sym_line_comment, sym_block_comment, - [87880] = 6, + [87215] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6407), 1, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6394), 1, anon_sym_SEMI, - STATE(504), 1, - sym_declaration_list, + ACTIONS(6396), 1, + anon_sym_EQ, STATE(2998), 2, sym_line_comment, sym_block_comment, - [87900] = 6, + [87235] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(923), 1, - anon_sym_RBRACK, - ACTIONS(4105), 1, + ACTIONS(6398), 1, + anon_sym_RBRACE, + ACTIONS(6400), 1, anon_sym_COMMA, - STATE(2754), 1, - aux_sym_arguments_repeat1, - STATE(2999), 2, + STATE(2999), 3, sym_line_comment, sym_block_comment, - [87920] = 6, + aux_sym_struct_pattern_repeat1, + [87253] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6409), 1, - anon_sym_GT, - ACTIONS(6411), 1, - anon_sym_COMMA, - STATE(2839), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(6403), 1, + sym_identifier, + ACTIONS(6405), 1, + anon_sym_await, + ACTIONS(6407), 1, + sym_integer_literal, STATE(3000), 2, sym_line_comment, sym_block_comment, - [87940] = 5, + [87273] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6413), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(3001), 2, sym_line_comment, sym_block_comment, - [87958] = 6, + ACTIONS(4784), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87289] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5700), 1, - anon_sym_RPAREN, - ACTIONS(5702), 1, - anon_sym_COMMA, - STATE(2785), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(6409), 1, + anon_sym_AMP_AMP, + ACTIONS(4339), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(3002), 2, sym_line_comment, sym_block_comment, - [87978] = 4, + [87307] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6411), 1, + anon_sym_RPAREN, + ACTIONS(6413), 1, + anon_sym_COMMA, + STATE(2991), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(3003), 2, sym_line_comment, sym_block_comment, - ACTIONS(4822), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87994] = 6, + [87327] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1023), 1, + ACTIONS(5550), 1, anon_sym_RPAREN, - ACTIONS(4189), 1, + ACTIONS(5552), 1, anon_sym_COMMA, - STATE(2754), 1, - aux_sym_arguments_repeat1, + STATE(2933), 1, + aux_sym_parameters_repeat1, STATE(3004), 2, sym_line_comment, sym_block_comment, - [88014] = 6, + [87347] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5423), 1, - anon_sym_GT, - ACTIONS(5425), 1, - anon_sym_COMMA, - STATE(2808), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(3099), 1, + anon_sym_PLUS, + ACTIONS(6415), 1, + sym_mutable_specifier, + ACTIONS(6417), 1, + sym_self, STATE(3005), 2, sym_line_comment, sym_block_comment, - [88034] = 6, + [87367] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4890), 1, + ACTIONS(4918), 1, anon_sym_RBRACE, - ACTIONS(6415), 1, + ACTIONS(6419), 1, anon_sym_COMMA, - STATE(2988), 1, - aux_sym_field_initializer_list_repeat1, + STATE(3010), 1, + aux_sym_field_declaration_list_repeat1, STATE(3006), 2, sym_line_comment, sym_block_comment, - [88054] = 5, + [87387] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6417), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(3007), 2, sym_line_comment, sym_block_comment, - [88072] = 5, + ACTIONS(4489), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87403] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6421), 1, - anon_sym_COLON, - ACTIONS(6419), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(3008), 2, sym_line_comment, sym_block_comment, - [88090] = 6, + ACTIONS(4792), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87419] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5328), 1, - anon_sym_PLUS, - ACTIONS(6423), 1, - anon_sym_GT, - ACTIONS(6425), 1, - anon_sym_as, + ACTIONS(4918), 1, + anon_sym_RBRACE, + ACTIONS(6419), 1, + anon_sym_COMMA, + STATE(3015), 1, + aux_sym_field_declaration_list_repeat1, STATE(3009), 2, sym_line_comment, sym_block_comment, - [88110] = 5, + [87439] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5708), 1, - anon_sym_EQ, - ACTIONS(5848), 2, - anon_sym_GT, + ACTIONS(6421), 1, + anon_sym_RBRACE, + ACTIONS(6423), 1, anon_sym_COMMA, - STATE(3010), 2, + STATE(3010), 3, sym_line_comment, sym_block_comment, - [88128] = 4, + aux_sym_field_declaration_list_repeat1, + [87457] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6426), 1, + anon_sym_GT, + ACTIONS(6428), 1, + anon_sym_COMMA, + STATE(2944), 1, + aux_sym_for_lifetimes_repeat1, STATE(3011), 2, sym_line_comment, sym_block_comment, - ACTIONS(6427), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88144] = 5, + [87477] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4593), 1, - anon_sym_COLON_COLON, - ACTIONS(6429), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4889), 1, + anon_sym_where, + ACTIONS(6430), 1, + anon_sym_SEMI, + STATE(3552), 1, + sym_where_clause, STATE(3012), 2, sym_line_comment, sym_block_comment, - [88162] = 6, + [87497] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(6431), 1, + ACTIONS(6432), 1, anon_sym_SEMI, - STATE(710), 1, + STATE(602), 1, sym_declaration_list, STATE(3013), 2, sym_line_comment, sym_block_comment, - [88182] = 6, + [87517] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1607), 1, - anon_sym_GT, - ACTIONS(6433), 1, - anon_sym_COMMA, - STATE(2842), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4948), 1, + anon_sym_LBRACE, + ACTIONS(6434), 1, + anon_sym_SEMI, + STATE(659), 1, + sym_declaration_list, STATE(3014), 2, sym_line_comment, sym_block_comment, - [88202] = 6, + [87537] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6435), 1, - anon_sym_LPAREN, - ACTIONS(6437), 1, - anon_sym_LBRACK, - ACTIONS(6439), 1, - anon_sym_LBRACE, + ACTIONS(4916), 1, + anon_sym_RBRACE, + ACTIONS(6436), 1, + anon_sym_COMMA, + STATE(3010), 1, + aux_sym_field_declaration_list_repeat1, STATE(3015), 2, sym_line_comment, sym_block_comment, - [88222] = 6, + [87557] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6441), 1, - anon_sym_SEMI, - ACTIONS(6443), 1, - anon_sym_RBRACK, + ACTIONS(6438), 1, + anon_sym_GT, + ACTIONS(6440), 1, + anon_sym_COMMA, + STATE(2773), 1, + aux_sym_type_parameters_repeat1, STATE(3016), 2, sym_line_comment, sym_block_comment, - [88242] = 6, + [87577] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6445), 1, - anon_sym_SEMI, - STATE(1126), 1, - sym_declaration_list, + ACTIONS(6442), 1, + sym_identifier, + ACTIONS(6444), 1, + anon_sym_ref, + ACTIONS(6446), 1, + sym_mutable_specifier, STATE(3017), 2, sym_line_comment, sym_block_comment, - [88262] = 6, + [87597] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - ACTIONS(6447), 1, + ACTIONS(6448), 1, anon_sym_SEMI, - STATE(1128), 1, + STATE(1116), 1, sym_declaration_list, STATE(3018), 2, sym_line_comment, sym_block_comment, - [88282] = 4, + [87617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6409), 1, + anon_sym_AMP_AMP, + ACTIONS(6450), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(3019), 2, sym_line_comment, sym_block_comment, - ACTIONS(6449), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88298] = 5, + [87635] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(5818), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(4958), 1, + anon_sym_for, + STATE(1950), 1, + sym_type_arguments, STATE(3020), 2, sym_line_comment, sym_block_comment, - [88316] = 6, + [87655] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6451), 1, - anon_sym_SEMI, - STATE(1135), 1, - sym_declaration_list, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + ACTIONS(4808), 1, + anon_sym_BANG, + ACTIONS(6452), 1, + sym_identifier, STATE(3021), 2, sym_line_comment, sym_block_comment, - [88336] = 6, + [87675] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6453), 1, - anon_sym_SEMI, - STATE(1137), 1, - sym_declaration_list, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(6454), 1, + anon_sym_for, + STATE(1950), 1, + sym_type_arguments, STATE(3022), 2, sym_line_comment, sym_block_comment, - [88356] = 6, + [87695] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1607), 1, - anon_sym_GT, - ACTIONS(6433), 1, - anon_sym_COMMA, - STATE(2843), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4887), 1, + anon_sym_LT, + ACTIONS(6456), 1, + anon_sym_EQ, + STATE(3578), 1, + sym_type_parameters, STATE(3023), 2, sym_line_comment, sym_block_comment, - [88376] = 4, + [87715] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(6458), 1, + anon_sym_for, + STATE(1950), 1, + sym_type_arguments, STATE(3024), 2, sym_line_comment, sym_block_comment, - ACTIONS(4860), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88392] = 6, + [87735] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, + ACTIONS(4889), 1, anon_sym_where, - ACTIONS(6455), 1, + ACTIONS(6460), 1, anon_sym_SEMI, - STATE(3555), 1, + STATE(3351), 1, sym_where_clause, STATE(3025), 2, sym_line_comment, sym_block_comment, - [88412] = 6, + [87755] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6457), 1, - anon_sym_SEMI, - STATE(1143), 1, - sym_declaration_list, + ACTIONS(4485), 1, + anon_sym_LT2, + ACTIONS(6462), 1, + anon_sym_for, + STATE(1950), 1, + sym_type_arguments, STATE(3026), 2, sym_line_comment, sym_block_comment, - [88432] = 6, + [87775] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - ACTIONS(6459), 1, + ACTIONS(6464), 1, anon_sym_SEMI, - STATE(1145), 1, + STATE(741), 1, sym_declaration_list, STATE(3027), 2, sym_line_comment, sym_block_comment, - [88452] = 6, + [87795] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, + ACTIONS(4485), 1, anon_sym_LT2, - ACTIONS(6461), 1, - anon_sym_COLON_COLON, - STATE(1955), 1, + ACTIONS(6466), 1, + anon_sym_for, + STATE(1950), 1, sym_type_arguments, STATE(3028), 2, sym_line_comment, sym_block_comment, - [88472] = 4, + [87815] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, @@ -183449,6997 +182827,6428 @@ static const uint16_t ts_small_parse_table[] = { STATE(3029), 2, sym_line_comment, sym_block_comment, - ACTIONS(4886), 3, + ACTIONS(4794), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [88488] = 4, + [87831] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(1633), 1, + anon_sym_GT, + ACTIONS(6158), 1, + anon_sym_COMMA, + STATE(2953), 1, + aux_sym_type_arguments_repeat1, STATE(3030), 2, sym_line_comment, sym_block_comment, - ACTIONS(6463), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88504] = 6, + [87851] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6465), 1, - anon_sym_SEMI, - ACTIONS(6467), 1, - anon_sym_EQ, + ACTIONS(6468), 1, + anon_sym_LPAREN, + ACTIONS(6470), 1, + anon_sym_COLON_COLON, STATE(3031), 2, sym_line_comment, sym_block_comment, - [88524] = 6, + [87868] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6469), 1, - anon_sym_SEMI, - ACTIONS(6471), 1, - anon_sym_EQ, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(532), 1, + sym_declaration_list, STATE(3032), 2, sym_line_comment, sym_block_comment, - [88544] = 4, + [87885] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5399), 2, + sym_identifier, + sym_super, STATE(3033), 2, sym_line_comment, sym_block_comment, - ACTIONS(4888), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88560] = 6, + [87900] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6473), 1, + ACTIONS(5213), 1, + anon_sym_RPAREN, + ACTIONS(6472), 1, anon_sym_SEMI, - ACTIONS(6475), 1, - anon_sym_RBRACK, STATE(3034), 2, sym_line_comment, sym_block_comment, - [88580] = 6, + [87917] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6477), 1, - anon_sym_SEMI, - STATE(713), 1, - sym_declaration_list, + ACTIONS(5399), 1, + sym_super, + ACTIONS(6474), 1, + sym_identifier, STATE(3035), 2, sym_line_comment, sym_block_comment, - [88600] = 6, + [87934] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, + ACTIONS(4885), 1, anon_sym_LBRACE, - ACTIONS(6479), 1, - anon_sym_SEMI, - STATE(1161), 1, - sym_declaration_list, + STATE(757), 1, + sym_field_declaration_list, STATE(3036), 2, sym_line_comment, sym_block_comment, - [88620] = 6, + [87951] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6481), 1, - anon_sym_SEMI, - STATE(1163), 1, - sym_declaration_list, + ACTIONS(3009), 1, + anon_sym_SQUOTE, + STATE(3011), 1, + sym_lifetime, STATE(3037), 2, sym_line_comment, sym_block_comment, - [88640] = 6, + [87968] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6483), 1, - anon_sym_SEMI, - STATE(510), 1, - sym_declaration_list, + ACTIONS(6476), 1, + sym_identifier, + ACTIONS(6478), 1, + sym_super, STATE(3038), 2, sym_line_comment, sym_block_comment, - [88660] = 4, + [87985] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(533), 1, + sym_declaration_list, STATE(3039), 2, sym_line_comment, sym_block_comment, - ACTIONS(4896), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88676] = 4, + [88002] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6480), 2, + sym_identifier, + sym_super, STATE(3040), 2, sym_line_comment, sym_block_comment, - ACTIONS(4898), 3, - anon_sym_EQ_GT, + [88017] = 5, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [88692] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(6485), 1, - anon_sym_SEMI, - STATE(512), 1, - sym_declaration_list, + STATE(217), 1, + sym_closure_parameters, STATE(3041), 2, sym_line_comment, sym_block_comment, - [88712] = 4, + [88034] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6482), 2, + sym_identifier, + sym_metavariable, STATE(3042), 2, sym_line_comment, sym_block_comment, - ACTIONS(4900), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88728] = 4, + [88049] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6484), 1, + anon_sym_SEMI, + ACTIONS(6486), 1, + anon_sym_as, STATE(3043), 2, sym_line_comment, sym_block_comment, - ACTIONS(4902), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88744] = 6, + [88066] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5628), 1, - anon_sym_GT, - ACTIONS(5630), 1, - anon_sym_COMMA, - STATE(2838), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5213), 1, + anon_sym_RBRACK, + ACTIONS(6472), 1, + anon_sym_SEMI, STATE(3044), 2, sym_line_comment, sym_block_comment, - [88764] = 4, + [88083] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6488), 1, + sym_identifier, + ACTIONS(6490), 1, + sym_super, STATE(3045), 2, sym_line_comment, sym_block_comment, - ACTIONS(5561), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88780] = 6, + [88100] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(5001), 1, - anon_sym_for, - STATE(1958), 1, - sym_type_arguments, + ACTIONS(6492), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3046), 2, sym_line_comment, sym_block_comment, - [88800] = 6, + [88115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(6487), 1, - anon_sym_SEMI, - STATE(3463), 1, - sym_where_clause, + ACTIONS(5644), 1, + sym_super, + ACTIONS(6494), 1, + sym_identifier, STATE(3047), 2, sym_line_comment, sym_block_comment, - [88820] = 6, + [88132] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6489), 1, - anon_sym_SEMI, - STATE(1198), 1, - sym_declaration_list, + ACTIONS(6496), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3048), 2, sym_line_comment, sym_block_comment, - [88840] = 6, + [88147] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1415), 1, - anon_sym_RPAREN, - ACTIONS(5511), 1, - anon_sym_COMMA, - STATE(2909), 1, - aux_sym_parameters_repeat1, + ACTIONS(5225), 1, + anon_sym_RBRACE, + ACTIONS(6472), 1, + anon_sym_SEMI, STATE(3049), 2, sym_line_comment, sym_block_comment, - [88860] = 5, + [88164] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6491), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(3997), 1, + anon_sym_LPAREN, + STATE(1623), 1, + sym_parameters, STATE(3050), 2, sym_line_comment, sym_block_comment, - [88878] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [88181] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6493), 1, - anon_sym_move, - STATE(245), 1, - sym_closure_parameters, + ACTIONS(6472), 1, + anon_sym_SEMI, + ACTIONS(6498), 1, + anon_sym_RBRACE, STATE(3051), 2, sym_line_comment, sym_block_comment, - [88898] = 4, + [88198] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6133), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3052), 2, sym_line_comment, sym_block_comment, - ACTIONS(6495), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88914] = 6, + [88213] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4934), 1, - anon_sym_LT, - ACTIONS(6497), 1, - anon_sym_EQ, - STATE(3620), 1, - sym_type_parameters, + ACTIONS(5297), 1, + anon_sym_LBRACE, + STATE(646), 1, + sym_enum_variant_list, STATE(3053), 2, sym_line_comment, sym_block_comment, - [88934] = 6, + [88230] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(6499), 1, + ACTIONS(6472), 1, anon_sym_SEMI, - STATE(3450), 1, - sym_where_clause, + ACTIONS(6500), 1, + anon_sym_RBRACE, STATE(3054), 2, sym_line_comment, sym_block_comment, - [88954] = 6, + [88247] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(6501), 1, - anon_sym_for, - STATE(1958), 1, - sym_type_arguments, + ACTIONS(4885), 1, + anon_sym_LBRACE, + STATE(606), 1, + sym_field_declaration_list, STATE(3055), 2, sym_line_comment, sym_block_comment, - [88974] = 6, + [88264] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6503), 1, - anon_sym_RBRACE, - ACTIONS(6505), 1, - anon_sym_COMMA, - STATE(2990), 1, - aux_sym_use_list_repeat1, + STATE(242), 1, + sym_closure_parameters, STATE(3056), 2, sym_line_comment, sym_block_comment, - [88994] = 6, + [88281] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(6507), 1, - anon_sym_for, - STATE(1958), 1, - sym_type_arguments, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(687), 1, + sym_declaration_list, STATE(3057), 2, sym_line_comment, sym_block_comment, - [89014] = 6, + [88298] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, - anon_sym_RBRACK, - ACTIONS(6509), 1, + ACTIONS(6024), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2754), 1, - aux_sym_arguments_repeat1, STATE(3058), 2, sym_line_comment, sym_block_comment, - [89034] = 5, + [88313] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6513), 1, - anon_sym_COLON, - ACTIONS(6511), 2, - anon_sym_RBRACE, + ACTIONS(6502), 2, + anon_sym_GT, anon_sym_COMMA, STATE(3059), 2, sym_line_comment, sym_block_comment, - [89052] = 6, + [88328] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4936), 1, - anon_sym_where, - ACTIONS(6515), 1, - anon_sym_SEMI, - STATE(3473), 1, - sym_where_clause, + ACTIONS(5693), 1, + sym_identifier, + ACTIONS(5695), 1, + sym_super, STATE(3060), 2, sym_line_comment, sym_block_comment, - [89072] = 6, + [88345] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - anon_sym_RBRACE, - ACTIONS(6519), 1, - anon_sym_COMMA, - STATE(2831), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(5602), 2, + sym_identifier, + sym_super, STATE(3061), 2, sym_line_comment, sym_block_comment, - [89092] = 6, + [88360] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4509), 1, - anon_sym_LT2, - ACTIONS(6521), 1, - anon_sym_for, - STATE(1958), 1, - sym_type_arguments, + ACTIONS(6504), 1, + sym_identifier, + ACTIONS(6506), 1, + sym_super, STATE(3062), 2, sym_line_comment, sym_block_comment, - [89112] = 6, + [88377] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3065), 1, - anon_sym_RPAREN, - ACTIONS(6523), 1, - anon_sym_COMMA, - STATE(2691), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5399), 1, + sym_super, + ACTIONS(6508), 1, + sym_identifier, STATE(3063), 2, sym_line_comment, sym_block_comment, - [89132] = 4, + [88394] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(6474), 1, + sym_identifier, + ACTIONS(6510), 1, + sym_super, STATE(3064), 2, sym_line_comment, sym_block_comment, - ACTIONS(4862), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89148] = 6, + [88411] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1415), 1, - anon_sym_RPAREN, - ACTIONS(5511), 1, - anon_sym_COMMA, - STATE(2919), 1, - aux_sym_parameters_repeat1, + ACTIONS(5644), 2, + sym_identifier, + sym_super, STATE(3065), 2, sym_line_comment, sym_block_comment, - [89168] = 6, + [88426] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6525), 1, + ACTIONS(5123), 1, + sym_super, + ACTIONS(5738), 1, sym_identifier, - ACTIONS(6527), 1, - anon_sym_ref, - ACTIONS(6529), 1, - sym_mutable_specifier, STATE(3066), 2, sym_line_comment, sym_block_comment, - [89188] = 6, + [88443] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6531), 1, - anon_sym_RBRACE, - ACTIONS(6533), 1, - anon_sym_COMMA, - STATE(2862), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(6480), 1, + sym_super, + ACTIONS(6512), 1, + sym_identifier, STATE(3067), 2, sym_line_comment, sym_block_comment, - [89208] = 4, + [88460] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + STATE(243), 1, + sym_closure_parameters, STATE(3068), 2, sym_line_comment, sym_block_comment, - ACTIONS(6535), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [89224] = 6, + [88477] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6537), 1, - anon_sym_SEMI, - ACTIONS(6539), 1, - anon_sym_EQ, + ACTIONS(4885), 1, + anon_sym_LBRACE, + STATE(697), 1, + sym_field_declaration_list, STATE(3069), 2, sym_line_comment, sym_block_comment, - [89244] = 6, + [88494] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - ACTIONS(6541), 1, + ACTIONS(5121), 1, + anon_sym_RBRACE, + ACTIONS(6472), 1, anon_sym_SEMI, - STATE(1228), 1, - sym_declaration_list, STATE(3070), 2, sym_line_comment, sym_block_comment, - [89264] = 4, + [88511] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, + ACTIONS(5399), 1, + sym_super, + ACTIONS(6514), 1, + sym_identifier, STATE(3071), 2, sym_line_comment, sym_block_comment, - ACTIONS(6543), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [89280] = 5, + [88528] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6547), 1, - anon_sym_EQ, - ACTIONS(6545), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6516), 1, + anon_sym_LT, + STATE(933), 1, + sym_type_parameters, STATE(3072), 2, sym_line_comment, sym_block_comment, - [89298] = 6, + [88545] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(977), 1, - anon_sym_RPAREN, - ACTIONS(6549), 1, - anon_sym_COMMA, - STATE(2754), 1, - aux_sym_arguments_repeat1, + ACTIONS(3997), 1, + anon_sym_LPAREN, + STATE(1649), 1, + sym_parameters, STATE(3073), 2, sym_line_comment, sym_block_comment, - [89318] = 6, + [88562] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5020), 1, - anon_sym_RBRACE, - ACTIONS(6295), 1, - anon_sym_COMMA, - STATE(2825), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(5644), 1, + sym_super, + ACTIONS(6518), 1, + sym_identifier, STATE(3074), 2, sym_line_comment, sym_block_comment, - [89338] = 5, + [88579] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, + ACTIONS(5165), 1, + anon_sym_RPAREN, + ACTIONS(6472), 1, anon_sym_SEMI, - ACTIONS(6553), 1, - anon_sym_as, STATE(3075), 2, sym_line_comment, sym_block_comment, - [89355] = 5, + [88596] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_LPAREN, - STATE(1183), 1, - sym_parameters, + ACTIONS(6520), 2, + sym_identifier, + sym_super, STATE(3076), 2, sym_line_comment, sym_block_comment, - [89372] = 5, + [88611] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(755), 1, - sym_declaration_list, + ACTIONS(6522), 1, + anon_sym_LBRACK, + ACTIONS(6524), 1, + anon_sym_BANG, STATE(3077), 2, sym_line_comment, sym_block_comment, - [89389] = 4, + [88628] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5848), 2, - anon_sym_GT, - anon_sym_COMMA, + STATE(227), 1, + sym_closure_parameters, STATE(3078), 2, sym_line_comment, sym_block_comment, - [89404] = 4, + [88645] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6555), 2, - sym_identifier, - sym_super, + ACTIONS(6516), 1, + anon_sym_LT, + STATE(1056), 1, + sym_type_parameters, STATE(3079), 2, sym_line_comment, sym_block_comment, - [89419] = 5, + [88662] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5437), 1, - sym_super, - ACTIONS(6557), 1, - sym_identifier, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(6526), 1, + anon_sym_in, STATE(3080), 2, sym_line_comment, sym_block_comment, - [89436] = 5, + [88679] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, - anon_sym_COLON_COLON, - ACTIONS(4948), 1, - anon_sym_for, + ACTIONS(5165), 1, + anon_sym_RBRACK, + ACTIONS(6472), 1, + anon_sym_SEMI, STATE(3081), 2, sym_line_comment, sym_block_comment, - [89453] = 5, + [88696] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5437), 1, - sym_super, - ACTIONS(6559), 1, - sym_identifier, + ACTIONS(5131), 1, + anon_sym_RBRACE, + ACTIONS(6472), 1, + anon_sym_SEMI, STATE(3082), 2, sym_line_comment, sym_block_comment, - [89470] = 4, + [88713] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4930), 1, + anon_sym_LBRACE, + STATE(1128), 1, + sym_field_declaration_list, STATE(3083), 2, sym_line_comment, sym_block_comment, - [89485] = 5, + [88730] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6563), 1, - sym_identifier, - ACTIONS(6565), 1, - sym_super, + ACTIONS(3291), 1, + anon_sym_LPAREN, + STATE(1148), 1, + sym_parameters, STATE(3084), 2, sym_line_comment, sym_block_comment, - [89502] = 5, + [88747] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, + ACTIONS(4009), 1, anon_sym_LBRACE, - STATE(1189), 1, - sym_enum_variant_list, + STATE(1770), 1, + sym_field_initializer_list, STATE(3085), 2, sym_line_comment, sym_block_comment, - [89519] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [88764] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(245), 1, - sym_closure_parameters, + ACTIONS(3997), 1, + anon_sym_LPAREN, + STATE(1634), 1, + sym_parameters, STATE(3086), 2, sym_line_comment, sym_block_comment, - [89536] = 5, + [88781] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6567), 1, - anon_sym_EQ, + ACTIONS(6528), 2, + sym_identifier, + sym_super, STATE(3087), 2, sym_line_comment, sym_block_comment, - [89553] = 5, + [88796] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - STATE(2256), 1, - sym_parameters, + ACTIONS(4885), 1, + anon_sym_LBRACE, + STATE(700), 1, + sym_field_declaration_list, STATE(3088), 2, sym_line_comment, sym_block_comment, - [89570] = 4, + [88813] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5818), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(758), 1, + sym_declaration_list, STATE(3089), 2, sym_line_comment, sym_block_comment, - [89585] = 5, + [88830] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_COLON, - ACTIONS(5328), 1, - anon_sym_PLUS, + ACTIONS(6530), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3090), 2, sym_line_comment, sym_block_comment, - [89602] = 5, + [88845] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6569), 1, + ACTIONS(6532), 1, sym_identifier, - ACTIONS(6571), 1, - sym_super, + ACTIONS(6534), 1, + sym_mutable_specifier, STATE(3091), 2, sym_line_comment, sym_block_comment, - [89619] = 4, + [88862] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6573), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5197), 1, + anon_sym_RBRACE, + ACTIONS(6472), 1, + anon_sym_SEMI, STATE(3092), 2, sym_line_comment, sym_block_comment, - [89634] = 5, + [88879] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5696), 1, - sym_super, - ACTIONS(6575), 1, - sym_identifier, + ACTIONS(6077), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3093), 2, sym_line_comment, sym_block_comment, - [89651] = 4, + [88894] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6536), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3094), 2, sym_line_comment, sym_block_comment, - [89666] = 4, + [88909] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6579), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5616), 1, + sym_identifier, + ACTIONS(5618), 1, + sym_super, STATE(3095), 2, sym_line_comment, sym_block_comment, - [89681] = 5, + [88926] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4013), 1, - anon_sym_LPAREN, - STATE(1638), 1, - sym_parameters, + ACTIONS(5399), 1, + sym_super, + ACTIONS(6538), 1, + sym_identifier, STATE(3096), 2, sym_line_comment, sym_block_comment, - [89698] = 5, + [88943] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4968), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(754), 1, - sym_field_declaration_list, + STATE(1152), 1, + sym_enum_variant_list, STATE(3097), 2, sym_line_comment, sym_block_comment, - [89715] = 5, + [88960] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1207), 1, - sym_declaration_list, + STATE(229), 1, + sym_closure_parameters, STATE(3098), 2, sym_line_comment, sym_block_comment, - [89732] = 5, + [88977] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3009), 1, - anon_sym_SQUOTE, - STATE(3257), 1, - sym_lifetime, + ACTIONS(5399), 1, + sym_super, + ACTIONS(6540), 1, + sym_identifier, STATE(3099), 2, sym_line_comment, sym_block_comment, - [89749] = 5, + [88994] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LBRACE, - STATE(1216), 1, - sym_field_declaration_list, + ACTIONS(4646), 1, + anon_sym_BANG, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, STATE(3100), 2, sym_line_comment, sym_block_comment, - [89766] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89011] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(221), 1, - sym_closure_parameters, + ACTIONS(6542), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3101), 2, sym_line_comment, sym_block_comment, - [89783] = 4, + [89026] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 2, - sym_identifier, + ACTIONS(5644), 1, sym_super, + ACTIONS(6544), 1, + sym_identifier, STATE(3102), 2, sym_line_comment, sym_block_comment, - [89798] = 4, + [89043] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 2, - sym_identifier, - sym_super, + ACTIONS(6546), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3103), 2, sym_line_comment, sym_block_comment, - [89813] = 5, + [89058] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5670), 1, - sym_identifier, - ACTIONS(5672), 1, - sym_super, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(609), 1, + sym_declaration_list, STATE(3104), 2, sym_line_comment, sym_block_comment, - [89830] = 4, + [89075] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5680), 2, - sym_identifier, - sym_super, + ACTIONS(6548), 2, + sym_float_literal, + sym_integer_literal, STATE(3105), 2, sym_line_comment, sym_block_comment, - [89845] = 5, + [89090] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6585), 1, + ACTIONS(6494), 1, sym_identifier, - ACTIONS(6587), 1, + ACTIONS(6550), 1, sym_super, STATE(3106), 2, sym_line_comment, sym_block_comment, - [89862] = 5, + [89107] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6559), 1, - sym_identifier, - ACTIONS(6589), 1, - sym_super, + STATE(216), 1, + sym_closure_parameters, STATE(3107), 2, sym_line_comment, sym_block_comment, - [89879] = 5, + [89124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6591), 1, - anon_sym_STAR_SLASH, - ACTIONS(6593), 1, - sym__block_comment_content, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(524), 1, + sym_declaration_list, STATE(3108), 2, sym_line_comment, sym_block_comment, - [89896] = 5, + [89141] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5764), 1, - sym_identifier, + ACTIONS(6552), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3109), 2, sym_line_comment, sym_block_comment, - [89913] = 5, + [89156] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6595), 1, + ACTIONS(5695), 2, sym_identifier, + sym_super, STATE(3110), 2, sym_line_comment, sym_block_comment, - [89930] = 4, + [89171] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6597), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6510), 1, + sym_super, + ACTIONS(6554), 1, + sym_identifier, STATE(3111), 2, sym_line_comment, sym_block_comment, - [89945] = 5, + [89188] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6599), 1, - anon_sym_SEMI, - ACTIONS(6601), 1, - anon_sym_as, + ACTIONS(5123), 1, + sym_super, + ACTIONS(5616), 1, + sym_identifier, STATE(3112), 2, sym_line_comment, sym_block_comment, - [89962] = 5, + [89205] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6234), 1, + ACTIONS(6480), 1, + sym_super, + ACTIONS(6556), 1, sym_identifier, - ACTIONS(6238), 1, - sym_mutable_specifier, STATE(3113), 2, sym_line_comment, sym_block_comment, - [89979] = 5, + [89222] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6603), 1, + ACTIONS(4887), 1, anon_sym_LT, - STATE(905), 1, + STATE(1012), 1, sym_type_parameters, STATE(3114), 2, sym_line_comment, sym_block_comment, - [89996] = 5, + [89239] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4013), 1, - anon_sym_LPAREN, - STATE(1630), 1, - sym_parameters, + ACTIONS(4885), 1, + anon_sym_LBRACE, + STATE(671), 1, + sym_field_declaration_list, STATE(3115), 2, sym_line_comment, sym_block_comment, - [90013] = 5, + [89256] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 1, - anon_sym_PLUS, - ACTIONS(6605), 1, - anon_sym_GT, + ACTIONS(6516), 1, + anon_sym_LT, + STATE(909), 1, + sym_type_parameters, STATE(3116), 2, sym_line_comment, sym_block_comment, - [90030] = 5, + [89273] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(3291), 1, anon_sym_LPAREN, - STATE(1975), 1, + STATE(1079), 1, sym_parameters, STATE(3117), 2, sym_line_comment, sym_block_comment, - [90047] = 5, + [89290] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6607), 1, - sym_identifier, - ACTIONS(6609), 1, + ACTIONS(6558), 2, + anon_sym_const, sym_mutable_specifier, STATE(3118), 2, sym_line_comment, sym_block_comment, - [90064] = 4, + [89305] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6611), 2, - sym_identifier, - sym_super, + ACTIONS(4646), 1, + anon_sym_BANG, + ACTIONS(4702), 1, + anon_sym_COLON_COLON, STATE(3119), 2, sym_line_comment, sym_block_comment, - [90079] = 5, + [89322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5181), 1, - anon_sym_RBRACE, - ACTIONS(6613), 1, - anon_sym_SEMI, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(2232), 1, + sym_parameters, STATE(3120), 2, sym_line_comment, sym_block_comment, - [90096] = 5, + [89339] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5183), 1, - anon_sym_RBRACE, - ACTIONS(6613), 1, - anon_sym_SEMI, + ACTIONS(6560), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3121), 2, sym_line_comment, sym_block_comment, - [90113] = 4, + [89354] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6615), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(6562), 1, + anon_sym_SEMI, + ACTIONS(6564), 1, + anon_sym_as, STATE(3122), 2, sym_line_comment, sym_block_comment, - [90128] = 4, + [89371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 2, - sym_identifier, + ACTIONS(5123), 1, sym_super, + ACTIONS(5736), 1, + sym_identifier, STATE(3123), 2, sym_line_comment, sym_block_comment, - [90143] = 5, + [89388] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4013), 1, - anon_sym_LPAREN, - STATE(1647), 1, - sym_parameters, + ACTIONS(6566), 2, + sym_identifier, + sym_metavariable, STATE(3124), 2, sym_line_comment, sym_block_comment, - [90160] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89403] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(219), 1, - sym_closure_parameters, + ACTIONS(6568), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3125), 2, sym_line_comment, sym_block_comment, - [90177] = 5, + [89418] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_SEMI, - ACTIONS(6617), 1, - anon_sym_RPAREN, + ACTIONS(4876), 1, + anon_sym_LBRACE, + STATE(1224), 1, + sym_declaration_list, STATE(3126), 2, sym_line_comment, sym_block_comment, - [90194] = 4, + [89435] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5978), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(6570), 2, + sym_identifier, + sym_metavariable, STATE(3127), 2, sym_line_comment, sym_block_comment, - [90209] = 5, + [89450] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6603), 1, - anon_sym_LT, - STATE(920), 1, - sym_type_parameters, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(1966), 1, + sym_parameters, STATE(3128), 2, sym_line_comment, sym_block_comment, - [90226] = 5, + [89467] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(729), 1, - sym_declaration_list, + STATE(239), 1, + sym_closure_parameters, STATE(3129), 2, sym_line_comment, sym_block_comment, - [90243] = 4, + [89484] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5259), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(236), 1, + sym_closure_parameters, STATE(3130), 2, sym_line_comment, sym_block_comment, - [90258] = 5, + [89501] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, - anon_sym_COLON_COLON, - ACTIONS(6074), 1, - anon_sym_for, + ACTIONS(6266), 1, + sym_identifier, + ACTIONS(6270), 1, + sym_mutable_specifier, STATE(3131), 2, sym_line_comment, sym_block_comment, - [90275] = 5, + [89518] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5437), 1, + ACTIONS(6550), 1, sym_super, - ACTIONS(6619), 1, + ACTIONS(6572), 1, sym_identifier, STATE(3132), 2, sym_line_comment, sym_block_comment, - [90292] = 5, + [89535] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_LPAREN, - STATE(1247), 1, - sym_parameters, + STATE(223), 1, + sym_closure_parameters, STATE(3133), 2, sym_line_comment, sym_block_comment, - [90309] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89552] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(216), 1, - sym_closure_parameters, + ACTIONS(4339), 1, + anon_sym_EQ_GT, + ACTIONS(6574), 1, + anon_sym_AMP_AMP, STATE(3134), 2, sym_line_comment, sym_block_comment, - [90326] = 4, + [89569] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6621), 2, - sym_identifier, - sym_super, + ACTIONS(6450), 1, + anon_sym_EQ_GT, + ACTIONS(6574), 1, + anon_sym_AMP_AMP, STATE(3135), 2, sym_line_comment, sym_block_comment, - [90341] = 5, + [89586] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6623), 1, - anon_sym_in, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(571), 1, + sym_declaration_list, STATE(3136), 2, sym_line_comment, sym_block_comment, - [90358] = 4, + [89603] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6528), 1, + sym_super, + ACTIONS(6576), 1, + sym_identifier, STATE(3137), 2, sym_line_comment, sym_block_comment, - [90373] = 5, + [89620] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5696), 1, + ACTIONS(5618), 1, sym_super, - ACTIONS(6627), 1, + ACTIONS(5734), 1, sym_identifier, STATE(3138), 2, sym_line_comment, sym_block_comment, - [90390] = 5, + [89637] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6603), 1, - anon_sym_LT, - STATE(1060), 1, - sym_type_parameters, + ACTIONS(6578), 1, + sym_identifier, + ACTIONS(6580), 1, + sym_super, STATE(3139), 2, sym_line_comment, sym_block_comment, - [90407] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89654] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(224), 1, - sym_closure_parameters, + ACTIONS(4876), 1, + anon_sym_LBRACE, + STATE(1230), 1, + sym_declaration_list, STATE(3140), 2, sym_line_comment, sym_block_comment, - [90424] = 5, + [89671] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3009), 1, - anon_sym_SQUOTE, - STATE(3000), 1, - sym_lifetime, + ACTIONS(4876), 1, + anon_sym_LBRACE, + STATE(1231), 1, + sym_declaration_list, STATE(3141), 2, sym_line_comment, sym_block_comment, - [90441] = 5, + [89688] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - anon_sym_LBRACE, - STATE(1252), 1, - sym_enum_variant_list, + ACTIONS(6582), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3142), 2, sym_line_comment, sym_block_comment, - [90458] = 4, + [89703] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5672), 2, - sym_identifier, - sym_super, + ACTIONS(6584), 1, + anon_sym_STAR_SLASH, + ACTIONS(6586), 1, + sym__block_comment_content, STATE(3143), 2, sym_line_comment, sym_block_comment, - [90473] = 5, + [89720] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6629), 1, - anon_sym_LPAREN, - ACTIONS(6631), 1, - anon_sym_COLON_COLON, + STATE(235), 1, + sym_closure_parameters, STATE(3144), 2, sym_line_comment, sym_block_comment, - [90490] = 5, + [89737] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 1, - sym_super, - ACTIONS(6633), 1, - sym_identifier, + ACTIONS(6468), 1, + anon_sym_LPAREN, + ACTIONS(6588), 1, + anon_sym_COLON_COLON, STATE(3145), 2, sym_line_comment, sym_block_comment, - [90507] = 5, + [89754] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5692), 1, - sym_identifier, + ACTIONS(3440), 1, + anon_sym_LBRACE, + STATE(1429), 1, + sym_field_initializer_list, STATE(3146), 2, sym_line_comment, sym_block_comment, - [90524] = 5, + [89771] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6635), 1, - sym_identifier, + ACTIONS(6590), 1, + anon_sym_RPAREN, + ACTIONS(6592), 1, + anon_sym_COLON_COLON, STATE(3147), 2, sym_line_comment, sym_block_comment, - [90541] = 4, + [89788] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6637), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(5253), 1, + anon_sym_LBRACE, + STATE(1239), 1, + sym_enum_variant_list, STATE(3148), 2, sym_line_comment, sym_block_comment, - [90556] = 5, + [89805] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, - anon_sym_COLON_COLON, - ACTIONS(6232), 1, - anon_sym_for, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(674), 1, + sym_declaration_list, STATE(3149), 2, sym_line_comment, sym_block_comment, - [90573] = 5, + [89822] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3861), 1, - anon_sym_COLON, - ACTIONS(5328), 1, - anon_sym_PLUS, + ACTIONS(6544), 1, + sym_identifier, + ACTIONS(6550), 1, + sym_super, STATE(3150), 2, sym_line_comment, sym_block_comment, - [90590] = 5, + [89839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3869), 1, - anon_sym_COLON, - ACTIONS(5328), 1, - anon_sym_PLUS, + ACTIONS(6550), 1, + sym_super, + ACTIONS(6594), 1, + sym_identifier, STATE(3151), 2, sym_line_comment, sym_block_comment, - [90607] = 4, + [89856] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6063), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6510), 1, + sym_super, + ACTIONS(6596), 1, + sym_identifier, STATE(3152), 2, sym_line_comment, sym_block_comment, - [90622] = 5, + [89873] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_SEMI, - ACTIONS(6617), 1, - anon_sym_RBRACK, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5819), 1, + sym_identifier, STATE(3153), 2, sym_line_comment, sym_block_comment, - [90639] = 4, + [89890] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6639), 2, + ACTIONS(6580), 1, + sym_super, + ACTIONS(6598), 1, sym_identifier, - sym_metavariable, STATE(3154), 2, sym_line_comment, sym_block_comment, - [90654] = 5, + [89907] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4968), 1, + ACTIONS(4948), 1, anon_sym_LBRACE, - STATE(654), 1, - sym_field_declaration_list, + STATE(675), 1, + sym_declaration_list, STATE(3155), 2, sym_line_comment, sym_block_comment, - [90671] = 5, + [89924] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6641), 1, + ACTIONS(5215), 2, anon_sym_RPAREN, - ACTIONS(6643), 1, - anon_sym_COLON_COLON, + anon_sym_COMMA, STATE(3156), 2, sym_line_comment, sym_block_comment, - [90688] = 5, + [89939] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6645), 1, + ACTIONS(6600), 1, anon_sym_RPAREN, - ACTIONS(6647), 1, + ACTIONS(6602), 1, anon_sym_COLON_COLON, STATE(3157), 2, sym_line_comment, sym_block_comment, - [90705] = 5, + [89956] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6645), 1, - anon_sym_RPAREN, - ACTIONS(6649), 1, - anon_sym_COLON_COLON, + ACTIONS(4930), 1, + anon_sym_LBRACE, + STATE(1242), 1, + sym_field_declaration_list, STATE(3158), 2, sym_line_comment, sym_block_comment, - [90722] = 5, + [89973] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6645), 1, - anon_sym_RPAREN, - ACTIONS(6651), 1, - anon_sym_COLON_COLON, + ACTIONS(4930), 1, + anon_sym_LBRACE, + STATE(1244), 1, + sym_field_declaration_list, STATE(3159), 2, sym_line_comment, sym_block_comment, - [90739] = 4, + [89990] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6137), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4876), 1, + anon_sym_LBRACE, + STATE(1245), 1, + sym_declaration_list, STATE(3160), 2, sym_line_comment, sym_block_comment, - [90754] = 5, + [90007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5806), 1, - sym_identifier, + ACTIONS(5297), 1, + anon_sym_LBRACE, + STATE(752), 1, + sym_enum_variant_list, STATE(3161), 2, sym_line_comment, sym_block_comment, - [90771] = 5, + [90024] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - anon_sym_LBRACE, - STATE(519), 1, - sym_enum_variant_list, + ACTIONS(6604), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3162), 2, sym_line_comment, sym_block_comment, - [90788] = 4, + [90039] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6653), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5123), 1, + sym_super, + ACTIONS(5775), 1, + sym_identifier, STATE(3163), 2, sym_line_comment, sym_block_comment, - [90803] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90056] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(230), 1, - sym_closure_parameters, + ACTIONS(6606), 1, + sym_identifier, + ACTIONS(6608), 1, + sym_super, STATE(3164), 2, sym_line_comment, sym_block_comment, - [90820] = 5, + [90073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - STATE(1974), 1, - sym_parameters, + ACTIONS(6510), 1, + sym_super, + ACTIONS(6610), 1, + sym_identifier, STATE(3165), 2, sym_line_comment, sym_block_comment, - [90837] = 5, + [90090] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LBRACE, - STATE(1270), 1, - sym_field_declaration_list, + ACTIONS(5602), 1, + sym_super, + ACTIONS(5697), 1, + sym_identifier, STATE(3166), 2, sym_line_comment, sym_block_comment, - [90854] = 5, + [90107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1271), 1, - sym_declaration_list, + ACTIONS(6520), 1, + sym_super, + ACTIONS(6612), 1, + sym_identifier, STATE(3167), 2, sym_line_comment, sym_block_comment, - [90871] = 5, + [90124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1272), 1, - sym_declaration_list, + ACTIONS(5644), 1, + sym_super, + ACTIONS(6614), 1, + sym_identifier, STATE(3168), 2, sym_line_comment, sym_block_comment, - [90888] = 4, + [90141] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6655), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(6616), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3169), 2, sym_line_comment, sym_block_comment, - [90903] = 5, + [90156] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6657), 1, + ACTIONS(6550), 2, sym_identifier, - ACTIONS(6659), 1, sym_super, STATE(3170), 2, sym_line_comment, sym_block_comment, - [90920] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90171] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(232), 1, - sym_closure_parameters, + ACTIONS(5618), 2, + sym_identifier, + sym_super, STATE(3171), 2, sym_line_comment, sym_block_comment, - [90937] = 5, + [90186] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6621), 1, - sym_super, - ACTIONS(6661), 1, - sym_identifier, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(2201), 1, + sym_parameters, STATE(3172), 2, sym_line_comment, sym_block_comment, - [90954] = 5, + [90203] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(670), 1, - sym_declaration_list, + ACTIONS(5644), 1, + sym_super, + ACTIONS(6572), 1, + sym_identifier, STATE(3173), 2, sym_line_comment, sym_block_comment, - [90971] = 5, + [90220] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5728), 1, + ACTIONS(6510), 1, sym_super, - ACTIONS(5730), 1, + ACTIONS(6538), 1, sym_identifier, STATE(3174), 2, sym_line_comment, sym_block_comment, - [90988] = 5, + [90237] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, + ACTIONS(5123), 1, sym_super, - ACTIONS(6663), 1, + ACTIONS(5734), 1, sym_identifier, STATE(3175), 2, sym_line_comment, sym_block_comment, - [91005] = 5, + [90254] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LBRACE, - STATE(1278), 1, - sym_field_declaration_list, + ACTIONS(6480), 1, + sym_super, + ACTIONS(6578), 1, + sym_identifier, STATE(3176), 2, sym_line_comment, sym_block_comment, - [91022] = 4, + [90271] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5437), 2, - sym_identifier, + ACTIONS(6550), 1, sym_super, + ACTIONS(6618), 1, + sym_identifier, STATE(3177), 2, sym_line_comment, sym_block_comment, - [91037] = 5, + [90288] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1283), 1, - sym_declaration_list, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5732), 1, + sym_identifier, STATE(3178), 2, sym_line_comment, sym_block_comment, - [91054] = 5, + [90305] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(739), 1, - sym_declaration_list, + ACTIONS(6580), 1, + sym_super, + ACTIONS(6620), 1, + sym_identifier, STATE(3179), 2, sym_line_comment, sym_block_comment, - [91071] = 5, + [90322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - STATE(2237), 1, - sym_parameters, + ACTIONS(6550), 1, + sym_super, + ACTIONS(6622), 1, + sym_identifier, STATE(3180), 2, sym_line_comment, sym_block_comment, - [91088] = 5, + [90339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6643), 1, - anon_sym_COLON_COLON, - ACTIONS(6665), 1, - anon_sym_RPAREN, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5757), 1, + sym_identifier, STATE(3181), 2, sym_line_comment, sym_block_comment, - [91105] = 5, + [90356] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6647), 1, - anon_sym_COLON_COLON, - ACTIONS(6667), 1, - anon_sym_RPAREN, + ACTIONS(6580), 1, + sym_super, + ACTIONS(6624), 1, + sym_identifier, STATE(3182), 2, sym_line_comment, sym_block_comment, - [91122] = 5, + [90373] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6649), 1, - anon_sym_COLON_COLON, - ACTIONS(6667), 1, - anon_sym_RPAREN, + ACTIONS(6550), 1, + sym_super, + ACTIONS(6626), 1, + sym_identifier, STATE(3183), 2, sym_line_comment, sym_block_comment, - [91139] = 5, + [90390] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6651), 1, - anon_sym_COLON_COLON, - ACTIONS(6667), 1, - anon_sym_RPAREN, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5771), 1, + sym_identifier, STATE(3184), 2, sym_line_comment, sym_block_comment, - [91156] = 5, + [90407] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(740), 1, - sym_declaration_list, + ACTIONS(6580), 1, + sym_super, + ACTIONS(6628), 1, + sym_identifier, STATE(3185), 2, sym_line_comment, sym_block_comment, - [91173] = 4, + [90424] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6669), 2, + ACTIONS(5644), 1, + sym_super, + ACTIONS(6626), 1, sym_identifier, - sym_metavariable, STATE(3186), 2, sym_line_comment, sym_block_comment, - [91188] = 4, + [90441] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6659), 2, - sym_identifier, - sym_super, + ACTIONS(4876), 1, + anon_sym_LBRACE, + STATE(1334), 1, + sym_declaration_list, STATE(3187), 2, sym_line_comment, sym_block_comment, - [91203] = 5, + [90458] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - anon_sym_LBRACE, - STATE(1289), 1, - sym_enum_variant_list, + ACTIONS(6480), 1, + sym_super, + ACTIONS(6628), 1, + sym_identifier, STATE(3188), 2, sym_line_comment, sym_block_comment, - [91220] = 5, + [90475] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6659), 1, + ACTIONS(6480), 1, sym_super, - ACTIONS(6671), 1, + ACTIONS(6630), 1, sym_identifier, STATE(3189), 2, sym_line_comment, sym_block_comment, - [91237] = 4, + [90492] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6673), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6600), 1, + anon_sym_RPAREN, + ACTIONS(6632), 1, + anon_sym_COLON_COLON, STATE(3190), 2, sym_line_comment, sym_block_comment, - [91252] = 5, + [90509] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 1, - sym_super, - ACTIONS(6675), 1, - sym_identifier, + ACTIONS(6600), 1, + anon_sym_RPAREN, + ACTIONS(6634), 1, + anon_sym_COLON_COLON, STATE(3191), 2, sym_line_comment, sym_block_comment, - [91269] = 5, + [90526] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5728), 1, - sym_super, - ACTIONS(5736), 1, - sym_identifier, + ACTIONS(5278), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3192), 2, sym_line_comment, sym_block_comment, - [91286] = 5, + [90541] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - sym_super, - ACTIONS(6677), 1, - sym_identifier, + ACTIONS(6636), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3193), 2, sym_line_comment, sym_block_comment, - [91303] = 5, + [90556] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LBRACE, - STATE(1293), 1, - sym_field_declaration_list, + ACTIONS(6556), 1, + sym_identifier, + ACTIONS(6580), 1, + sym_super, STATE(3194), 2, sym_line_comment, sym_block_comment, - [91320] = 5, + [90573] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LBRACE, - STATE(1297), 1, - sym_field_declaration_list, + ACTIONS(6468), 1, + anon_sym_LPAREN, + ACTIONS(6638), 1, + anon_sym_COLON_COLON, STATE(3195), 2, sym_line_comment, sym_block_comment, - [91337] = 5, + [90590] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3697), 1, - anon_sym_COLON, - ACTIONS(5328), 1, - anon_sym_PLUS, + ACTIONS(4003), 1, + anon_sym_LT2, + STATE(1844), 1, + sym_type_arguments, STATE(3196), 2, sym_line_comment, sym_block_comment, - [91354] = 5, + [90607] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3689), 1, - anon_sym_COLON, - ACTIONS(5328), 1, - anon_sym_PLUS, + ACTIONS(6640), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3197), 2, sym_line_comment, sym_block_comment, - [91371] = 5, + [90622] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6679), 1, - anon_sym_SEMI, - ACTIONS(6681), 1, - anon_sym_as, + ACTIONS(6642), 1, + anon_sym_BANG, + ACTIONS(6644), 1, + anon_sym_COLON_COLON, STATE(3198), 2, sym_line_comment, sym_block_comment, - [91388] = 5, + [90639] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5696), 1, - sym_super, - ACTIONS(6683), 1, + ACTIONS(6646), 1, sym_identifier, + ACTIONS(6648), 1, + sym_mutable_specifier, STATE(3199), 2, sym_line_comment, sym_block_comment, - [91405] = 5, + [90656] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6685), 1, - anon_sym_LBRACK, - ACTIONS(6687), 1, - anon_sym_BANG, + ACTIONS(6580), 2, + sym_identifier, + sym_super, STATE(3200), 2, sym_line_comment, sym_block_comment, - [91422] = 5, + [90671] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4754), 1, - anon_sym_COLON_COLON, - ACTIONS(4844), 1, - anon_sym_BANG, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(6650), 1, + anon_sym_in, STATE(3201), 2, sym_line_comment, sym_block_comment, - [91439] = 5, + [90688] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, + ACTIONS(6652), 1, anon_sym_SEMI, - ACTIONS(6689), 1, - anon_sym_RBRACE, + ACTIONS(6654), 1, + anon_sym_as, STATE(3202), 2, sym_line_comment, sym_block_comment, - [91456] = 5, + [90705] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - sym_identifier, - ACTIONS(6589), 1, - sym_super, + ACTIONS(4930), 1, + anon_sym_LBRACE, + STATE(1169), 1, + sym_field_declaration_list, STATE(3203), 2, sym_line_comment, sym_block_comment, - [91473] = 5, + [90722] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5437), 1, + ACTIONS(6510), 1, sym_super, - ACTIONS(6691), 1, + ACTIONS(6656), 1, sym_identifier, STATE(3204), 2, sym_line_comment, sym_block_comment, - [91490] = 5, + [90739] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6555), 1, - sym_super, - ACTIONS(6693), 1, - sym_identifier, + ACTIONS(4876), 1, + anon_sym_LBRACE, + STATE(1170), 1, + sym_declaration_list, STATE(3205), 2, sym_line_comment, sym_block_comment, - [91507] = 5, + [90756] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 1, - sym_super, - ACTIONS(6695), 1, - sym_identifier, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(1963), 1, + sym_parameters, STATE(3206), 2, sym_line_comment, sym_block_comment, - [91524] = 5, + [90773] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, - sym_identifier, - ACTIONS(5680), 1, - sym_super, + ACTIONS(6516), 1, + anon_sym_LT, + STATE(1063), 1, + sym_type_parameters, STATE(3207), 2, sym_line_comment, sym_block_comment, - [91541] = 5, + [90790] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6611), 1, - sym_super, - ACTIONS(6697), 1, + ACTIONS(5123), 2, sym_identifier, + sym_super, STATE(3208), 2, sym_line_comment, sym_block_comment, - [91558] = 5, + [90805] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, - sym_identifier, - ACTIONS(6659), 1, - sym_super, + ACTIONS(4876), 1, + anon_sym_LBRACE, + STATE(1171), 1, + sym_declaration_list, STATE(3209), 2, sym_line_comment, sym_block_comment, - [91575] = 5, + [90822] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5696), 1, - sym_super, - ACTIONS(6657), 1, - sym_identifier, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(2224), 1, + sym_parameters, STATE(3210), 2, sym_line_comment, sym_block_comment, - [91592] = 5, + [90839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 1, + ACTIONS(6480), 1, sym_super, - ACTIONS(6619), 1, + ACTIONS(6658), 1, sym_identifier, STATE(3211), 2, sym_line_comment, sym_block_comment, - [91609] = 5, + [90856] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5730), 1, - sym_identifier, + ACTIONS(4885), 1, + anon_sym_LBRACE, + STATE(755), 1, + sym_field_declaration_list, STATE(3212), 2, sym_line_comment, sym_block_comment, - [91626] = 5, + [90873] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6663), 1, - sym_identifier, + ACTIONS(6660), 2, + sym_float_literal, + sym_integer_literal, STATE(3213), 2, sym_line_comment, sym_block_comment, - [91643] = 5, + [90888] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6659), 1, - sym_super, - ACTIONS(6699), 1, - sym_identifier, + ACTIONS(6337), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(3214), 2, sym_line_comment, sym_block_comment, - [91660] = 5, + [90903] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5726), 1, - sym_identifier, - ACTIONS(5728), 1, - sym_super, + ACTIONS(6662), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3215), 2, sym_line_comment, sym_block_comment, - [91677] = 5, + [90918] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - sym_super, - ACTIONS(6701), 1, - sym_identifier, + ACTIONS(4885), 1, + anon_sym_LBRACE, + STATE(615), 1, + sym_field_declaration_list, STATE(3216), 2, sym_line_comment, sym_block_comment, - [91694] = 5, + [90935] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6659), 1, - sym_super, - ACTIONS(6703), 1, - sym_identifier, + ACTIONS(5648), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3217), 2, sym_line_comment, sym_block_comment, - [91711] = 5, + [90950] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5728), 1, - sym_super, - ACTIONS(5762), 1, - sym_identifier, + ACTIONS(5297), 1, + anon_sym_LBRACE, + STATE(595), 1, + sym_enum_variant_list, STATE(3218), 2, sym_line_comment, sym_block_comment, - [91728] = 5, + [90967] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - sym_super, - ACTIONS(6705), 1, - sym_identifier, + ACTIONS(5155), 1, + anon_sym_RPAREN, + ACTIONS(6472), 1, + anon_sym_SEMI, STATE(3219), 2, sym_line_comment, sym_block_comment, - [91745] = 5, + [90984] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6659), 1, + ACTIONS(6510), 1, sym_super, - ACTIONS(6707), 1, + ACTIONS(6514), 1, sym_identifier, STATE(3220), 2, sym_line_comment, sym_block_comment, - [91762] = 5, + [91001] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5728), 1, - sym_super, - ACTIONS(5774), 1, - sym_identifier, + ACTIONS(5155), 1, + anon_sym_RBRACK, + ACTIONS(6472), 1, + anon_sym_SEMI, STATE(3221), 2, sym_line_comment, sym_block_comment, - [91779] = 5, + [91018] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - sym_super, - ACTIONS(6709), 1, - sym_identifier, + ACTIONS(5157), 1, + anon_sym_RPAREN, + ACTIONS(6472), 1, + anon_sym_SEMI, STATE(3222), 2, sym_line_comment, sym_block_comment, - [91796] = 5, + [91035] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5696), 1, - sym_super, - ACTIONS(6707), 1, - sym_identifier, + ACTIONS(5157), 1, + anon_sym_RBRACK, + ACTIONS(6472), 1, + anon_sym_SEMI, STATE(3223), 2, sym_line_comment, sym_block_comment, - [91813] = 5, + [91052] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5774), 1, - sym_identifier, + ACTIONS(6592), 1, + anon_sym_COLON_COLON, + ACTIONS(6664), 1, + anon_sym_RPAREN, STATE(3224), 2, sym_line_comment, sym_block_comment, - [91830] = 5, + [91069] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6709), 1, - sym_identifier, + ACTIONS(6350), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3225), 2, sym_line_comment, sym_block_comment, - [91847] = 5, + [91084] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_SEMI, - ACTIONS(6711), 1, - anon_sym_RBRACE, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(2199), 1, + sym_parameters, STATE(3226), 2, sym_line_comment, sym_block_comment, - [91864] = 5, + [91101] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_SEMI, - ACTIONS(6713), 1, - anon_sym_RBRACE, + ACTIONS(4930), 1, + anon_sym_LBRACE, + STATE(1177), 1, + sym_field_declaration_list, STATE(3227), 2, sym_line_comment, sym_block_comment, - [91881] = 4, + [91118] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5921), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5618), 1, + sym_super, + ACTIONS(5738), 1, + sym_identifier, STATE(3228), 2, sym_line_comment, sym_block_comment, - [91896] = 5, + [91135] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4968), 1, - anon_sym_LBRACE, - STATE(637), 1, - sym_field_declaration_list, + ACTIONS(6666), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3229), 2, sym_line_comment, sym_block_comment, - [91913] = 5, + [91150] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5267), 1, - anon_sym_RPAREN, - ACTIONS(6613), 1, - anon_sym_SEMI, + ACTIONS(6512), 1, + sym_identifier, + ACTIONS(6580), 1, + sym_super, STATE(3230), 2, sym_line_comment, sym_block_comment, - [91930] = 5, + [91167] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, - anon_sym_LT2, - STATE(1377), 1, - sym_type_arguments, + ACTIONS(6082), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3231), 2, sym_line_comment, sym_block_comment, - [91947] = 4, + [91182] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6351), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(6668), 1, + anon_sym_EQ, STATE(3232), 2, sym_line_comment, sym_block_comment, - [91962] = 5, + [91199] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5267), 1, - anon_sym_RBRACK, - ACTIONS(6613), 1, - anon_sym_SEMI, + ACTIONS(4876), 1, + anon_sym_LBRACE, + STATE(1182), 1, + sym_declaration_list, STATE(3233), 2, sym_line_comment, sym_block_comment, - [91979] = 5, + [91216] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5696), 1, - sym_super, - ACTIONS(6715), 1, - sym_identifier, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(2193), 1, + sym_parameters, STATE(3234), 2, sym_line_comment, sym_block_comment, - [91996] = 5, + [91233] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6629), 1, - anon_sym_LPAREN, - ACTIONS(6717), 1, - anon_sym_COLON_COLON, + ACTIONS(6472), 1, + anon_sym_SEMI, + ACTIONS(6670), 1, + anon_sym_RPAREN, STATE(3235), 2, sym_line_comment, sym_block_comment, - [92013] = 4, + [91250] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6719), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6472), 1, + anon_sym_SEMI, + ACTIONS(6670), 1, + anon_sym_RBRACK, STATE(3236), 2, sym_line_comment, sym_block_comment, - [92028] = 5, + [91267] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(531), 1, - sym_declaration_list, + ACTIONS(6472), 1, + anon_sym_SEMI, + ACTIONS(6672), 1, + anon_sym_RPAREN, STATE(3237), 2, sym_line_comment, sym_block_comment, - [92045] = 4, + [91284] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6721), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6472), 1, + anon_sym_SEMI, + ACTIONS(6672), 1, + anon_sym_RBRACK, STATE(3238), 2, sym_line_comment, sym_block_comment, - [92060] = 5, + [91301] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6723), 1, - anon_sym_BANG, - ACTIONS(6725), 1, - anon_sym_COLON_COLON, + ACTIONS(5399), 1, + sym_super, + ACTIONS(6656), 1, + sym_identifier, STATE(3239), 2, sym_line_comment, sym_block_comment, - [92077] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91318] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(218), 1, - sym_closure_parameters, + ACTIONS(3009), 1, + anon_sym_SQUOTE, + STATE(3058), 1, + sym_lifetime, STATE(3240), 2, sym_line_comment, sym_block_comment, - [92094] = 5, + [91335] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(638), 1, - sym_declaration_list, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(6386), 1, + anon_sym_for, STATE(3241), 2, sym_line_comment, sym_block_comment, - [92111] = 5, + [91352] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(639), 1, - sym_declaration_list, + ACTIONS(5759), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3242), 2, sym_line_comment, sym_block_comment, - [92128] = 5, + [91367] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4061), 1, - anon_sym_LBRACE, - STATE(1780), 1, - sym_field_initializer_list, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(4979), 1, + anon_sym_for, STATE(3243), 2, sym_line_comment, sym_block_comment, - [92145] = 5, + [91384] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5273), 1, + ACTIONS(6398), 2, anon_sym_RBRACE, - ACTIONS(6613), 1, - anon_sym_SEMI, + anon_sym_COMMA, STATE(3244), 2, sym_line_comment, sym_block_comment, - [92162] = 4, + [91399] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5404), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3711), 1, + anon_sym_COLON, + ACTIONS(5257), 1, + anon_sym_PLUS, STATE(3245), 2, sym_line_comment, sym_block_comment, - [92177] = 5, + [91416] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6603), 1, - anon_sym_LT, - STATE(1054), 1, - sym_type_parameters, + ACTIONS(4876), 1, + anon_sym_LBRACE, + STATE(1286), 1, + sym_declaration_list, STATE(3246), 2, sym_line_comment, sym_block_comment, - [92194] = 5, + [91433] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5277), 1, - anon_sym_RPAREN, - ACTIONS(6613), 1, - anon_sym_SEMI, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(2241), 1, + sym_parameters, STATE(3247), 2, sym_line_comment, sym_block_comment, - [92211] = 4, + [91450] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6727), 2, - anon_sym_RPAREN, + ACTIONS(6421), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(3248), 2, sym_line_comment, sym_block_comment, - [92226] = 5, + [91465] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - STATE(2219), 1, - sym_parameters, + ACTIONS(6674), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3249), 2, sym_line_comment, sym_block_comment, - [92243] = 5, + [91480] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5437), 1, - sym_super, - ACTIONS(6729), 1, - sym_identifier, + ACTIONS(6602), 1, + anon_sym_COLON_COLON, + ACTIONS(6676), 1, + anon_sym_RPAREN, STATE(3250), 2, sym_line_comment, sym_block_comment, - [92260] = 4, + [91497] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6731), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(4481), 1, + anon_sym_BANG, + ACTIONS(6678), 1, + anon_sym_COLON_COLON, STATE(3251), 2, sym_line_comment, sym_block_comment, - [92275] = 4, + [91514] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6733), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(4876), 1, + anon_sym_LBRACE, + STATE(1294), 1, + sym_declaration_list, STATE(3252), 2, sym_line_comment, sym_block_comment, - [92290] = 5, + [91531] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6735), 1, - anon_sym_EQ, + ACTIONS(6516), 1, + anon_sym_LT, + STATE(881), 1, + sym_type_parameters, STATE(3253), 2, sym_line_comment, sym_block_comment, - [92307] = 4, + [91548] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6737), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(4876), 1, + anon_sym_LBRACE, + STATE(1295), 1, + sym_declaration_list, STATE(3254), 2, sym_line_comment, sym_block_comment, - [92322] = 5, + [91565] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 1, - sym_identifier, - ACTIONS(6659), 1, - sym_super, + ACTIONS(3291), 1, + anon_sym_LPAREN, + STATE(1105), 1, + sym_parameters, STATE(3255), 2, sym_line_comment, sym_block_comment, - [92339] = 4, + [91582] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6384), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, + ACTIONS(4808), 1, + anon_sym_BANG, STATE(3256), 2, sym_line_comment, sym_block_comment, - [92354] = 4, + [91599] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6270), 2, - anon_sym_GT, + ACTIONS(6680), 2, + anon_sym_RBRACE, anon_sym_COMMA, STATE(3257), 2, sym_line_comment, sym_block_comment, - [92369] = 4, + [91614] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6739), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6682), 1, + anon_sym_LPAREN, + ACTIONS(6684), 1, + anon_sym_COLON_COLON, STATE(3258), 2, sym_line_comment, sym_block_comment, - [92384] = 5, + [91631] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5277), 1, - anon_sym_RBRACK, - ACTIONS(6613), 1, - anon_sym_SEMI, + ACTIONS(6632), 1, + anon_sym_COLON_COLON, + ACTIONS(6676), 1, + anon_sym_RPAREN, STATE(3259), 2, sym_line_comment, sym_block_comment, - [92401] = 5, + [91648] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5437), 1, - sym_super, - ACTIONS(6741), 1, + ACTIONS(6608), 2, sym_identifier, + sym_super, STATE(3260), 2, sym_line_comment, sym_block_comment, - [92418] = 5, + [91663] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4968), 1, - anon_sym_LBRACE, - STATE(645), 1, - sym_field_declaration_list, + ACTIONS(6686), 1, + anon_sym_BANG, + ACTIONS(6688), 1, + anon_sym_COLON_COLON, STATE(3261), 2, sym_line_comment, sym_block_comment, - [92435] = 5, + [91680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5253), 1, - anon_sym_RPAREN, - ACTIONS(6613), 1, - anon_sym_SEMI, + ACTIONS(6516), 1, + anon_sym_LT, + STATE(1053), 1, + sym_type_parameters, STATE(3262), 2, sym_line_comment, sym_block_comment, - [92452] = 5, + [91697] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5253), 1, - anon_sym_RBRACK, - ACTIONS(6613), 1, - anon_sym_SEMI, + ACTIONS(6634), 1, + anon_sym_COLON_COLON, + ACTIONS(6676), 1, + anon_sym_RPAREN, STATE(3263), 2, sym_line_comment, sym_block_comment, - [92469] = 5, + [91714] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5255), 1, - anon_sym_RPAREN, - ACTIONS(6613), 1, + ACTIONS(6472), 1, anon_sym_SEMI, + ACTIONS(6690), 1, + anon_sym_RPAREN, STATE(3264), 2, sym_line_comment, sym_block_comment, - [92486] = 5, + [91731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5255), 1, - anon_sym_RBRACK, - ACTIONS(6613), 1, - anon_sym_SEMI, + ACTIONS(5253), 1, + anon_sym_LBRACE, + STATE(1187), 1, + sym_enum_variant_list, STATE(3265), 2, sym_line_comment, sym_block_comment, - [92503] = 5, + [91748] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_LPAREN, - STATE(1150), 1, - sym_parameters, + ACTIONS(6472), 1, + anon_sym_SEMI, + ACTIONS(6690), 1, + anon_sym_RBRACK, STATE(3266), 2, sym_line_comment, sym_block_comment, - [92520] = 5, + [91765] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, - anon_sym_RBRACE, - ACTIONS(6613), 1, - anon_sym_SEMI, + ACTIONS(5393), 1, + anon_sym_COLON, + ACTIONS(5395), 1, + anon_sym_PIPE, STATE(3267), 2, sym_line_comment, sym_block_comment, - [92537] = 5, + [91782] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1342), 1, - sym_declaration_list, + ACTIONS(6472), 1, + anon_sym_SEMI, + ACTIONS(6692), 1, + anon_sym_RBRACE, STATE(3268), 2, sym_line_comment, sym_block_comment, - [92554] = 5, + [91799] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4664), 1, - anon_sym_BANG, - ACTIONS(4760), 1, - anon_sym_COLON_COLON, + ACTIONS(4983), 1, + anon_sym_COLON, + STATE(2675), 1, + sym_trait_bounds, STATE(3269), 2, sym_line_comment, sym_block_comment, - [92571] = 5, + [91816] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1348), 1, - sym_declaration_list, + ACTIONS(3805), 1, + anon_sym_COLON, + ACTIONS(5257), 1, + anon_sym_PLUS, STATE(3270), 2, sym_line_comment, sym_block_comment, - [92588] = 5, + [91833] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, - anon_sym_COLON_COLON, - ACTIONS(6349), 1, - anon_sym_for, + ACTIONS(6202), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3271), 2, sym_line_comment, sym_block_comment, - [92605] = 5, + [91848] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(1349), 1, - sym_declaration_list, + STATE(1109), 1, + sym_enum_variant_list, STATE(3272), 2, sym_line_comment, sym_block_comment, - [92622] = 5, + [91865] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4505), 1, - anon_sym_BANG, - ACTIONS(6743), 1, - anon_sym_COLON_COLON, + ACTIONS(4930), 1, + anon_sym_LBRACE, + STATE(1190), 1, + sym_field_declaration_list, STATE(3273), 2, sym_line_comment, sym_block_comment, - [92639] = 5, + [91882] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - STATE(1986), 1, - sym_parameters, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(736), 1, + sym_declaration_list, STATE(3274), 2, sym_line_comment, sym_block_comment, - [92656] = 5, + [91899] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5312), 1, - anon_sym_LBRACE, - STATE(1357), 1, - sym_enum_variant_list, + ACTIONS(6468), 1, + anon_sym_LPAREN, + ACTIONS(6694), 1, + anon_sym_COLON_COLON, STATE(3275), 2, sym_line_comment, sym_block_comment, - [92673] = 5, + [91916] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - STATE(2257), 1, - sym_parameters, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(6696), 1, + anon_sym_EQ, STATE(3276), 2, sym_line_comment, sym_block_comment, - [92690] = 5, + [91933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LBRACE, - STATE(1360), 1, - sym_field_declaration_list, + ACTIONS(6698), 1, + anon_sym_LBRACK, + ACTIONS(6700), 1, + anon_sym_BANG, STATE(3277), 2, sym_line_comment, sym_block_comment, - [92707] = 5, + [91950] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_SEMI, - ACTIONS(6745), 1, - anon_sym_RPAREN, + ACTIONS(6702), 2, + sym_identifier, + sym_metavariable, STATE(3278), 2, sym_line_comment, sym_block_comment, - [92724] = 5, + [91965] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_SEMI, - ACTIONS(6745), 1, - anon_sym_RBRACK, + ACTIONS(5001), 1, + anon_sym_PLUS, + ACTIONS(6704), 1, + anon_sym_GT, STATE(3279), 2, sym_line_comment, sym_block_comment, - [92741] = 5, + [91982] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_SEMI, - ACTIONS(6747), 1, - anon_sym_RPAREN, + ACTIONS(3695), 1, + anon_sym_COLON, + ACTIONS(5257), 1, + anon_sym_PLUS, STATE(3280), 2, sym_line_comment, sym_block_comment, - [92758] = 5, + [91999] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_SEMI, - ACTIONS(6747), 1, - anon_sym_RBRACK, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(6706), 1, + anon_sym_in, STATE(3281), 2, sym_line_comment, sym_block_comment, - [92775] = 5, + [92016] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4289), 1, - anon_sym_EQ_GT, - ACTIONS(6749), 1, - anon_sym_AMP_AMP, + ACTIONS(3699), 1, + anon_sym_COLON, + ACTIONS(5257), 1, + anon_sym_PLUS, STATE(3282), 2, sym_line_comment, sym_block_comment, - [92792] = 5, + [92033] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(650), 1, - sym_declaration_list, + ACTIONS(6708), 2, + sym_identifier, + sym_metavariable, STATE(3283), 2, sym_line_comment, sym_block_comment, - [92809] = 5, + [92048] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LBRACE, - STATE(1362), 1, - sym_field_declaration_list, + ACTIONS(4479), 1, + anon_sym_LPAREN, + STATE(1961), 1, + sym_parameters, STATE(3284), 2, sym_line_comment, sym_block_comment, - [92826] = 5, + [92065] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1363), 1, - sym_declaration_list, + ACTIONS(6472), 1, + anon_sym_SEMI, + ACTIONS(6710), 1, + anon_sym_RPAREN, STATE(3285), 2, sym_line_comment, sym_block_comment, - [92843] = 5, + [92082] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6164), 1, - anon_sym_EQ_GT, - ACTIONS(6749), 1, - anon_sym_AMP_AMP, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(4958), 1, + anon_sym_for, STATE(3286), 2, sym_line_comment, sym_block_comment, - [92860] = 4, + [92099] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5820), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4930), 1, + anon_sym_LBRACE, + STATE(1193), 1, + sym_field_declaration_list, STATE(3287), 2, sym_line_comment, sym_block_comment, - [92875] = 5, + [92116] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_SEMI, - ACTIONS(6751), 1, - anon_sym_RPAREN, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(6454), 1, + anon_sym_for, STATE(3288), 2, sym_line_comment, sym_block_comment, - [92892] = 5, + [92133] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4968), 1, - anon_sym_LBRACE, - STATE(682), 1, - sym_field_declaration_list, + ACTIONS(6472), 1, + anon_sym_SEMI, + ACTIONS(6710), 1, + anon_sym_RBRACK, STATE(3289), 2, sym_line_comment, sym_block_comment, - [92909] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92150] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(237), 1, - sym_closure_parameters, + ACTIONS(3299), 1, + anon_sym_LT2, + STATE(1492), 1, + sym_type_arguments, STATE(3290), 2, sym_line_comment, sym_block_comment, - [92926] = 5, + [92167] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - STATE(2233), 1, - sym_parameters, + ACTIONS(6472), 1, + anon_sym_SEMI, + ACTIONS(6712), 1, + anon_sym_RBRACE, STATE(3291), 2, sym_line_comment, sym_block_comment, - [92943] = 4, + [92184] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5696), 2, + ACTIONS(6714), 2, sym_identifier, - sym_super, + sym_metavariable, STATE(3292), 2, sym_line_comment, sym_block_comment, - [92958] = 5, + [92199] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4934), 1, - anon_sym_LT, - STATE(957), 1, - sym_type_parameters, + ACTIONS(4885), 1, + anon_sym_LBRACE, + STATE(681), 1, + sym_field_declaration_list, STATE(3293), 2, sym_line_comment, sym_block_comment, - [92975] = 5, + [92216] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(539), 1, - sym_declaration_list, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(6458), 1, + anon_sym_for, STATE(3294), 2, sym_line_comment, sym_block_comment, - [92992] = 5, + [92233] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5692), 1, - sym_identifier, - ACTIONS(5728), 1, - sym_super, + ACTIONS(6716), 1, + anon_sym_SEMI, + ACTIONS(6718), 1, + anon_sym_as, STATE(3295), 2, sym_line_comment, sym_block_comment, - [93009] = 5, + [92250] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, - anon_sym_LBRACE, - STATE(540), 1, - sym_declaration_list, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(6462), 1, + anon_sym_for, STATE(3296), 2, sym_line_comment, sym_block_comment, - [93026] = 5, + [92267] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4664), 1, - anon_sym_BANG, - ACTIONS(4762), 1, - anon_sym_COLON_COLON, + ACTIONS(6510), 2, + sym_identifier, + sym_super, STATE(3297), 2, sym_line_comment, sym_block_comment, - [93043] = 4, + [92282] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6753), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5297), 1, + anon_sym_LBRACE, + STATE(694), 1, + sym_enum_variant_list, STATE(3298), 2, sym_line_comment, sym_block_comment, - [93058] = 5, + [92299] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5045), 1, - anon_sym_COLON, - STATE(2666), 1, - sym_trait_bounds, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(6720), 1, + anon_sym_in, STATE(3299), 2, sym_line_comment, sym_block_comment, - [93075] = 4, + [92316] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6328), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4930), 1, + anon_sym_LBRACE, + STATE(1119), 1, + sym_field_declaration_list, STATE(3300), 2, sym_line_comment, sym_block_comment, - [93090] = 5, + [92333] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LPAREN, - STATE(2204), 1, - sym_parameters, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(6466), 1, + anon_sym_for, STATE(3301), 2, sym_line_comment, sym_block_comment, - [93107] = 5, + [92350] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_SEMI, - ACTIONS(6751), 1, - anon_sym_RBRACK, + ACTIONS(6722), 1, + anon_sym_LBRACK, + ACTIONS(6724), 1, + anon_sym_BANG, STATE(3302), 2, sym_line_comment, sym_block_comment, - [93124] = 5, + [92367] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - sym_super, - ACTIONS(6635), 1, - sym_identifier, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(6726), 1, + anon_sym_in, STATE(3303), 2, sym_line_comment, sym_block_comment, - [93141] = 5, + [92384] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5215), 1, - sym_super, - ACTIONS(5666), 1, - sym_identifier, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(6728), 1, + anon_sym_in, STATE(3304), 2, sym_line_comment, sym_block_comment, - [93158] = 5, + [92401] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6755), 1, - anon_sym_LPAREN, - ACTIONS(6757), 1, - anon_sym_COLON_COLON, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(6730), 1, + anon_sym_in, STATE(3305), 2, sym_line_comment, sym_block_comment, - [93175] = 5, + [92418] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - anon_sym_LBRACE, - STATE(658), 1, - sym_enum_variant_list, + ACTIONS(5395), 1, + anon_sym_PIPE, + ACTIONS(6732), 1, + anon_sym_in, STATE(3306), 2, sym_line_comment, sym_block_comment, - [93192] = 5, + [92435] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6759), 1, - anon_sym_BANG, - ACTIONS(6761), 1, - anon_sym_COLON_COLON, + ACTIONS(6162), 1, + sym_identifier, + ACTIONS(6166), 1, + sym_mutable_specifier, STATE(3307), 2, sym_line_comment, sym_block_comment, - [93209] = 4, + [92452] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5728), 2, + ACTIONS(6734), 1, sym_identifier, - sym_super, + ACTIONS(6736), 1, + sym_mutable_specifier, STATE(3308), 2, sym_line_comment, sym_block_comment, - [93224] = 5, + [92469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6763), 1, - sym_identifier, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(742), 1, + sym_declaration_list, STATE(3309), 2, sym_line_comment, sym_block_comment, - [93241] = 5, + [92486] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACE, - STATE(580), 1, + STATE(1122), 1, sym_declaration_list, STATE(3310), 2, sym_line_comment, sym_block_comment, - [93258] = 5, + [92503] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6603), 1, - anon_sym_LT, - STATE(1064), 1, - sym_type_parameters, + ACTIONS(4948), 1, + anon_sym_LBRACE, + STATE(743), 1, + sym_declaration_list, STATE(3311), 2, sym_line_comment, sym_block_comment, - [93275] = 4, + [92520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5215), 2, - sym_identifier, - sym_super, + ACTIONS(3707), 1, + anon_sym_COLON, + ACTIONS(5257), 1, + anon_sym_PLUS, STATE(3312), 2, sym_line_comment, sym_block_comment, - [93290] = 5, + [92537] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6765), 1, - sym_identifier, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, + ACTIONS(5885), 1, + anon_sym_for, STATE(3313), 2, sym_line_comment, sym_block_comment, - [93307] = 5, + [92554] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4019), 1, - anon_sym_LT2, - STATE(1721), 1, - sym_type_arguments, + ACTIONS(5123), 1, + sym_super, + ACTIONS(5771), 1, + sym_identifier, STATE(3314), 2, sym_line_comment, sym_block_comment, - [93324] = 5, + [92571] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5443), 1, - anon_sym_COLON, - ACTIONS(5445), 1, - anon_sym_PIPE, + ACTIONS(925), 1, + anon_sym_RBRACK, STATE(3315), 2, sym_line_comment, sym_block_comment, - [93341] = 5, + [92585] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4968), 1, - anon_sym_LBRACE, - STATE(661), 1, - sym_field_declaration_list, + ACTIONS(6738), 1, + sym_identifier, STATE(3316), 2, sym_line_comment, sym_block_comment, - [93358] = 5, + [92599] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - anon_sym_LBRACE, - STATE(749), 1, - sym_enum_variant_list, + ACTIONS(6740), 1, + sym_identifier, STATE(3317), 2, sym_line_comment, sym_block_comment, - [93375] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92613] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(223), 1, - sym_closure_parameters, + ACTIONS(6742), 1, + sym_identifier, STATE(3318), 2, sym_line_comment, sym_block_comment, - [93392] = 5, + [92627] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6629), 1, - anon_sym_LPAREN, - ACTIONS(6767), 1, - anon_sym_COLON_COLON, + ACTIONS(6744), 1, + sym_identifier, STATE(3319), 2, sym_line_comment, sym_block_comment, - [93409] = 5, + [92641] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1104), 1, - sym_declaration_list, + ACTIONS(6746), 1, + sym_identifier, STATE(3320), 2, sym_line_comment, sym_block_comment, - [93426] = 5, + [92655] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4968), 1, - anon_sym_LBRACE, - STATE(664), 1, - sym_field_declaration_list, + ACTIONS(6748), 1, + sym_identifier, STATE(3321), 2, sym_line_comment, sym_block_comment, - [93443] = 5, + [92669] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6629), 1, - anon_sym_LPAREN, - ACTIONS(6769), 1, - anon_sym_COLON_COLON, + ACTIONS(3111), 1, + anon_sym_PLUS, STATE(3322), 2, sym_line_comment, sym_block_comment, - [93460] = 5, + [92683] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, - anon_sym_LBRACE, - STATE(1471), 1, - sym_field_initializer_list, + ACTIONS(6750), 1, + anon_sym_COLON, STATE(3323), 2, sym_line_comment, sym_block_comment, - [93477] = 5, + [92697] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6771), 1, - anon_sym_LBRACK, - ACTIONS(6773), 1, - anon_sym_BANG, + ACTIONS(6752), 1, + anon_sym_RBRACK, STATE(3324), 2, sym_line_comment, sym_block_comment, - [93494] = 4, + [92711] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6775), 2, + ACTIONS(6754), 1, sym_identifier, - sym_metavariable, STATE(3325), 2, sym_line_comment, sym_block_comment, - [93509] = 5, + [92725] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6777), 1, - anon_sym_in, + ACTIONS(4099), 1, + anon_sym_COLON_COLON, STATE(3326), 2, sym_line_comment, sym_block_comment, - [93526] = 5, + [92739] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1112), 1, - sym_declaration_list, + ACTIONS(6756), 1, + anon_sym_COLON, STATE(3327), 2, sym_line_comment, sym_block_comment, - [93543] = 5, + [92753] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1113), 1, - sym_declaration_list, + ACTIONS(4614), 1, + anon_sym_COLON_COLON, STATE(3328), 2, sym_line_comment, sym_block_comment, - [93560] = 4, + [92767] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6779), 2, - sym_identifier, - sym_metavariable, + ACTIONS(5197), 1, + anon_sym_SEMI, STATE(3329), 2, sym_line_comment, sym_block_comment, - [93575] = 5, + [92781] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 1, - sym_super, - ACTIONS(6741), 1, + ACTIONS(6758), 1, sym_identifier, STATE(3330), 2, sym_line_comment, sym_block_comment, - [93592] = 5, + [92795] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, - anon_sym_COLON_COLON, - ACTIONS(5001), 1, - anon_sym_for, + ACTIONS(6760), 1, + anon_sym_EQ_GT, STATE(3331), 2, sym_line_comment, sym_block_comment, - [93609] = 4, + [92809] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6058), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5972), 1, + anon_sym_RBRACE, STATE(3332), 2, sym_line_comment, sym_block_comment, - [93624] = 5, + [92823] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6781), 1, - sym_identifier, - ACTIONS(6783), 1, - sym_mutable_specifier, + ACTIONS(5865), 1, + anon_sym_LBRACE, STATE(3333), 2, sym_line_comment, sym_block_comment, - [93641] = 5, + [92837] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5728), 1, - sym_super, - ACTIONS(5764), 1, - sym_identifier, + ACTIONS(5391), 1, + anon_sym_RPAREN, STATE(3334), 2, sym_line_comment, sym_block_comment, - [93658] = 4, + [92851] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6785), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4580), 1, + anon_sym_COLON_COLON, STATE(3335), 2, sym_line_comment, sym_block_comment, - [93673] = 5, + [92865] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, + ACTIONS(4578), 1, anon_sym_COLON_COLON, - ACTIONS(6501), 1, - anon_sym_for, STATE(3336), 2, sym_line_comment, sym_block_comment, - [93690] = 5, + [92879] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - sym_super, - ACTIONS(6595), 1, + ACTIONS(6762), 1, sym_identifier, STATE(3337), 2, sym_line_comment, sym_block_comment, - [93707] = 5, + [92893] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4968), 1, - anon_sym_LBRACE, - STATE(752), 1, - sym_field_declaration_list, + ACTIONS(6764), 1, + sym_identifier, STATE(3338), 2, sym_line_comment, sym_block_comment, - [93724] = 5, + [92907] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, - anon_sym_COLON_COLON, - ACTIONS(6507), 1, - anon_sym_for, + ACTIONS(6766), 1, + anon_sym_SEMI, STATE(3339), 2, sym_line_comment, sym_block_comment, - [93741] = 5, + [92921] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5360), 1, - anon_sym_LBRACE, - STATE(616), 1, - sym_enum_variant_list, + ACTIONS(6768), 1, + sym__raw_string_literal_end, STATE(3340), 2, sym_line_comment, sym_block_comment, - [93758] = 5, + [92935] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_SEMI, - ACTIONS(6787), 1, - anon_sym_RBRACE, + ACTIONS(6770), 1, + anon_sym_RBRACK, STATE(3341), 2, sym_line_comment, sym_block_comment, - [93775] = 5, + [92949] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6789), 1, - anon_sym_in, + ACTIONS(6772), 1, + anon_sym_fn, STATE(3342), 2, sym_line_comment, sym_block_comment, - [93792] = 5, + [92963] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6791), 1, - anon_sym_in, + ACTIONS(6319), 1, + anon_sym_RBRACE, STATE(3343), 2, sym_line_comment, sym_block_comment, - [93809] = 5, + [92977] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, + ACTIONS(6774), 1, anon_sym_COLON_COLON, - ACTIONS(6521), 1, - anon_sym_for, STATE(3344), 2, sym_line_comment, sym_block_comment, - [93826] = 5, + [92991] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6793), 1, - anon_sym_LBRACK, - ACTIONS(6795), 1, - anon_sym_BANG, + ACTIONS(6776), 1, + anon_sym_SEMI, STATE(3345), 2, sym_line_comment, sym_block_comment, - [93843] = 5, + [93005] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6797), 1, - anon_sym_in, + ACTIONS(6778), 1, + sym_identifier, STATE(3346), 2, sym_line_comment, sym_block_comment, - [93860] = 5, + [93019] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6799), 1, - anon_sym_in, + ACTIONS(4732), 1, + anon_sym_COLON_COLON, STATE(3347), 2, sym_line_comment, sym_block_comment, - [93877] = 5, + [93033] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6801), 1, - anon_sym_in, + ACTIONS(6780), 1, + sym_identifier, STATE(3348), 2, sym_line_comment, sym_block_comment, - [93894] = 5, + [93047] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5445), 1, - anon_sym_PIPE, - ACTIONS(6803), 1, - anon_sym_in, + ACTIONS(6782), 1, + anon_sym_SEMI, STATE(3349), 2, sym_line_comment, sym_block_comment, - [93911] = 5, + [93061] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6525), 1, - sym_identifier, - ACTIONS(6529), 1, - sym_mutable_specifier, + ACTIONS(6784), 1, + anon_sym_SEMI, STATE(3350), 2, sym_line_comment, sym_block_comment, - [93928] = 4, + [93075] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6805), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6786), 1, + anon_sym_SEMI, STATE(3351), 2, sym_line_comment, sym_block_comment, - [93943] = 5, + [93089] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6807), 1, - sym_identifier, - ACTIONS(6809), 1, - sym_mutable_specifier, + ACTIONS(6788), 1, + anon_sym_RBRACE, STATE(3352), 2, sym_line_comment, sym_block_comment, - [93960] = 5, + [93103] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6811), 1, - anon_sym_SEMI, - ACTIONS(6813), 1, - anon_sym_as, + ACTIONS(6790), 1, + sym_identifier, STATE(3353), 2, sym_line_comment, sym_block_comment, - [93977] = 5, + [93117] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6603), 1, - anon_sym_LT, - STATE(876), 1, - sym_type_parameters, + ACTIONS(6792), 1, + anon_sym_COLON_COLON, STATE(3354), 2, sym_line_comment, sym_block_comment, - [93994] = 5, + [93131] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5024), 1, - anon_sym_LBRACE, - STATE(1153), 1, - sym_declaration_list, + ACTIONS(6794), 1, + sym_identifier, STATE(3355), 2, sym_line_comment, sym_block_comment, - [94011] = 5, + [93145] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4932), 1, - anon_sym_LBRACE, - STATE(1202), 1, - sym_field_declaration_list, + ACTIONS(6796), 1, + sym_identifier, STATE(3356), 2, sym_line_comment, sym_block_comment, - [94028] = 4, + [93159] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6815), 1, - anon_sym_RBRACK, + ACTIONS(6798), 1, + sym_identifier, STATE(3357), 2, sym_line_comment, sym_block_comment, - [94042] = 4, + [93173] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6817), 1, - sym__line_doc_content, + ACTIONS(6800), 1, + sym_identifier, STATE(3358), 2, sym_line_comment, sym_block_comment, - [94056] = 4, + [93187] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6819), 1, - anon_sym_COLON, + ACTIONS(6802), 1, + sym_identifier, STATE(3359), 2, sym_line_comment, sym_block_comment, - [94070] = 4, + [93201] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6821), 1, - sym_identifier, + ACTIONS(5219), 1, + anon_sym_COLON_COLON, STATE(3360), 2, sym_line_comment, sym_block_comment, - [94084] = 4, + [93215] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6823), 1, - sym_identifier, + ACTIONS(6500), 1, + anon_sym_SEMI, STATE(3361), 2, sym_line_comment, sym_block_comment, - [94098] = 4, + [93229] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6825), 1, - sym_identifier, + ACTIONS(6804), 1, + anon_sym_RBRACE, STATE(3362), 2, sym_line_comment, sym_block_comment, - [94112] = 4, + [93243] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6827), 1, - sym_identifier, + ACTIONS(6806), 1, + anon_sym_STAR_SLASH, STATE(3363), 2, sym_line_comment, sym_block_comment, - [94126] = 4, + [93257] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6829), 1, - sym_identifier, + ACTIONS(6808), 1, + anon_sym_EQ_GT, STATE(3364), 2, sym_line_comment, sym_block_comment, - [94140] = 4, + [93271] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6831), 1, - anon_sym_RPAREN, + ACTIONS(971), 1, + anon_sym_EQ_GT, STATE(3365), 2, sym_line_comment, sym_block_comment, - [94154] = 4, + [93285] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6833), 1, - sym_identifier, + ACTIONS(1035), 1, + anon_sym_EQ_GT, STATE(3366), 2, sym_line_comment, sym_block_comment, - [94168] = 4, + [93299] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, - anon_sym_RPAREN, + ACTIONS(6810), 1, + anon_sym_LPAREN, STATE(3367), 2, sym_line_comment, sym_block_comment, - [94182] = 4, + [93313] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4117), 1, - anon_sym_COLON_COLON, + ACTIONS(6812), 1, + anon_sym_RPAREN, STATE(3368), 2, sym_line_comment, sym_block_comment, - [94196] = 4, + [93327] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6835), 1, - anon_sym_COLON_COLON, + ACTIONS(6814), 1, + anon_sym_SEMI, STATE(3369), 2, sym_line_comment, sym_block_comment, - [94210] = 4, + [93341] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_COLON_COLON, + ACTIONS(6816), 1, + anon_sym_SEMI, STATE(3370), 2, sym_line_comment, sym_block_comment, - [94224] = 4, + [93355] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6837), 1, - anon_sym_SEMI, + ACTIONS(6818), 1, + anon_sym_fn, STATE(3371), 2, sym_line_comment, sym_block_comment, - [94238] = 4, + [93369] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6839), 1, - anon_sym_EQ_GT, + ACTIONS(4938), 1, + anon_sym_COLON_COLON, STATE(3372), 2, sym_line_comment, sym_block_comment, - [94252] = 4, + [93383] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3961), 1, - anon_sym_COLON_COLON, + ACTIONS(6820), 1, + sym__raw_string_literal_end, STATE(3373), 2, sym_line_comment, sym_block_comment, - [94266] = 4, + [93397] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6841), 1, - anon_sym_SEMI, + ACTIONS(6822), 1, + anon_sym_COLON_COLON, STATE(3374), 2, sym_line_comment, sym_block_comment, - [94280] = 4, + [93411] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6843), 1, - anon_sym_SEMI, + ACTIONS(6824), 1, + anon_sym_fn, STATE(3375), 2, sym_line_comment, sym_block_comment, - [94294] = 4, + [93425] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4135), 1, - anon_sym_RPAREN, + ACTIONS(6826), 1, + anon_sym_LT, STATE(3376), 2, sym_line_comment, sym_block_comment, - [94308] = 4, + [93439] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6845), 1, - sym_identifier, + ACTIONS(5781), 1, + anon_sym_LBRACE, STATE(3377), 2, sym_line_comment, sym_block_comment, - [94322] = 4, + [93453] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4593), 1, - anon_sym_COLON_COLON, + ACTIONS(4143), 1, + anon_sym_RPAREN, STATE(3378), 2, sym_line_comment, sym_block_comment, - [94336] = 4, + [93467] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6847), 1, - sym_identifier, + ACTIONS(6828), 1, + anon_sym_SEMI, STATE(3379), 2, sym_line_comment, sym_block_comment, - [94350] = 4, + [93481] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6849), 1, - sym_identifier, + ACTIONS(6830), 1, + anon_sym_SEMI, STATE(3380), 2, sym_line_comment, sym_block_comment, - [94364] = 4, + [93495] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, - anon_sym_GT, + ACTIONS(3149), 1, + anon_sym_PLUS, STATE(3381), 2, sym_line_comment, sym_block_comment, - [94378] = 4, + [93509] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6851), 1, - anon_sym_COLON_COLON, + ACTIONS(6832), 1, + anon_sym_RBRACE, STATE(3382), 2, sym_line_comment, sym_block_comment, - [94392] = 4, + [93523] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6853), 1, - anon_sym_fn, + ACTIONS(6834), 1, + sym_identifier, STATE(3383), 2, sym_line_comment, sym_block_comment, - [94406] = 4, + [93537] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6855), 1, - sym_identifier, + ACTIONS(5807), 1, + anon_sym_RPAREN, STATE(3384), 2, sym_line_comment, sym_block_comment, - [94420] = 4, + [93551] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6857), 1, - anon_sym_COLON_COLON, + ACTIONS(6836), 1, + sym_identifier, STATE(3385), 2, sym_line_comment, sym_block_comment, - [94434] = 4, + [93565] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6859), 1, - anon_sym_SEMI, + ACTIONS(6838), 1, + anon_sym_RBRACK, STATE(3386), 2, sym_line_comment, sym_block_comment, - [94448] = 4, + [93579] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6861), 1, - anon_sym_RBRACK, + ACTIONS(6840), 1, + anon_sym_SEMI, STATE(3387), 2, sym_line_comment, sym_block_comment, - [94462] = 4, + [93593] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6787), 1, - anon_sym_SEMI, + ACTIONS(6842), 1, + sym_identifier, STATE(3388), 2, sym_line_comment, sym_block_comment, - [94476] = 4, + [93607] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6863), 1, - anon_sym_EQ_GT, + ACTIONS(3937), 1, + anon_sym_COLON_COLON, STATE(3389), 2, sym_line_comment, sym_block_comment, - [94490] = 4, + [93621] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6865), 1, - anon_sym_RBRACE, + ACTIONS(6844), 1, + sym_identifier, STATE(3390), 2, sym_line_comment, sym_block_comment, - [94504] = 4, + [93635] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6040), 1, - anon_sym_RBRACE, + ACTIONS(5815), 1, + anon_sym_RBRACK, STATE(3391), 2, sym_line_comment, sym_block_comment, - [94518] = 4, + [93649] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6279), 1, - anon_sym_RBRACE, + ACTIONS(6846), 1, + anon_sym_SEMI, STATE(3392), 2, sym_line_comment, sym_block_comment, - [94532] = 4, + [93663] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6867), 1, + ACTIONS(6848), 1, anon_sym_SEMI, STATE(3393), 2, sym_line_comment, sym_block_comment, - [94546] = 4, + [93677] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6869), 1, + ACTIONS(6850), 1, sym_identifier, STATE(3394), 2, sym_line_comment, sym_block_comment, - [94560] = 4, + [93691] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6871), 1, - anon_sym_COLON_COLON, + ACTIONS(6852), 1, + sym_identifier, STATE(3395), 2, sym_line_comment, sym_block_comment, - [94574] = 4, + [93705] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6873), 1, - sym_identifier, + ACTIONS(6854), 1, + anon_sym_SEMI, STATE(3396), 2, sym_line_comment, sym_block_comment, - [94588] = 4, + [93719] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6875), 1, - sym_identifier, + ACTIONS(6856), 1, + anon_sym_SEMI, STATE(3397), 2, sym_line_comment, sym_block_comment, - [94602] = 4, + [93733] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6877), 1, - sym_identifier, + ACTIONS(6858), 1, + anon_sym_RBRACE, STATE(3398), 2, sym_line_comment, sym_block_comment, - [94616] = 4, + [93747] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6879), 1, - sym_identifier, + ACTIONS(5504), 1, + anon_sym_RPAREN, STATE(3399), 2, sym_line_comment, sym_block_comment, - [94630] = 4, + [93761] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6881), 1, - sym_identifier, + ACTIONS(5743), 1, + anon_sym_RBRACK, STATE(3400), 2, sym_line_comment, sym_block_comment, - [94644] = 4, + [93775] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6883), 1, - anon_sym_RPAREN, + ACTIONS(6860), 1, + sym_identifier, STATE(3401), 2, sym_line_comment, sym_block_comment, - [94658] = 4, + [93789] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6885), 1, - sym__line_doc_content, + ACTIONS(4125), 1, + anon_sym_RPAREN, STATE(3402), 2, sym_line_comment, sym_block_comment, - [94672] = 4, + [93803] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6887), 1, - sym__raw_string_literal_end, + ACTIONS(5811), 1, + anon_sym_RPAREN, STATE(3403), 2, sym_line_comment, sym_block_comment, - [94686] = 4, + [93817] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4038), 1, - sym_identifier, + ACTIONS(6862), 1, + anon_sym_SEMI, STATE(3404), 2, sym_line_comment, sym_block_comment, - [94700] = 4, + [93831] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6889), 1, - sym_identifier, + ACTIONS(6864), 1, + sym__line_doc_content, STATE(3405), 2, sym_line_comment, sym_block_comment, - [94714] = 4, + [93845] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6891), 1, - anon_sym_STAR_SLASH, + ACTIONS(6866), 1, + anon_sym_SEMI, STATE(3406), 2, sym_line_comment, sym_block_comment, - [94728] = 4, + [93859] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6893), 1, + ACTIONS(6868), 1, anon_sym_SEMI, STATE(3407), 2, sym_line_comment, sym_block_comment, - [94742] = 4, + [93873] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6895), 1, - anon_sym_COLON_COLON, + ACTIONS(6722), 1, + anon_sym_LBRACK, STATE(3408), 2, sym_line_comment, sym_block_comment, - [94756] = 4, + [93887] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5455), 1, + ACTIONS(6870), 1, anon_sym_RPAREN, STATE(3409), 2, sym_line_comment, sym_block_comment, - [94770] = 4, + [93901] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(881), 1, - anon_sym_RBRACK, + ACTIONS(6872), 1, + anon_sym_SEMI, STATE(3410), 2, sym_line_comment, sym_block_comment, - [94784] = 4, + [93915] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6897), 1, - sym_identifier, + ACTIONS(6874), 1, + anon_sym_SEMI, STATE(3411), 2, sym_line_comment, sym_block_comment, - [94798] = 4, + [93929] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6899), 1, - anon_sym_SEMI, + ACTIONS(6359), 1, + anon_sym_RBRACE, STATE(3412), 2, sym_line_comment, sym_block_comment, - [94812] = 4, + [93943] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4972), 1, - anon_sym_COLON_COLON, + ACTIONS(6876), 1, + sym__raw_string_literal_end, STATE(3413), 2, sym_line_comment, sym_block_comment, - [94826] = 4, + [93957] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6901), 1, - sym__line_doc_content, + ACTIONS(6878), 1, + anon_sym_EQ_GT, STATE(3414), 2, sym_line_comment, sym_block_comment, - [94840] = 4, + [93971] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6903), 1, - anon_sym_COLON_COLON, + ACTIONS(6880), 1, + anon_sym_SEMI, STATE(3415), 2, sym_line_comment, sym_block_comment, - [94854] = 4, + [93985] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6905), 1, - anon_sym_fn, + ACTIONS(6882), 1, + sym_identifier, STATE(3416), 2, sym_line_comment, sym_block_comment, - [94868] = 4, + [93999] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5281), 1, - anon_sym_SEMI, + ACTIONS(6884), 1, + anon_sym_fn, STATE(3417), 2, sym_line_comment, sym_block_comment, - [94882] = 4, + [94013] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5956), 1, - anon_sym_LBRACE, + ACTIONS(6886), 1, + anon_sym_SEMI, STATE(3418), 2, sym_line_comment, sym_block_comment, - [94896] = 4, + [94027] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6907), 1, - sym_identifier, + ACTIONS(5590), 1, + anon_sym_RPAREN, STATE(3419), 2, sym_line_comment, sym_block_comment, - [94910] = 4, + [94041] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(941), 1, - anon_sym_EQ_GT, + ACTIONS(6888), 1, + sym_identifier, STATE(3420), 2, sym_line_comment, sym_block_comment, - [94924] = 4, + [94055] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6909), 1, - anon_sym_RPAREN, + ACTIONS(6890), 1, + anon_sym_SEMI, STATE(3421), 2, sym_line_comment, sym_block_comment, - [94938] = 4, + [94069] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - anon_sym_RBRACE, + ACTIONS(6892), 1, + anon_sym_STAR_SLASH, STATE(3422), 2, sym_line_comment, sym_block_comment, - [94952] = 4, + [94083] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6911), 1, - anon_sym_RBRACK, + ACTIONS(6894), 1, + anon_sym_COLON_COLON, STATE(3423), 2, sym_line_comment, sym_block_comment, - [94966] = 4, + [94097] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6913), 1, - anon_sym_SEMI, + ACTIONS(6896), 1, + anon_sym_RBRACK, STATE(3424), 2, sym_line_comment, sym_block_comment, - [94980] = 4, + [94111] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6915), 1, - anon_sym_SEMI, + ACTIONS(6898), 1, + sym_identifier, STATE(3425), 2, sym_line_comment, sym_block_comment, - [94994] = 4, + [94125] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6649), 1, - anon_sym_COLON_COLON, + ACTIONS(6900), 1, + anon_sym_SEMI, STATE(3426), 2, sym_line_comment, sym_block_comment, - [95008] = 4, - ACTIONS(3), 1, + [94139] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6917), 1, - aux_sym_line_comment_token2, + ACTIONS(6367), 1, + anon_sym_GT, STATE(3427), 2, sym_line_comment, sym_block_comment, - [95022] = 4, + [94153] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6919), 1, - anon_sym_RBRACE, + ACTIONS(6902), 1, + anon_sym_SEMI, STATE(3428), 2, sym_line_comment, sym_block_comment, - [95036] = 4, + [94167] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6921), 1, + ACTIONS(6904), 1, anon_sym_SEMI, STATE(3429), 2, sym_line_comment, sym_block_comment, - [95050] = 4, + [94181] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - anon_sym_RBRACE, + ACTIONS(6906), 1, + anon_sym_EQ, STATE(3430), 2, sym_line_comment, sym_block_comment, - [95064] = 4, + [94195] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6925), 1, - anon_sym_COLON, + ACTIONS(6908), 1, + anon_sym_RPAREN, STATE(3431), 2, sym_line_comment, sym_block_comment, - [95078] = 4, + [94209] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5181), 1, - anon_sym_SEMI, + ACTIONS(6910), 1, + sym__line_doc_content, STATE(3432), 2, sym_line_comment, sym_block_comment, - [95092] = 4, + [94223] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3113), 1, - anon_sym_PLUS, + ACTIONS(6912), 1, + sym__raw_string_literal_end, STATE(3433), 2, sym_line_comment, sym_block_comment, - [95106] = 4, + [94237] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - anon_sym_EQ_GT, + ACTIONS(6914), 1, + sym_identifier, STATE(3434), 2, sym_line_comment, sym_block_comment, - [95120] = 4, + [94251] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6929), 1, - sym_identifier, + ACTIONS(6916), 1, + anon_sym_SEMI, STATE(3435), 2, sym_line_comment, sym_block_comment, - [95134] = 4, + [94265] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6931), 1, - sym_identifier, + ACTIONS(6918), 1, + anon_sym_SEMI, STATE(3436), 2, sym_line_comment, sym_block_comment, - [95148] = 4, + [94279] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6933), 1, - anon_sym_SEMI, + ACTIONS(3099), 1, + anon_sym_PLUS, STATE(3437), 2, sym_line_comment, sym_block_comment, - [95162] = 4, + [94293] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6935), 1, - sym__raw_string_literal_end, + ACTIONS(6920), 1, + anon_sym_COLON, STATE(3438), 2, sym_line_comment, sym_block_comment, - [95176] = 4, + [94307] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6937), 1, - anon_sym_RBRACE, + ACTIONS(6922), 1, + anon_sym_SEMI, STATE(3439), 2, sym_line_comment, sym_block_comment, - [95190] = 4, + [94321] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6939), 1, + ACTIONS(6924), 1, anon_sym_RBRACE, STATE(3440), 2, sym_line_comment, sym_block_comment, - [95204] = 4, + [94335] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, - sym_identifier, + ACTIONS(5677), 1, + anon_sym_RPAREN, STATE(3441), 2, sym_line_comment, sym_block_comment, - [95218] = 4, + [94349] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6943), 1, - sym_identifier, + ACTIONS(6926), 1, + sym__line_doc_content, STATE(3442), 2, sym_line_comment, sym_block_comment, - [95232] = 4, + [94363] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, - anon_sym_COLON_COLON, + ACTIONS(6928), 1, + anon_sym_SEMI, STATE(3443), 2, sym_line_comment, sym_block_comment, - [95246] = 4, + [94377] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6947), 1, + ACTIONS(6930), 1, sym_identifier, STATE(3444), 2, sym_line_comment, sym_block_comment, - [95260] = 4, + [94391] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6115), 1, - anon_sym_RBRACE, + ACTIONS(6932), 1, + anon_sym_EQ_GT, STATE(3445), 2, sym_line_comment, sym_block_comment, - [95274] = 4, + [94405] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6949), 1, - sym_identifier, + ACTIONS(6934), 1, + anon_sym_RBRACK, STATE(3446), 2, sym_line_comment, sym_block_comment, - [95288] = 4, + [94419] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6951), 1, - anon_sym_fn, + ACTIONS(6936), 1, + sym_identifier, STATE(3447), 2, sym_line_comment, sym_block_comment, - [95302] = 4, + [94433] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5183), 1, - anon_sym_SEMI, + ACTIONS(6938), 1, + anon_sym_COLON_COLON, STATE(3448), 2, sym_line_comment, sym_block_comment, - [95316] = 4, + [94447] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6953), 1, + ACTIONS(6940), 1, anon_sym_SEMI, STATE(3449), 2, sym_line_comment, sym_block_comment, - [95330] = 4, + [94461] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6955), 1, - anon_sym_SEMI, + ACTIONS(6942), 1, + sym_identifier, STATE(3450), 2, sym_line_comment, sym_block_comment, - [95344] = 4, + [94475] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6957), 1, - anon_sym_SEMI, + ACTIONS(6944), 1, + sym_identifier, STATE(3451), 2, sym_line_comment, sym_block_comment, - [95358] = 4, + [94489] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6959), 1, - anon_sym_SEMI, + ACTIONS(6946), 1, + anon_sym_COLON_COLON, STATE(3452), 2, sym_line_comment, sym_block_comment, - [95372] = 4, - ACTIONS(103), 1, + [94503] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6961), 1, - anon_sym_SEMI, + ACTIONS(6948), 1, + aux_sym_line_comment_token2, STATE(3453), 2, sym_line_comment, sym_block_comment, - [95386] = 4, + [94517] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3151), 1, - anon_sym_PLUS, + ACTIONS(6950), 1, + anon_sym_RBRACE, STATE(3454), 2, sym_line_comment, sym_block_comment, - [95400] = 4, + [94531] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6963), 1, - sym_identifier, + ACTIONS(6392), 1, + anon_sym_COLON_COLON, STATE(3455), 2, sym_line_comment, sym_block_comment, - [95414] = 4, + [94545] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6965), 1, - sym__raw_string_literal_end, + ACTIONS(6952), 1, + anon_sym_SEMI, STATE(3456), 2, sym_line_comment, sym_block_comment, - [95428] = 4, + [94559] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, + ACTIONS(6954), 1, + anon_sym_EQ_GT, STATE(3457), 2, sym_line_comment, sym_block_comment, - [95442] = 4, + [94573] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6967), 1, - sym_identifier, + ACTIONS(5550), 1, + anon_sym_RPAREN, STATE(3458), 2, sym_line_comment, sym_block_comment, - [95456] = 4, + [94587] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6969), 1, + ACTIONS(6956), 1, anon_sym_SEMI, STATE(3459), 2, sym_line_comment, sym_block_comment, - [95470] = 4, + [94601] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6971), 1, - sym_identifier, + ACTIONS(6958), 1, + anon_sym_SEMI, STATE(3460), 2, sym_line_comment, sym_block_comment, - [95484] = 4, + [94615] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6973), 1, - sym_identifier, + ACTIONS(6960), 1, + anon_sym_LPAREN, STATE(3461), 2, sym_line_comment, sym_block_comment, - [95498] = 4, + [94629] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6975), 1, - sym_identifier, + ACTIONS(6962), 1, + anon_sym_SEMI, STATE(3462), 2, sym_line_comment, sym_block_comment, - [95512] = 4, + [94643] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6977), 1, - anon_sym_SEMI, + ACTIONS(6964), 1, + anon_sym_RBRACK, STATE(3463), 2, sym_line_comment, sym_block_comment, - [95526] = 4, + [94657] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6979), 1, - anon_sym_SEMI, + ACTIONS(6966), 1, + sym_identifier, STATE(3464), 2, sym_line_comment, sym_block_comment, - [95540] = 4, + [94671] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6981), 1, - anon_sym_SEMI, + ACTIONS(6968), 1, + ts_builtin_sym_end, STATE(3465), 2, sym_line_comment, sym_block_comment, - [95554] = 4, + [94685] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6983), 1, - anon_sym_LT, + ACTIONS(6970), 1, + sym__line_doc_content, STATE(3466), 2, sym_line_comment, sym_block_comment, - [95568] = 4, + [94699] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6985), 1, + ACTIONS(6972), 1, sym_identifier, STATE(3467), 2, sym_line_comment, sym_block_comment, - [95582] = 4, + [94713] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5557), 1, - anon_sym_RPAREN, + ACTIONS(6974), 1, + sym_raw_string_literal_content, STATE(3468), 2, sym_line_comment, sym_block_comment, - [95596] = 4, + [94727] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6987), 1, - anon_sym_SEMI, + ACTIONS(5925), 1, + anon_sym_RBRACE, STATE(3469), 2, sym_line_comment, sym_block_comment, - [95610] = 4, + [94741] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6989), 1, - sym_identifier, + ACTIONS(6976), 1, + anon_sym_RBRACE, STATE(3470), 2, sym_line_comment, sym_block_comment, - [95624] = 4, + [94755] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4754), 1, - anon_sym_COLON_COLON, + ACTIONS(6978), 1, + anon_sym_SEMI, STATE(3471), 2, sym_line_comment, sym_block_comment, - [95638] = 4, + [94769] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4185), 1, - anon_sym_RPAREN, + ACTIONS(4137), 1, + anon_sym_COLON_COLON, STATE(3472), 2, sym_line_comment, sym_block_comment, - [95652] = 4, + [94783] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6991), 1, - anon_sym_SEMI, + ACTIONS(5598), 1, + anon_sym_COLON_COLON, STATE(3473), 2, sym_line_comment, sym_block_comment, - [95666] = 4, + [94797] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6993), 1, - anon_sym_SEMI, + ACTIONS(1017), 1, + anon_sym_RBRACK, STATE(3474), 2, sym_line_comment, sym_block_comment, - [95680] = 4, + [94811] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6995), 1, - anon_sym_RBRACE, + ACTIONS(6980), 1, + sym_identifier, STATE(3475), 2, sym_line_comment, sym_block_comment, - [95694] = 4, + [94825] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6997), 1, + ACTIONS(6472), 1, anon_sym_SEMI, STATE(3476), 2, sym_line_comment, sym_block_comment, - [95708] = 4, + [94839] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6999), 1, - anon_sym_SEMI, + ACTIONS(6982), 1, + anon_sym_COLON_COLON, STATE(3477), 2, sym_line_comment, sym_block_comment, - [95722] = 4, + [94853] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7001), 1, - sym_identifier, + ACTIONS(6984), 1, + anon_sym_COLON, STATE(3478), 2, sym_line_comment, sym_block_comment, - [95736] = 4, + [94867] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7003), 1, - anon_sym_RBRACK, + ACTIONS(6986), 1, + sym__raw_string_literal_end, STATE(3479), 2, sym_line_comment, sym_block_comment, - [95750] = 4, + [94881] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7005), 1, - anon_sym_RBRACK, + ACTIONS(6988), 1, + anon_sym_SEMI, STATE(3480), 2, sym_line_comment, sym_block_comment, - [95764] = 4, + [94895] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7007), 1, - sym_identifier, + ACTIONS(6990), 1, + anon_sym_RBRACK, STATE(3481), 2, sym_line_comment, sym_block_comment, - [95778] = 4, + [94909] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7009), 1, - anon_sym_SEMI, + ACTIONS(6992), 1, + anon_sym_EQ_GT, STATE(3482), 2, sym_line_comment, sym_block_comment, - [95792] = 4, + [94923] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7011), 1, - sym_identifier, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, STATE(3483), 2, sym_line_comment, sym_block_comment, - [95806] = 4, + [94937] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7013), 1, - anon_sym_SEMI, + ACTIONS(6198), 1, + anon_sym_RBRACE, STATE(3484), 2, sym_line_comment, sym_block_comment, - [95820] = 4, + [94951] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7015), 1, - sym_identifier, + ACTIONS(6692), 1, + anon_sym_SEMI, STATE(3485), 2, sym_line_comment, sym_block_comment, - [95834] = 4, + [94965] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7017), 1, - sym_raw_string_literal_content, + ACTIONS(6996), 1, + anon_sym_COLON_COLON, STATE(3486), 2, sym_line_comment, sym_block_comment, - [95848] = 4, + [94979] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7019), 1, + ACTIONS(6998), 1, anon_sym_RBRACK, STATE(3487), 2, sym_line_comment, sym_block_comment, - [95862] = 4, + [94993] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7021), 1, + ACTIONS(7000), 1, anon_sym_SEMI, STATE(3488), 2, sym_line_comment, sym_block_comment, - [95876] = 4, + [95007] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7023), 1, - anon_sym_SEMI, + ACTIONS(4922), 1, + anon_sym_COLON_COLON, STATE(3489), 2, sym_line_comment, sym_block_comment, - [95890] = 4, + [95021] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7025), 1, - anon_sym_EQ_GT, + ACTIONS(5944), 1, + anon_sym_RBRACE, STATE(3490), 2, sym_line_comment, sym_block_comment, - [95904] = 4, + [95035] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7027), 1, - sym_identifier, + ACTIONS(7002), 1, + anon_sym_COLON_COLON, STATE(3491), 2, sym_line_comment, sym_block_comment, - [95918] = 4, + [95049] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - anon_sym_SEMI, + ACTIONS(7004), 1, + anon_sym_fn, STATE(3492), 2, sym_line_comment, sym_block_comment, - [95932] = 4, + [95063] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7029), 1, - sym__line_doc_content, + ACTIONS(7006), 1, + anon_sym_SEMI, STATE(3493), 2, sym_line_comment, sym_block_comment, - [95946] = 4, + [95077] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5798), 1, + ACTIONS(7008), 1, anon_sym_LBRACE, STATE(3494), 2, sym_line_comment, sym_block_comment, - [95960] = 4, + [95091] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7031), 1, - sym_identifier, + ACTIONS(7010), 1, + anon_sym_COLON, STATE(3495), 2, sym_line_comment, sym_block_comment, - [95974] = 4, + [95105] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7033), 1, - anon_sym_EQ_GT, + ACTIONS(7012), 1, + sym_self, STATE(3496), 2, sym_line_comment, sym_block_comment, - [95988] = 4, + [95119] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7035), 1, - anon_sym_RBRACE, + ACTIONS(867), 1, + anon_sym_RBRACK, STATE(3497), 2, sym_line_comment, sym_block_comment, - [96002] = 4, + [95133] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6793), 1, - anon_sym_LBRACK, + ACTIONS(7014), 1, + anon_sym_RBRACE, STATE(3498), 2, sym_line_comment, sym_block_comment, - [96016] = 4, + [95147] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7037), 1, + ACTIONS(4525), 1, anon_sym_fn, STATE(3499), 2, sym_line_comment, sym_block_comment, - [96030] = 4, + [95161] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7039), 1, - anon_sym_EQ_GT, + ACTIONS(7016), 1, + anon_sym_COLON, STATE(3500), 2, sym_line_comment, sym_block_comment, - [96044] = 4, + [95175] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7041), 1, + ACTIONS(7018), 1, anon_sym_SEMI, STATE(3501), 2, sym_line_comment, sym_block_comment, - [96058] = 4, + [95189] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5878), 1, - anon_sym_RPAREN, + ACTIONS(5887), 1, + anon_sym_RBRACE, STATE(3502), 2, sym_line_comment, sym_block_comment, - [96072] = 4, + [95203] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7043), 1, - anon_sym_SEMI, + ACTIONS(7020), 1, + sym_raw_string_literal_content, STATE(3503), 2, sym_line_comment, sym_block_comment, - [96086] = 4, + [95217] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, + ACTIONS(5893), 1, anon_sym_RBRACE, STATE(3504), 2, sym_line_comment, sym_block_comment, - [96100] = 4, + [95231] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7045), 1, - anon_sym_RPAREN, + ACTIONS(7022), 1, + sym_identifier, STATE(3505), 2, sym_line_comment, sym_block_comment, - [96114] = 4, + [95245] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7047), 1, - anon_sym_COLON, + ACTIONS(7024), 1, + anon_sym_LBRACK, STATE(3506), 2, sym_line_comment, sym_block_comment, - [96128] = 4, + [95259] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7049), 1, - anon_sym_SEMI, + ACTIONS(7026), 1, + anon_sym_COLON_COLON, STATE(3507), 2, sym_line_comment, sym_block_comment, - [96142] = 4, + [95273] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7051), 1, - anon_sym_COLON, + ACTIONS(5594), 1, + anon_sym_RPAREN, STATE(3508), 2, sym_line_comment, sym_block_comment, - [96156] = 4, + [95287] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6011), 1, - anon_sym_RBRACE, + ACTIONS(7028), 1, + anon_sym_SEMI, STATE(3509), 2, sym_line_comment, sym_block_comment, - [96170] = 4, + [95301] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7053), 1, - sym_raw_string_literal_content, + ACTIONS(7030), 1, + anon_sym_COLON_COLON, STATE(3510), 2, sym_line_comment, sym_block_comment, - [96184] = 4, + [95315] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7055), 1, - sym__raw_string_literal_end, + ACTIONS(7032), 1, + anon_sym_SEMI, STATE(3511), 2, sym_line_comment, sym_block_comment, - [96198] = 4, + [95329] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7057), 1, - sym_identifier, + ACTIONS(3745), 1, + anon_sym_COLON_COLON, STATE(3512), 2, sym_line_comment, sym_block_comment, - [96212] = 4, + [95343] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7059), 1, - sym_identifier, + ACTIONS(7034), 1, + anon_sym_COLON_COLON, STATE(3513), 2, sym_line_comment, sym_block_comment, - [96226] = 4, + [95357] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_COLON_COLON, + ACTIONS(897), 1, + anon_sym_RBRACK, STATE(3514), 2, sym_line_comment, sym_block_comment, - [96240] = 4, + [95371] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5876), 1, - anon_sym_COLON_COLON, + ACTIONS(5952), 1, + anon_sym_RBRACE, STATE(3515), 2, sym_line_comment, sym_block_comment, - [96254] = 4, + [95385] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, + ACTIONS(7036), 1, anon_sym_RPAREN, STATE(3516), 2, sym_line_comment, sym_block_comment, - [96268] = 4, + [95399] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7061), 1, - sym_identifier, + ACTIONS(7038), 1, + anon_sym_COLON_COLON, STATE(3517), 2, sym_line_comment, sym_block_comment, - [96282] = 4, + [95413] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5882), 1, - anon_sym_RPAREN, + ACTIONS(7040), 1, + anon_sym_LBRACE, STATE(3518), 2, sym_line_comment, sym_block_comment, - [96296] = 4, + [95427] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7063), 1, - anon_sym_COLON_COLON, + ACTIONS(7042), 1, + anon_sym_fn, STATE(3519), 2, sym_line_comment, sym_block_comment, - [96310] = 4, + [95441] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7065), 1, - anon_sym_COLON, + ACTIONS(7044), 1, + sym_identifier, STATE(3520), 2, sym_line_comment, sym_block_comment, - [96324] = 4, + [95455] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7067), 1, - anon_sym_COLON, + ACTIONS(7046), 1, + anon_sym_SEMI, STATE(3521), 2, sym_line_comment, sym_block_comment, - [96338] = 4, + [95469] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7069), 1, - anon_sym_SEMI, + ACTIONS(7048), 1, + anon_sym_COLON, STATE(3522), 2, sym_line_comment, sym_block_comment, - [96352] = 4, + [95483] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6713), 1, - anon_sym_SEMI, + ACTIONS(7050), 1, + sym_raw_string_literal_content, STATE(3523), 2, sym_line_comment, sym_block_comment, - [96366] = 4, + [95497] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6015), 1, - anon_sym_RBRACE, + ACTIONS(3475), 1, + anon_sym_COLON_COLON, STATE(3524), 2, sym_line_comment, sym_block_comment, - [96380] = 4, + [95511] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7071), 1, - anon_sym_COLON_COLON, + ACTIONS(7052), 1, + sym_identifier, STATE(3525), 2, sym_line_comment, sym_block_comment, - [96394] = 4, + [95525] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7073), 1, - anon_sym_COLON, + ACTIONS(7054), 1, + anon_sym_COLON_COLON, STATE(3526), 2, sym_line_comment, sym_block_comment, - [96408] = 4, + [95539] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7075), 1, - anon_sym_COLON_COLON, + ACTIONS(7056), 1, + anon_sym_LBRACE, STATE(3527), 2, sym_line_comment, sym_block_comment, - [96422] = 4, + [95553] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7077), 1, - anon_sym_SEMI, + ACTIONS(7058), 1, + sym_raw_string_literal_content, STATE(3528), 2, sym_line_comment, sym_block_comment, - [96436] = 4, + [95567] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3099), 1, - anon_sym_PLUS, + ACTIONS(5171), 1, + anon_sym_COLON_COLON, STATE(3529), 2, sym_line_comment, sym_block_comment, - [96450] = 4, + [95581] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4970), 1, + ACTIONS(7060), 1, anon_sym_COLON_COLON, STATE(3530), 2, sym_line_comment, sym_block_comment, - [96464] = 4, + [95595] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7079), 1, - anon_sym_RBRACK, + ACTIONS(5843), 1, + anon_sym_LBRACE, STATE(3531), 2, sym_line_comment, sym_block_comment, - [96478] = 4, + [95609] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7081), 1, + ACTIONS(5710), 1, anon_sym_COLON_COLON, STATE(3532), 2, sym_line_comment, sym_block_comment, - [96492] = 4, + [95623] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7083), 1, - anon_sym_fn, + ACTIONS(7062), 1, + anon_sym_COLON_COLON, STATE(3533), 2, sym_line_comment, sym_block_comment, - [96506] = 4, + [95637] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7085), 1, - anon_sym_SEMI, + ACTIONS(5851), 1, + anon_sym_LBRACE, STATE(3534), 2, sym_line_comment, sym_block_comment, - [96520] = 4, + [95651] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7087), 1, - anon_sym_LBRACE, + ACTIONS(7064), 1, + anon_sym_COLON_COLON, STATE(3535), 2, sym_line_comment, sym_block_comment, - [96534] = 4, + [95665] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6689), 1, - anon_sym_SEMI, + ACTIONS(5163), 1, + anon_sym_COLON_COLON, STATE(3536), 2, sym_line_comment, sym_block_comment, - [96548] = 4, + [95679] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7089), 1, - sym_identifier, + ACTIONS(5207), 1, + anon_sym_COLON_COLON, STATE(3537), 2, sym_line_comment, sym_block_comment, - [96562] = 4, + [95693] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7091), 1, - sym_identifier, + ACTIONS(4121), 1, + anon_sym_COLON_COLON, STATE(3538), 2, sym_line_comment, sym_block_comment, - [96576] = 4, + [95707] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5784), 1, - anon_sym_RBRACK, + ACTIONS(7066), 1, + anon_sym_COLON_COLON, STATE(3539), 2, sym_line_comment, sym_block_comment, - [96590] = 4, + [95721] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7093), 1, - anon_sym_RBRACE, + ACTIONS(7068), 1, + anon_sym_SEMI, STATE(3540), 2, sym_line_comment, sym_block_comment, - [96604] = 4, + [95735] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7095), 1, - anon_sym_SEMI, + ACTIONS(7070), 1, + sym_identifier, STATE(3541), 2, sym_line_comment, sym_block_comment, - [96618] = 4, + [95749] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7097), 1, - anon_sym_SEMI, + ACTIONS(4952), 1, + anon_sym_COLON_COLON, STATE(3542), 2, sym_line_comment, sym_block_comment, - [96632] = 4, + [95763] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7099), 1, + ACTIONS(7072), 1, anon_sym_COLON, STATE(3543), 2, sym_line_comment, sym_block_comment, - [96646] = 4, + [95777] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7101), 1, - sym_raw_string_literal_content, + ACTIONS(7074), 1, + anon_sym_LBRACK, STATE(3544), 2, sym_line_comment, sym_block_comment, - [96660] = 4, + [95791] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7103), 1, + ACTIONS(7076), 1, anon_sym_COLON, STATE(3545), 2, sym_line_comment, sym_block_comment, - [96674] = 4, + [95805] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5620), 1, - anon_sym_RPAREN, + ACTIONS(7078), 1, + anon_sym_LBRACK, STATE(3546), 2, sym_line_comment, sym_block_comment, - [96688] = 4, + [95819] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7105), 1, + ACTIONS(7080), 1, anon_sym_COLON, STATE(3547), 2, sym_line_comment, sym_block_comment, - [96702] = 4, + [95833] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7107), 1, - anon_sym_COLON_COLON, + ACTIONS(7082), 1, + anon_sym_COLON, STATE(3548), 2, sym_line_comment, sym_block_comment, - [96716] = 4, + [95847] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7109), 1, - anon_sym_fn, + ACTIONS(5225), 1, + anon_sym_SEMI, STATE(3549), 2, sym_line_comment, sym_block_comment, - [96730] = 4, + [95861] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7111), 1, - anon_sym_SEMI, + ACTIONS(7084), 1, + sym_identifier, STATE(3550), 2, sym_line_comment, sym_block_comment, - [96744] = 4, + [95875] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7113), 1, - anon_sym_COLON_COLON, + ACTIONS(7086), 1, + anon_sym_SEMI, STATE(3551), 2, sym_line_comment, sym_block_comment, - [96758] = 4, + [95889] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7115), 1, - anon_sym_RPAREN, + ACTIONS(7088), 1, + anon_sym_SEMI, STATE(3552), 2, sym_line_comment, sym_block_comment, - [96772] = 4, + [95903] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7117), 1, - anon_sym_COLON_COLON, + ACTIONS(7090), 1, + anon_sym_COLON, STATE(3553), 2, sym_line_comment, sym_block_comment, - [96786] = 4, + [95917] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(923), 1, - anon_sym_RBRACK, + ACTIONS(7092), 1, + sym_identifier, STATE(3554), 2, sym_line_comment, sym_block_comment, - [96800] = 4, + [95931] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7119), 1, - anon_sym_SEMI, + ACTIONS(7094), 1, + sym_identifier, STATE(3555), 2, sym_line_comment, sym_block_comment, - [96814] = 4, + [95945] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7121), 1, - anon_sym_LPAREN, + ACTIONS(6712), 1, + anon_sym_SEMI, STATE(3556), 2, sym_line_comment, sym_block_comment, - [96828] = 4, + [95959] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7123), 1, - anon_sym_COLON_COLON, + ACTIONS(7096), 1, + sym_identifier, STATE(3557), 2, sym_line_comment, sym_block_comment, - [96842] = 4, + [95973] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7125), 1, - anon_sym_LBRACE, + ACTIONS(7098), 1, + anon_sym_COLON, STATE(3558), 2, sym_line_comment, sym_block_comment, - [96856] = 4, + [95987] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7127), 1, - anon_sym_EQ, + ACTIONS(6498), 1, + anon_sym_SEMI, STATE(3559), 2, sym_line_comment, sym_block_comment, - [96870] = 4, + [96001] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6531), 1, + ACTIONS(5929), 1, anon_sym_RBRACE, STATE(3560), 2, sym_line_comment, sym_block_comment, - [96884] = 4, + [96015] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7129), 1, - anon_sym_RBRACK, + ACTIONS(3787), 1, + anon_sym_COLON_COLON, STATE(3561), 2, sym_line_comment, sym_block_comment, - [96898] = 4, + [96029] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5700), 1, + ACTIONS(7100), 1, anon_sym_RPAREN, STATE(3562), 2, sym_line_comment, sym_block_comment, - [96912] = 4, + [96043] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7131), 1, - sym_raw_string_literal_content, + ACTIONS(7102), 1, + anon_sym_COLON, STATE(3563), 2, sym_line_comment, sym_block_comment, - [96926] = 4, + [96057] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3609), 1, - anon_sym_COLON_COLON, + ACTIONS(7104), 1, + anon_sym_SEMI, STATE(3564), 2, sym_line_comment, sym_block_comment, - [96940] = 4, + [96071] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7133), 1, - anon_sym_RPAREN, + ACTIONS(7106), 1, + sym_identifier, STATE(3565), 2, sym_line_comment, sym_block_comment, - [96954] = 4, + [96085] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7135), 1, - anon_sym_COLON_COLON, + ACTIONS(7108), 1, + sym__raw_string_literal_end, STATE(3566), 2, sym_line_comment, sym_block_comment, - [96968] = 4, + [96099] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7137), 1, + ACTIONS(7110), 1, anon_sym_COLON, STATE(3567), 2, sym_line_comment, sym_block_comment, - [96982] = 4, + [96113] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7139), 1, - anon_sym_LBRACE, + ACTIONS(7112), 1, + sym_identifier, STATE(3568), 2, sym_line_comment, sym_block_comment, - [96996] = 4, + [96127] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7141), 1, - sym_raw_string_literal_content, + ACTIONS(7114), 1, + sym_identifier, STATE(3569), 2, sym_line_comment, sym_block_comment, - [97010] = 4, + [96141] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5231), 1, - anon_sym_COLON_COLON, + ACTIONS(7116), 1, + anon_sym_RPAREN, STATE(3570), 2, sym_line_comment, sym_block_comment, - [97024] = 4, + [96155] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7143), 1, + ACTIONS(7118), 1, anon_sym_COLON_COLON, STATE(3571), 2, sym_line_comment, sym_block_comment, - [97038] = 4, + [96169] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5892), 1, - anon_sym_LBRACE, + ACTIONS(7120), 1, + sym__line_doc_content, STATE(3572), 2, sym_line_comment, sym_block_comment, - [97052] = 4, + [96183] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5919), 1, - anon_sym_COLON_COLON, + ACTIONS(7122), 1, + anon_sym_COLON, STATE(3573), 2, sym_line_comment, sym_block_comment, - [97066] = 4, + [96197] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7145), 1, - anon_sym_COLON_COLON, + ACTIONS(7124), 1, + sym_identifier, STATE(3574), 2, sym_line_comment, sym_block_comment, - [97080] = 4, + [96211] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5911), 1, - anon_sym_LBRACE, + ACTIONS(7126), 1, + sym_raw_string_literal_content, STATE(3575), 2, sym_line_comment, sym_block_comment, - [97094] = 4, + [96225] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7147), 1, - anon_sym_COLON_COLON, + ACTIONS(7128), 1, + sym_identifier, STATE(3576), 2, sym_line_comment, sym_block_comment, - [97108] = 4, + [96239] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5257), 1, - anon_sym_COLON_COLON, + ACTIONS(7130), 1, + sym_identifier, STATE(3577), 2, sym_line_comment, sym_block_comment, - [97122] = 4, + [96253] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5275), 1, - anon_sym_COLON_COLON, + ACTIONS(7132), 1, + anon_sym_EQ, STATE(3578), 2, sym_line_comment, sym_block_comment, - [97136] = 4, + [96267] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, + ACTIONS(7134), 1, + anon_sym_COLON, STATE(3579), 2, sym_line_comment, sym_block_comment, - [97150] = 4, + [96281] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7149), 1, - anon_sym_COLON_COLON, + ACTIONS(7136), 1, + anon_sym_COLON, STATE(3580), 2, sym_line_comment, sym_block_comment, - [97164] = 4, + [96295] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7151), 1, - anon_sym_SEMI, + ACTIONS(5454), 1, + anon_sym_RPAREN, STATE(3581), 2, sym_line_comment, sym_block_comment, - [97178] = 4, + [96309] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7153), 1, - anon_sym_RBRACK, + ACTIONS(7138), 1, + sym_identifier, STATE(3582), 2, sym_line_comment, sym_block_comment, - [97192] = 4, + [96323] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7155), 1, - anon_sym_SEMI, + ACTIONS(7140), 1, + anon_sym_COLON, STATE(3583), 2, sym_line_comment, sym_block_comment, - [97206] = 4, + [96337] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7157), 1, - anon_sym_SEMI, + ACTIONS(7142), 1, + anon_sym_COLON, STATE(3584), 2, sym_line_comment, sym_block_comment, - [97220] = 4, + [96351] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7159), 1, + ACTIONS(7144), 1, anon_sym_COLON, STATE(3585), 2, sym_line_comment, sym_block_comment, - [97234] = 4, + [96365] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7161), 1, + ACTIONS(7146), 1, anon_sym_LBRACK, STATE(3586), 2, sym_line_comment, sym_block_comment, - [97248] = 4, + [96379] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(893), 1, - anon_sym_RBRACK, + ACTIONS(7148), 1, + anon_sym_LBRACK, STATE(3587), 2, sym_line_comment, sym_block_comment, - [97262] = 4, + [96393] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7163), 1, - anon_sym_LBRACK, + ACTIONS(7150), 1, + anon_sym_COLON, STATE(3588), 2, sym_line_comment, sym_block_comment, - [97276] = 4, + [96407] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7165), 1, - anon_sym_COLON, + ACTIONS(7152), 1, + anon_sym_SEMI, STATE(3589), 2, sym_line_comment, sym_block_comment, - [97290] = 4, + [96421] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7167), 1, - anon_sym_COLON, + ACTIONS(6146), 1, + anon_sym_RBRACE, STATE(3590), 2, sym_line_comment, sym_block_comment, - [97304] = 4, + [96435] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5263), 1, - anon_sym_COLON_COLON, + ACTIONS(7154), 1, + anon_sym_COLON, STATE(3591), 2, sym_line_comment, sym_block_comment, - [97318] = 4, + [96449] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6215), 1, - anon_sym_RBRACE, + ACTIONS(7156), 1, + anon_sym_COLON, STATE(3592), 2, sym_line_comment, sym_block_comment, - [97332] = 4, + [96463] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7169), 1, - anon_sym_STAR_SLASH, + ACTIONS(7158), 1, + anon_sym_SEMI, STATE(3593), 2, sym_line_comment, sym_block_comment, - [97346] = 4, + [96477] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5704), 1, - anon_sym_RBRACK, + ACTIONS(7160), 1, + anon_sym_SEMI, STATE(3594), 2, sym_line_comment, sym_block_comment, - [97360] = 4, + [96491] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7171), 1, + ACTIONS(7162), 1, anon_sym_COLON, STATE(3595), 2, sym_line_comment, sym_block_comment, - [97374] = 4, + [96505] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4604), 1, - anon_sym_COLON_COLON, + ACTIONS(7164), 1, + anon_sym_COLON, STATE(3596), 2, sym_line_comment, sym_block_comment, - [97388] = 4, + [96519] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7173), 1, - anon_sym_SEMI, + ACTIONS(7166), 1, + anon_sym_COLON, STATE(3597), 2, sym_line_comment, sym_block_comment, - [97402] = 4, + [96533] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7175), 1, - anon_sym_LPAREN, + ACTIONS(7168), 1, + anon_sym_RBRACK, STATE(3598), 2, sym_line_comment, sym_block_comment, - [97416] = 4, + [96547] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7177), 1, - sym_identifier, + ACTIONS(4549), 1, + anon_sym_fn, STATE(3599), 2, sym_line_comment, sym_block_comment, - [97430] = 4, + [96561] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7179), 1, - anon_sym_COLON, + ACTIONS(6632), 1, + anon_sym_COLON_COLON, STATE(3600), 2, sym_line_comment, sym_block_comment, - [97444] = 4, + [96575] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5273), 1, - anon_sym_SEMI, + ACTIONS(7170), 1, + anon_sym_COLON, STATE(3601), 2, sym_line_comment, sym_block_comment, - [97458] = 4, + [96589] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7181), 1, - anon_sym_COLON, + ACTIONS(7172), 1, + sym_identifier, STATE(3602), 2, sym_line_comment, sym_block_comment, - [97472] = 4, + [96603] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7183), 1, - sym__line_doc_content, + ACTIONS(5121), 1, + anon_sym_SEMI, STATE(3603), 2, sym_line_comment, sym_block_comment, - [97486] = 4, + [96617] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7185), 1, + ACTIONS(7174), 1, anon_sym_SEMI, STATE(3604), 2, sym_line_comment, sym_block_comment, - [97500] = 4, + [96631] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7187), 1, - anon_sym_COLON, + ACTIONS(7176), 1, + sym_identifier, STATE(3605), 2, sym_line_comment, sym_block_comment, - [97514] = 4, + [96645] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7189), 1, - anon_sym_SEMI, + ACTIONS(7178), 1, + anon_sym_fn, STATE(3606), 2, sym_line_comment, sym_block_comment, - [97528] = 4, + [96659] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7191), 1, - anon_sym_COLON, + ACTIONS(7180), 1, + anon_sym_RBRACK, STATE(3607), 2, sym_line_comment, sym_block_comment, - [97542] = 4, + [96673] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7193), 1, + ACTIONS(7182), 1, sym_identifier, STATE(3608), 2, sym_line_comment, sym_block_comment, - [97556] = 4, + [96687] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7195), 1, - sym_identifier, + ACTIONS(5131), 1, + anon_sym_SEMI, STATE(3609), 2, sym_line_comment, sym_block_comment, - [97570] = 4, + [96701] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7197), 1, - ts_builtin_sym_end, + ACTIONS(7184), 1, + anon_sym_SEMI, STATE(3610), 2, sym_line_comment, sym_block_comment, - [97584] = 4, + [96715] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6711), 1, - anon_sym_SEMI, + ACTIONS(7186), 1, + sym_raw_string_literal_content, STATE(3611), 2, sym_line_comment, sym_block_comment, - [97598] = 4, + [96729] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7199), 1, + ACTIONS(7188), 1, sym_identifier, STATE(3612), 2, sym_line_comment, sym_block_comment, - [97612] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7201), 1, - anon_sym_COLON, - STATE(3613), 2, - sym_line_comment, - sym_block_comment, - [97626] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_COLON_COLON, - STATE(3614), 2, - sym_line_comment, - sym_block_comment, - [97640] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7203), 1, - sym__raw_string_literal_end, - STATE(3615), 2, - sym_line_comment, - sym_block_comment, - [97654] = 4, + [96743] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7205), 1, - sym__raw_string_literal_end, - STATE(3616), 2, - sym_line_comment, - sym_block_comment, - [97668] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7207), 1, + ACTIONS(7190), 1, anon_sym_SEMI, - STATE(3617), 2, - sym_line_comment, - sym_block_comment, - [97682] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7209), 1, - anon_sym_SEMI, - STATE(3618), 2, - sym_line_comment, - sym_block_comment, - [97696] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_EQ_GT, - STATE(3619), 2, - sym_line_comment, - sym_block_comment, - [97710] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7211), 1, - anon_sym_EQ, - STATE(3620), 2, - sym_line_comment, - sym_block_comment, - [97724] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7213), 1, - anon_sym_RBRACK, - STATE(3621), 2, - sym_line_comment, - sym_block_comment, - [97738] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7215), 1, - anon_sym_SEMI, - STATE(3622), 2, - sym_line_comment, - sym_block_comment, - [97752] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4571), 1, - anon_sym_fn, - STATE(3623), 2, - sym_line_comment, - sym_block_comment, - [97766] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7217), 1, - sym_identifier, - STATE(3624), 2, - sym_line_comment, - sym_block_comment, - [97780] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7219), 1, - anon_sym_COLON, - STATE(3625), 2, - sym_line_comment, - sym_block_comment, - [97794] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7221), 1, - anon_sym_COLON, - STATE(3626), 2, - sym_line_comment, - sym_block_comment, - [97808] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7223), 1, - anon_sym_LBRACK, - STATE(3627), 2, - sym_line_comment, - sym_block_comment, - [97822] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7225), 1, - anon_sym_LBRACK, - STATE(3628), 2, - sym_line_comment, - sym_block_comment, - [97836] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7227), 1, - anon_sym_COLON, - STATE(3629), 2, - sym_line_comment, - sym_block_comment, - [97850] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7229), 1, - sym_self, - STATE(3630), 2, - sym_line_comment, - sym_block_comment, - [97864] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7231), 1, - sym_identifier, - STATE(3631), 2, - sym_line_comment, - sym_block_comment, - [97878] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7233), 1, - anon_sym_COLON, - STATE(3632), 2, - sym_line_comment, - sym_block_comment, - [97892] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7235), 1, - anon_sym_COLON, - STATE(3633), 2, - sym_line_comment, - sym_block_comment, - [97906] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7237), 1, - anon_sym_SEMI, - STATE(3634), 2, - sym_line_comment, - sym_block_comment, - [97920] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5834), 1, - anon_sym_RPAREN, - STATE(3635), 2, - sym_line_comment, - sym_block_comment, - [97934] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7239), 1, - anon_sym_COLON, - STATE(3636), 2, - sym_line_comment, - sym_block_comment, - [97948] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7241), 1, - anon_sym_COLON, - STATE(3637), 2, - sym_line_comment, - sym_block_comment, - [97962] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7243), 1, - anon_sym_COLON, - STATE(3638), 2, - sym_line_comment, - sym_block_comment, - [97976] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7245), 1, - sym_identifier, - STATE(3639), 2, - sym_line_comment, - sym_block_comment, - [97990] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4547), 1, - anon_sym_fn, - STATE(3640), 2, - sym_line_comment, - sym_block_comment, - [98004] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3881), 1, - anon_sym_COLON_COLON, - STATE(3641), 2, - sym_line_comment, - sym_block_comment, - [98018] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6054), 1, - anon_sym_RBRACE, - STATE(3642), 2, - sym_line_comment, - sym_block_comment, - [98032] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7247), 1, - sym_identifier, - STATE(3643), 2, - sym_line_comment, - sym_block_comment, - [98046] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6503), 1, - anon_sym_RBRACE, - STATE(3644), 2, - sym_line_comment, - sym_block_comment, - [98060] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7249), 1, - anon_sym_SEMI, - STATE(3645), 2, - sym_line_comment, - sym_block_comment, - [98074] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7251), 1, - sym_identifier, - STATE(3646), 2, - sym_line_comment, - sym_block_comment, - [98088] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7253), 1, - anon_sym_fn, - STATE(3647), 2, - sym_line_comment, - sym_block_comment, - [98102] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7255), 1, - anon_sym_SEMI, - STATE(3648), 2, - sym_line_comment, - sym_block_comment, - [98116] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7257), 1, - sym_identifier, - STATE(3649), 2, - sym_line_comment, - sym_block_comment, - [98130] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6461), 1, - anon_sym_COLON_COLON, - STATE(3650), 2, - sym_line_comment, - sym_block_comment, - [98144] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(903), 1, - anon_sym_RBRACK, - STATE(3651), 2, - sym_line_comment, - sym_block_comment, - [98158] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7259), 1, - sym_identifier, - STATE(3652), 2, - sym_line_comment, - sym_block_comment, - [98172] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7261), 1, - anon_sym_LBRACK, - STATE(3653), 2, + STATE(3613), 2, sym_line_comment, sym_block_comment, - [98186] = 4, + [96757] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7263), 1, + ACTIONS(4033), 1, sym_identifier, - STATE(3654), 2, - sym_line_comment, - sym_block_comment, - [98200] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7265), 1, - sym_raw_string_literal_content, - STATE(3655), 2, + STATE(3614), 2, sym_line_comment, sym_block_comment, - [98214] = 4, + [96771] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7267), 1, + ACTIONS(7192), 1, sym_identifier, - STATE(3656), 2, - sym_line_comment, - sym_block_comment, - [98228] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(7269), 1, - anon_sym_SEMI, - STATE(3657), 2, + STATE(3615), 2, sym_line_comment, sym_block_comment, - [98242] = 4, + [96785] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7271), 1, + ACTIONS(7194), 1, sym_identifier, - STATE(3658), 2, + STATE(3616), 2, sym_line_comment, sym_block_comment, - [98256] = 4, + [96799] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7273), 1, + ACTIONS(7196), 1, anon_sym_fn, - STATE(3659), 2, + STATE(3617), 2, sym_line_comment, sym_block_comment, - [98270] = 1, - ACTIONS(7275), 1, + [96813] = 1, + ACTIONS(7198), 1, ts_builtin_sym_end, - [98274] = 1, - ACTIONS(7277), 1, + [96817] = 1, + ACTIONS(7200), 1, ts_builtin_sym_end, - [98278] = 1, - ACTIONS(7279), 1, + [96821] = 1, + ACTIONS(7202), 1, ts_builtin_sym_end, - [98282] = 1, - ACTIONS(7281), 1, + [96825] = 1, + ACTIONS(7204), 1, ts_builtin_sym_end, - [98286] = 1, - ACTIONS(7283), 1, + [96829] = 1, + ACTIONS(7206), 1, ts_builtin_sym_end, - [98290] = 1, - ACTIONS(7285), 1, + [96833] = 1, + ACTIONS(7208), 1, ts_builtin_sym_end, - [98294] = 1, - ACTIONS(7287), 1, + [96837] = 1, + ACTIONS(7210), 1, ts_builtin_sym_end, }; @@ -190453,12 +189262,12 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1024)] = 493, [SMALL_STATE(1025)] = 572, [SMALL_STATE(1026)] = 646, - [SMALL_STATE(1027)] = 720, + [SMALL_STATE(1027)] = 710, [SMALL_STATE(1028)] = 784, [SMALL_STATE(1029)] = 848, - [SMALL_STATE(1030)] = 922, - [SMALL_STATE(1031)] = 986, - [SMALL_STATE(1032)] = 1050, + [SMALL_STATE(1030)] = 912, + [SMALL_STATE(1031)] = 976, + [SMALL_STATE(1032)] = 1040, [SMALL_STATE(1033)] = 1114, [SMALL_STATE(1034)] = 1178, [SMALL_STATE(1035)] = 1242, @@ -190466,353 +189275,353 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1037)] = 1370, [SMALL_STATE(1038)] = 1441, [SMALL_STATE(1039)] = 1508, - [SMALL_STATE(1040)] = 1571, - [SMALL_STATE(1041)] = 1634, - [SMALL_STATE(1042)] = 1705, - [SMALL_STATE(1043)] = 1768, - [SMALL_STATE(1044)] = 1831, - [SMALL_STATE(1045)] = 1902, - [SMALL_STATE(1046)] = 1969, - [SMALL_STATE(1047)] = 2032, - [SMALL_STATE(1048)] = 2099, - [SMALL_STATE(1049)] = 2166, - [SMALL_STATE(1050)] = 2237, + [SMALL_STATE(1040)] = 1575, + [SMALL_STATE(1041)] = 1646, + [SMALL_STATE(1042)] = 1717, + [SMALL_STATE(1043)] = 1780, + [SMALL_STATE(1044)] = 1847, + [SMALL_STATE(1045)] = 1910, + [SMALL_STATE(1046)] = 1981, + [SMALL_STATE(1047)] = 2048, + [SMALL_STATE(1048)] = 2111, + [SMALL_STATE(1049)] = 2174, + [SMALL_STATE(1050)] = 2241, [SMALL_STATE(1051)] = 2304, - [SMALL_STATE(1052)] = 2374, - [SMALL_STATE(1053)] = 2436, - [SMALL_STATE(1054)] = 2498, - [SMALL_STATE(1055)] = 2604, - [SMALL_STATE(1056)] = 2666, - [SMALL_STATE(1057)] = 2766, - [SMALL_STATE(1058)] = 2828, - [SMALL_STATE(1059)] = 2934, - [SMALL_STATE(1060)] = 3040, - [SMALL_STATE(1061)] = 3146, - [SMALL_STATE(1062)] = 3246, - [SMALL_STATE(1063)] = 3312, - [SMALL_STATE(1064)] = 3418, - [SMALL_STATE(1065)] = 3524, + [SMALL_STATE(1052)] = 2372, + [SMALL_STATE(1053)] = 2478, + [SMALL_STATE(1054)] = 2584, + [SMALL_STATE(1055)] = 2690, + [SMALL_STATE(1056)] = 2752, + [SMALL_STATE(1057)] = 2858, + [SMALL_STATE(1058)] = 2928, + [SMALL_STATE(1059)] = 3028, + [SMALL_STATE(1060)] = 3090, + [SMALL_STATE(1061)] = 3196, + [SMALL_STATE(1062)] = 3258, + [SMALL_STATE(1063)] = 3324, + [SMALL_STATE(1064)] = 3430, + [SMALL_STATE(1065)] = 3530, [SMALL_STATE(1066)] = 3592, - [SMALL_STATE(1067)] = 3653, - [SMALL_STATE(1068)] = 3714, - [SMALL_STATE(1069)] = 3775, - [SMALL_STATE(1070)] = 3836, - [SMALL_STATE(1071)] = 3897, - [SMALL_STATE(1072)] = 3958, - [SMALL_STATE(1073)] = 4019, - [SMALL_STATE(1074)] = 4080, - [SMALL_STATE(1075)] = 4141, - [SMALL_STATE(1076)] = 4202, - [SMALL_STATE(1077)] = 4263, - [SMALL_STATE(1078)] = 4324, - [SMALL_STATE(1079)] = 4385, - [SMALL_STATE(1080)] = 4446, - [SMALL_STATE(1081)] = 4507, - [SMALL_STATE(1082)] = 4568, - [SMALL_STATE(1083)] = 4629, - [SMALL_STATE(1084)] = 4690, - [SMALL_STATE(1085)] = 4751, - [SMALL_STATE(1086)] = 4812, - [SMALL_STATE(1087)] = 4873, - [SMALL_STATE(1088)] = 4934, - [SMALL_STATE(1089)] = 4995, - [SMALL_STATE(1090)] = 5056, - [SMALL_STATE(1091)] = 5117, - [SMALL_STATE(1092)] = 5178, - [SMALL_STATE(1093)] = 5239, - [SMALL_STATE(1094)] = 5300, - [SMALL_STATE(1095)] = 5361, - [SMALL_STATE(1096)] = 5422, - [SMALL_STATE(1097)] = 5483, - [SMALL_STATE(1098)] = 5544, - [SMALL_STATE(1099)] = 5605, - [SMALL_STATE(1100)] = 5666, - [SMALL_STATE(1101)] = 5727, - [SMALL_STATE(1102)] = 5788, - [SMALL_STATE(1103)] = 5849, - [SMALL_STATE(1104)] = 5910, - [SMALL_STATE(1105)] = 5971, - [SMALL_STATE(1106)] = 6032, - [SMALL_STATE(1107)] = 6093, - [SMALL_STATE(1108)] = 6154, - [SMALL_STATE(1109)] = 6215, - [SMALL_STATE(1110)] = 6276, - [SMALL_STATE(1111)] = 6337, - [SMALL_STATE(1112)] = 6398, - [SMALL_STATE(1113)] = 6459, - [SMALL_STATE(1114)] = 6520, - [SMALL_STATE(1115)] = 6581, - [SMALL_STATE(1116)] = 6642, - [SMALL_STATE(1117)] = 6703, - [SMALL_STATE(1118)] = 6764, - [SMALL_STATE(1119)] = 6825, - [SMALL_STATE(1120)] = 6886, - [SMALL_STATE(1121)] = 6947, - [SMALL_STATE(1122)] = 7008, - [SMALL_STATE(1123)] = 7069, - [SMALL_STATE(1124)] = 7130, - [SMALL_STATE(1125)] = 7191, - [SMALL_STATE(1126)] = 7252, - [SMALL_STATE(1127)] = 7313, - [SMALL_STATE(1128)] = 7374, - [SMALL_STATE(1129)] = 7435, - [SMALL_STATE(1130)] = 7496, - [SMALL_STATE(1131)] = 7557, - [SMALL_STATE(1132)] = 7618, - [SMALL_STATE(1133)] = 7679, - [SMALL_STATE(1134)] = 7740, - [SMALL_STATE(1135)] = 7801, - [SMALL_STATE(1136)] = 7862, - [SMALL_STATE(1137)] = 7923, - [SMALL_STATE(1138)] = 7984, - [SMALL_STATE(1139)] = 8045, - [SMALL_STATE(1140)] = 8106, - [SMALL_STATE(1141)] = 8167, - [SMALL_STATE(1142)] = 8228, - [SMALL_STATE(1143)] = 8289, - [SMALL_STATE(1144)] = 8350, - [SMALL_STATE(1145)] = 8411, - [SMALL_STATE(1146)] = 8472, - [SMALL_STATE(1147)] = 8533, - [SMALL_STATE(1148)] = 8594, - [SMALL_STATE(1149)] = 8655, - [SMALL_STATE(1150)] = 8716, - [SMALL_STATE(1151)] = 8779, - [SMALL_STATE(1152)] = 8840, - [SMALL_STATE(1153)] = 8901, - [SMALL_STATE(1154)] = 8962, - [SMALL_STATE(1155)] = 9023, - [SMALL_STATE(1156)] = 9084, - [SMALL_STATE(1157)] = 9145, - [SMALL_STATE(1158)] = 9206, - [SMALL_STATE(1159)] = 9267, - [SMALL_STATE(1160)] = 9328, - [SMALL_STATE(1161)] = 9389, - [SMALL_STATE(1162)] = 9450, - [SMALL_STATE(1163)] = 9511, - [SMALL_STATE(1164)] = 9572, - [SMALL_STATE(1165)] = 9633, - [SMALL_STATE(1166)] = 9694, - [SMALL_STATE(1167)] = 9755, - [SMALL_STATE(1168)] = 9816, - [SMALL_STATE(1169)] = 9877, - [SMALL_STATE(1170)] = 9938, - [SMALL_STATE(1171)] = 9999, - [SMALL_STATE(1172)] = 10060, - [SMALL_STATE(1173)] = 10121, - [SMALL_STATE(1174)] = 10182, - [SMALL_STATE(1175)] = 10245, - [SMALL_STATE(1176)] = 10306, - [SMALL_STATE(1177)] = 10367, - [SMALL_STATE(1178)] = 10428, - [SMALL_STATE(1179)] = 10491, - [SMALL_STATE(1180)] = 10552, - [SMALL_STATE(1181)] = 10615, - [SMALL_STATE(1182)] = 10678, - [SMALL_STATE(1183)] = 10739, - [SMALL_STATE(1184)] = 10802, - [SMALL_STATE(1185)] = 10865, - [SMALL_STATE(1186)] = 10928, - [SMALL_STATE(1187)] = 10991, - [SMALL_STATE(1188)] = 11056, - [SMALL_STATE(1189)] = 11117, - [SMALL_STATE(1190)] = 11178, - [SMALL_STATE(1191)] = 11239, - [SMALL_STATE(1192)] = 11300, - [SMALL_STATE(1193)] = 11361, - [SMALL_STATE(1194)] = 11422, - [SMALL_STATE(1195)] = 11483, - [SMALL_STATE(1196)] = 11544, - [SMALL_STATE(1197)] = 11605, - [SMALL_STATE(1198)] = 11666, - [SMALL_STATE(1199)] = 11727, - [SMALL_STATE(1200)] = 11788, - [SMALL_STATE(1201)] = 11849, - [SMALL_STATE(1202)] = 11910, - [SMALL_STATE(1203)] = 11971, - [SMALL_STATE(1204)] = 12032, - [SMALL_STATE(1205)] = 12093, - [SMALL_STATE(1206)] = 12154, - [SMALL_STATE(1207)] = 12215, - [SMALL_STATE(1208)] = 12276, - [SMALL_STATE(1209)] = 12337, - [SMALL_STATE(1210)] = 12398, - [SMALL_STATE(1211)] = 12459, - [SMALL_STATE(1212)] = 12520, - [SMALL_STATE(1213)] = 12581, - [SMALL_STATE(1214)] = 12642, - [SMALL_STATE(1215)] = 12703, - [SMALL_STATE(1216)] = 12764, - [SMALL_STATE(1217)] = 12825, - [SMALL_STATE(1218)] = 12886, - [SMALL_STATE(1219)] = 12947, - [SMALL_STATE(1220)] = 13008, - [SMALL_STATE(1221)] = 13069, - [SMALL_STATE(1222)] = 13130, - [SMALL_STATE(1223)] = 13191, - [SMALL_STATE(1224)] = 13252, - [SMALL_STATE(1225)] = 13313, - [SMALL_STATE(1226)] = 13374, - [SMALL_STATE(1227)] = 13435, - [SMALL_STATE(1228)] = 13498, - [SMALL_STATE(1229)] = 13559, - [SMALL_STATE(1230)] = 13622, - [SMALL_STATE(1231)] = 13683, - [SMALL_STATE(1232)] = 13744, - [SMALL_STATE(1233)] = 13805, - [SMALL_STATE(1234)] = 13866, - [SMALL_STATE(1235)] = 13927, - [SMALL_STATE(1236)] = 13988, - [SMALL_STATE(1237)] = 14049, - [SMALL_STATE(1238)] = 14110, - [SMALL_STATE(1239)] = 14171, - [SMALL_STATE(1240)] = 14232, - [SMALL_STATE(1241)] = 14293, - [SMALL_STATE(1242)] = 14354, - [SMALL_STATE(1243)] = 14415, - [SMALL_STATE(1244)] = 14478, - [SMALL_STATE(1245)] = 14539, - [SMALL_STATE(1246)] = 14602, - [SMALL_STATE(1247)] = 14663, - [SMALL_STATE(1248)] = 14726, - [SMALL_STATE(1249)] = 14787, - [SMALL_STATE(1250)] = 14848, - [SMALL_STATE(1251)] = 14909, - [SMALL_STATE(1252)] = 14970, - [SMALL_STATE(1253)] = 15031, - [SMALL_STATE(1254)] = 15092, - [SMALL_STATE(1255)] = 15153, - [SMALL_STATE(1256)] = 15214, - [SMALL_STATE(1257)] = 15275, - [SMALL_STATE(1258)] = 15336, - [SMALL_STATE(1259)] = 15397, - [SMALL_STATE(1260)] = 15458, - [SMALL_STATE(1261)] = 15519, - [SMALL_STATE(1262)] = 15580, - [SMALL_STATE(1263)] = 15641, - [SMALL_STATE(1264)] = 15702, - [SMALL_STATE(1265)] = 15763, - [SMALL_STATE(1266)] = 15824, - [SMALL_STATE(1267)] = 15885, - [SMALL_STATE(1268)] = 15946, - [SMALL_STATE(1269)] = 16007, - [SMALL_STATE(1270)] = 16068, - [SMALL_STATE(1271)] = 16129, - [SMALL_STATE(1272)] = 16190, - [SMALL_STATE(1273)] = 16251, - [SMALL_STATE(1274)] = 16312, - [SMALL_STATE(1275)] = 16373, - [SMALL_STATE(1276)] = 16434, - [SMALL_STATE(1277)] = 16495, - [SMALL_STATE(1278)] = 16556, - [SMALL_STATE(1279)] = 16617, - [SMALL_STATE(1280)] = 16678, - [SMALL_STATE(1281)] = 16739, - [SMALL_STATE(1282)] = 16800, - [SMALL_STATE(1283)] = 16861, - [SMALL_STATE(1284)] = 16922, - [SMALL_STATE(1285)] = 16983, - [SMALL_STATE(1286)] = 17044, - [SMALL_STATE(1287)] = 17105, - [SMALL_STATE(1288)] = 17166, - [SMALL_STATE(1289)] = 17231, - [SMALL_STATE(1290)] = 17292, - [SMALL_STATE(1291)] = 17353, - [SMALL_STATE(1292)] = 17414, - [SMALL_STATE(1293)] = 17475, - [SMALL_STATE(1294)] = 17536, - [SMALL_STATE(1295)] = 17597, - [SMALL_STATE(1296)] = 17658, - [SMALL_STATE(1297)] = 17733, - [SMALL_STATE(1298)] = 17794, - [SMALL_STATE(1299)] = 17855, - [SMALL_STATE(1300)] = 17916, - [SMALL_STATE(1301)] = 17977, - [SMALL_STATE(1302)] = 18038, - [SMALL_STATE(1303)] = 18101, - [SMALL_STATE(1304)] = 18162, - [SMALL_STATE(1305)] = 18223, - [SMALL_STATE(1306)] = 18286, - [SMALL_STATE(1307)] = 18349, - [SMALL_STATE(1308)] = 18410, - [SMALL_STATE(1309)] = 18471, - [SMALL_STATE(1310)] = 18532, - [SMALL_STATE(1311)] = 18593, - [SMALL_STATE(1312)] = 18656, - [SMALL_STATE(1313)] = 18717, - [SMALL_STATE(1314)] = 18778, - [SMALL_STATE(1315)] = 18839, - [SMALL_STATE(1316)] = 18902, - [SMALL_STATE(1317)] = 18963, - [SMALL_STATE(1318)] = 19024, - [SMALL_STATE(1319)] = 19085, - [SMALL_STATE(1320)] = 19146, - [SMALL_STATE(1321)] = 19207, - [SMALL_STATE(1322)] = 19268, - [SMALL_STATE(1323)] = 19329, - [SMALL_STATE(1324)] = 19390, - [SMALL_STATE(1325)] = 19451, - [SMALL_STATE(1326)] = 19512, - [SMALL_STATE(1327)] = 19573, - [SMALL_STATE(1328)] = 19634, - [SMALL_STATE(1329)] = 19695, - [SMALL_STATE(1330)] = 19756, - [SMALL_STATE(1331)] = 19817, - [SMALL_STATE(1332)] = 19878, - [SMALL_STATE(1333)] = 19939, - [SMALL_STATE(1334)] = 20000, - [SMALL_STATE(1335)] = 20075, - [SMALL_STATE(1336)] = 20136, - [SMALL_STATE(1337)] = 20197, - [SMALL_STATE(1338)] = 20258, - [SMALL_STATE(1339)] = 20319, - [SMALL_STATE(1340)] = 20380, - [SMALL_STATE(1341)] = 20441, - [SMALL_STATE(1342)] = 20502, - [SMALL_STATE(1343)] = 20563, - [SMALL_STATE(1344)] = 20624, - [SMALL_STATE(1345)] = 20685, - [SMALL_STATE(1346)] = 20746, - [SMALL_STATE(1347)] = 20807, - [SMALL_STATE(1348)] = 20868, - [SMALL_STATE(1349)] = 20929, - [SMALL_STATE(1350)] = 20990, - [SMALL_STATE(1351)] = 21051, - [SMALL_STATE(1352)] = 21112, - [SMALL_STATE(1353)] = 21173, - [SMALL_STATE(1354)] = 21234, - [SMALL_STATE(1355)] = 21295, - [SMALL_STATE(1356)] = 21356, - [SMALL_STATE(1357)] = 21417, - [SMALL_STATE(1358)] = 21478, - [SMALL_STATE(1359)] = 21539, - [SMALL_STATE(1360)] = 21600, - [SMALL_STATE(1361)] = 21661, - [SMALL_STATE(1362)] = 21722, - [SMALL_STATE(1363)] = 21783, - [SMALL_STATE(1364)] = 21844, - [SMALL_STATE(1365)] = 21909, - [SMALL_STATE(1366)] = 21970, - [SMALL_STATE(1367)] = 22031, - [SMALL_STATE(1368)] = 22124, - [SMALL_STATE(1369)] = 22187, - [SMALL_STATE(1370)] = 22248, - [SMALL_STATE(1371)] = 22309, - [SMALL_STATE(1372)] = 22402, - [SMALL_STATE(1373)] = 22463, - [SMALL_STATE(1374)] = 22524, - [SMALL_STATE(1375)] = 22585, - [SMALL_STATE(1376)] = 22646, - [SMALL_STATE(1377)] = 22707, - [SMALL_STATE(1378)] = 22767, - [SMALL_STATE(1379)] = 22827, - [SMALL_STATE(1380)] = 22887, - [SMALL_STATE(1381)] = 22947, - [SMALL_STATE(1382)] = 23007, - [SMALL_STATE(1383)] = 23067, - [SMALL_STATE(1384)] = 23127, - [SMALL_STATE(1385)] = 23187, - [SMALL_STATE(1386)] = 23247, + [SMALL_STATE(1067)] = 3657, + [SMALL_STATE(1068)] = 3718, + [SMALL_STATE(1069)] = 3781, + [SMALL_STATE(1070)] = 3844, + [SMALL_STATE(1071)] = 3907, + [SMALL_STATE(1072)] = 3968, + [SMALL_STATE(1073)] = 4029, + [SMALL_STATE(1074)] = 4122, + [SMALL_STATE(1075)] = 4183, + [SMALL_STATE(1076)] = 4276, + [SMALL_STATE(1077)] = 4337, + [SMALL_STATE(1078)] = 4398, + [SMALL_STATE(1079)] = 4459, + [SMALL_STATE(1080)] = 4522, + [SMALL_STATE(1081)] = 4585, + [SMALL_STATE(1082)] = 4648, + [SMALL_STATE(1083)] = 4711, + [SMALL_STATE(1084)] = 4774, + [SMALL_STATE(1085)] = 4835, + [SMALL_STATE(1086)] = 4896, + [SMALL_STATE(1087)] = 4961, + [SMALL_STATE(1088)] = 5022, + [SMALL_STATE(1089)] = 5083, + [SMALL_STATE(1090)] = 5144, + [SMALL_STATE(1091)] = 5205, + [SMALL_STATE(1092)] = 5266, + [SMALL_STATE(1093)] = 5327, + [SMALL_STATE(1094)] = 5388, + [SMALL_STATE(1095)] = 5449, + [SMALL_STATE(1096)] = 5510, + [SMALL_STATE(1097)] = 5571, + [SMALL_STATE(1098)] = 5632, + [SMALL_STATE(1099)] = 5693, + [SMALL_STATE(1100)] = 5754, + [SMALL_STATE(1101)] = 5815, + [SMALL_STATE(1102)] = 5876, + [SMALL_STATE(1103)] = 5937, + [SMALL_STATE(1104)] = 5998, + [SMALL_STATE(1105)] = 6059, + [SMALL_STATE(1106)] = 6122, + [SMALL_STATE(1107)] = 6185, + [SMALL_STATE(1108)] = 6248, + [SMALL_STATE(1109)] = 6309, + [SMALL_STATE(1110)] = 6370, + [SMALL_STATE(1111)] = 6431, + [SMALL_STATE(1112)] = 6492, + [SMALL_STATE(1113)] = 6553, + [SMALL_STATE(1114)] = 6614, + [SMALL_STATE(1115)] = 6675, + [SMALL_STATE(1116)] = 6736, + [SMALL_STATE(1117)] = 6797, + [SMALL_STATE(1118)] = 6858, + [SMALL_STATE(1119)] = 6919, + [SMALL_STATE(1120)] = 6980, + [SMALL_STATE(1121)] = 7041, + [SMALL_STATE(1122)] = 7102, + [SMALL_STATE(1123)] = 7163, + [SMALL_STATE(1124)] = 7224, + [SMALL_STATE(1125)] = 7285, + [SMALL_STATE(1126)] = 7346, + [SMALL_STATE(1127)] = 7407, + [SMALL_STATE(1128)] = 7468, + [SMALL_STATE(1129)] = 7529, + [SMALL_STATE(1130)] = 7590, + [SMALL_STATE(1131)] = 7651, + [SMALL_STATE(1132)] = 7712, + [SMALL_STATE(1133)] = 7773, + [SMALL_STATE(1134)] = 7834, + [SMALL_STATE(1135)] = 7895, + [SMALL_STATE(1136)] = 7956, + [SMALL_STATE(1137)] = 8017, + [SMALL_STATE(1138)] = 8078, + [SMALL_STATE(1139)] = 8139, + [SMALL_STATE(1140)] = 8200, + [SMALL_STATE(1141)] = 8261, + [SMALL_STATE(1142)] = 8322, + [SMALL_STATE(1143)] = 8383, + [SMALL_STATE(1144)] = 8444, + [SMALL_STATE(1145)] = 8505, + [SMALL_STATE(1146)] = 8568, + [SMALL_STATE(1147)] = 8629, + [SMALL_STATE(1148)] = 8692, + [SMALL_STATE(1149)] = 8755, + [SMALL_STATE(1150)] = 8816, + [SMALL_STATE(1151)] = 8877, + [SMALL_STATE(1152)] = 8938, + [SMALL_STATE(1153)] = 8999, + [SMALL_STATE(1154)] = 9060, + [SMALL_STATE(1155)] = 9121, + [SMALL_STATE(1156)] = 9182, + [SMALL_STATE(1157)] = 9243, + [SMALL_STATE(1158)] = 9304, + [SMALL_STATE(1159)] = 9365, + [SMALL_STATE(1160)] = 9426, + [SMALL_STATE(1161)] = 9487, + [SMALL_STATE(1162)] = 9548, + [SMALL_STATE(1163)] = 9609, + [SMALL_STATE(1164)] = 9670, + [SMALL_STATE(1165)] = 9731, + [SMALL_STATE(1166)] = 9792, + [SMALL_STATE(1167)] = 9853, + [SMALL_STATE(1168)] = 9914, + [SMALL_STATE(1169)] = 9975, + [SMALL_STATE(1170)] = 10036, + [SMALL_STATE(1171)] = 10097, + [SMALL_STATE(1172)] = 10158, + [SMALL_STATE(1173)] = 10219, + [SMALL_STATE(1174)] = 10280, + [SMALL_STATE(1175)] = 10341, + [SMALL_STATE(1176)] = 10402, + [SMALL_STATE(1177)] = 10463, + [SMALL_STATE(1178)] = 10524, + [SMALL_STATE(1179)] = 10585, + [SMALL_STATE(1180)] = 10646, + [SMALL_STATE(1181)] = 10707, + [SMALL_STATE(1182)] = 10768, + [SMALL_STATE(1183)] = 10829, + [SMALL_STATE(1184)] = 10890, + [SMALL_STATE(1185)] = 10951, + [SMALL_STATE(1186)] = 11012, + [SMALL_STATE(1187)] = 11073, + [SMALL_STATE(1188)] = 11134, + [SMALL_STATE(1189)] = 11195, + [SMALL_STATE(1190)] = 11256, + [SMALL_STATE(1191)] = 11317, + [SMALL_STATE(1192)] = 11378, + [SMALL_STATE(1193)] = 11439, + [SMALL_STATE(1194)] = 11500, + [SMALL_STATE(1195)] = 11561, + [SMALL_STATE(1196)] = 11622, + [SMALL_STATE(1197)] = 11683, + [SMALL_STATE(1198)] = 11744, + [SMALL_STATE(1199)] = 11805, + [SMALL_STATE(1200)] = 11866, + [SMALL_STATE(1201)] = 11927, + [SMALL_STATE(1202)] = 11988, + [SMALL_STATE(1203)] = 12049, + [SMALL_STATE(1204)] = 12110, + [SMALL_STATE(1205)] = 12171, + [SMALL_STATE(1206)] = 12232, + [SMALL_STATE(1207)] = 12293, + [SMALL_STATE(1208)] = 12354, + [SMALL_STATE(1209)] = 12415, + [SMALL_STATE(1210)] = 12476, + [SMALL_STATE(1211)] = 12537, + [SMALL_STATE(1212)] = 12598, + [SMALL_STATE(1213)] = 12659, + [SMALL_STATE(1214)] = 12720, + [SMALL_STATE(1215)] = 12781, + [SMALL_STATE(1216)] = 12842, + [SMALL_STATE(1217)] = 12903, + [SMALL_STATE(1218)] = 12964, + [SMALL_STATE(1219)] = 13025, + [SMALL_STATE(1220)] = 13086, + [SMALL_STATE(1221)] = 13147, + [SMALL_STATE(1222)] = 13208, + [SMALL_STATE(1223)] = 13269, + [SMALL_STATE(1224)] = 13330, + [SMALL_STATE(1225)] = 13391, + [SMALL_STATE(1226)] = 13452, + [SMALL_STATE(1227)] = 13513, + [SMALL_STATE(1228)] = 13574, + [SMALL_STATE(1229)] = 13635, + [SMALL_STATE(1230)] = 13696, + [SMALL_STATE(1231)] = 13757, + [SMALL_STATE(1232)] = 13818, + [SMALL_STATE(1233)] = 13879, + [SMALL_STATE(1234)] = 13940, + [SMALL_STATE(1235)] = 14003, + [SMALL_STATE(1236)] = 14064, + [SMALL_STATE(1237)] = 14125, + [SMALL_STATE(1238)] = 14186, + [SMALL_STATE(1239)] = 14247, + [SMALL_STATE(1240)] = 14308, + [SMALL_STATE(1241)] = 14369, + [SMALL_STATE(1242)] = 14430, + [SMALL_STATE(1243)] = 14491, + [SMALL_STATE(1244)] = 14552, + [SMALL_STATE(1245)] = 14613, + [SMALL_STATE(1246)] = 14674, + [SMALL_STATE(1247)] = 14735, + [SMALL_STATE(1248)] = 14796, + [SMALL_STATE(1249)] = 14857, + [SMALL_STATE(1250)] = 14918, + [SMALL_STATE(1251)] = 14979, + [SMALL_STATE(1252)] = 15040, + [SMALL_STATE(1253)] = 15101, + [SMALL_STATE(1254)] = 15162, + [SMALL_STATE(1255)] = 15223, + [SMALL_STATE(1256)] = 15284, + [SMALL_STATE(1257)] = 15345, + [SMALL_STATE(1258)] = 15406, + [SMALL_STATE(1259)] = 15467, + [SMALL_STATE(1260)] = 15528, + [SMALL_STATE(1261)] = 15589, + [SMALL_STATE(1262)] = 15650, + [SMALL_STATE(1263)] = 15711, + [SMALL_STATE(1264)] = 15772, + [SMALL_STATE(1265)] = 15833, + [SMALL_STATE(1266)] = 15894, + [SMALL_STATE(1267)] = 15955, + [SMALL_STATE(1268)] = 16016, + [SMALL_STATE(1269)] = 16077, + [SMALL_STATE(1270)] = 16138, + [SMALL_STATE(1271)] = 16199, + [SMALL_STATE(1272)] = 16260, + [SMALL_STATE(1273)] = 16321, + [SMALL_STATE(1274)] = 16382, + [SMALL_STATE(1275)] = 16443, + [SMALL_STATE(1276)] = 16504, + [SMALL_STATE(1277)] = 16565, + [SMALL_STATE(1278)] = 16626, + [SMALL_STATE(1279)] = 16687, + [SMALL_STATE(1280)] = 16748, + [SMALL_STATE(1281)] = 16809, + [SMALL_STATE(1282)] = 16870, + [SMALL_STATE(1283)] = 16931, + [SMALL_STATE(1284)] = 16992, + [SMALL_STATE(1285)] = 17053, + [SMALL_STATE(1286)] = 17114, + [SMALL_STATE(1287)] = 17175, + [SMALL_STATE(1288)] = 17236, + [SMALL_STATE(1289)] = 17297, + [SMALL_STATE(1290)] = 17358, + [SMALL_STATE(1291)] = 17419, + [SMALL_STATE(1292)] = 17480, + [SMALL_STATE(1293)] = 17541, + [SMALL_STATE(1294)] = 17602, + [SMALL_STATE(1295)] = 17663, + [SMALL_STATE(1296)] = 17724, + [SMALL_STATE(1297)] = 17785, + [SMALL_STATE(1298)] = 17846, + [SMALL_STATE(1299)] = 17907, + [SMALL_STATE(1300)] = 17968, + [SMALL_STATE(1301)] = 18029, + [SMALL_STATE(1302)] = 18090, + [SMALL_STATE(1303)] = 18151, + [SMALL_STATE(1304)] = 18212, + [SMALL_STATE(1305)] = 18273, + [SMALL_STATE(1306)] = 18334, + [SMALL_STATE(1307)] = 18395, + [SMALL_STATE(1308)] = 18456, + [SMALL_STATE(1309)] = 18517, + [SMALL_STATE(1310)] = 18578, + [SMALL_STATE(1311)] = 18639, + [SMALL_STATE(1312)] = 18700, + [SMALL_STATE(1313)] = 18761, + [SMALL_STATE(1314)] = 18822, + [SMALL_STATE(1315)] = 18883, + [SMALL_STATE(1316)] = 18944, + [SMALL_STATE(1317)] = 19005, + [SMALL_STATE(1318)] = 19066, + [SMALL_STATE(1319)] = 19127, + [SMALL_STATE(1320)] = 19188, + [SMALL_STATE(1321)] = 19249, + [SMALL_STATE(1322)] = 19310, + [SMALL_STATE(1323)] = 19371, + [SMALL_STATE(1324)] = 19432, + [SMALL_STATE(1325)] = 19493, + [SMALL_STATE(1326)] = 19554, + [SMALL_STATE(1327)] = 19615, + [SMALL_STATE(1328)] = 19676, + [SMALL_STATE(1329)] = 19737, + [SMALL_STATE(1330)] = 19798, + [SMALL_STATE(1331)] = 19859, + [SMALL_STATE(1332)] = 19920, + [SMALL_STATE(1333)] = 19981, + [SMALL_STATE(1334)] = 20042, + [SMALL_STATE(1335)] = 20103, + [SMALL_STATE(1336)] = 20164, + [SMALL_STATE(1337)] = 20225, + [SMALL_STATE(1338)] = 20286, + [SMALL_STATE(1339)] = 20347, + [SMALL_STATE(1340)] = 20408, + [SMALL_STATE(1341)] = 20469, + [SMALL_STATE(1342)] = 20530, + [SMALL_STATE(1343)] = 20591, + [SMALL_STATE(1344)] = 20652, + [SMALL_STATE(1345)] = 20713, + [SMALL_STATE(1346)] = 20774, + [SMALL_STATE(1347)] = 20835, + [SMALL_STATE(1348)] = 20896, + [SMALL_STATE(1349)] = 20957, + [SMALL_STATE(1350)] = 21018, + [SMALL_STATE(1351)] = 21079, + [SMALL_STATE(1352)] = 21140, + [SMALL_STATE(1353)] = 21201, + [SMALL_STATE(1354)] = 21262, + [SMALL_STATE(1355)] = 21323, + [SMALL_STATE(1356)] = 21386, + [SMALL_STATE(1357)] = 21447, + [SMALL_STATE(1358)] = 21508, + [SMALL_STATE(1359)] = 21573, + [SMALL_STATE(1360)] = 21634, + [SMALL_STATE(1361)] = 21695, + [SMALL_STATE(1362)] = 21770, + [SMALL_STATE(1363)] = 21833, + [SMALL_STATE(1364)] = 21896, + [SMALL_STATE(1365)] = 21957, + [SMALL_STATE(1366)] = 22032, + [SMALL_STATE(1367)] = 22093, + [SMALL_STATE(1368)] = 22154, + [SMALL_STATE(1369)] = 22217, + [SMALL_STATE(1370)] = 22280, + [SMALL_STATE(1371)] = 22341, + [SMALL_STATE(1372)] = 22401, + [SMALL_STATE(1373)] = 22461, + [SMALL_STATE(1374)] = 22521, + [SMALL_STATE(1375)] = 22581, + [SMALL_STATE(1376)] = 22641, + [SMALL_STATE(1377)] = 22701, + [SMALL_STATE(1378)] = 22761, + [SMALL_STATE(1379)] = 22821, + [SMALL_STATE(1380)] = 22881, + [SMALL_STATE(1381)] = 22941, + [SMALL_STATE(1382)] = 23001, + [SMALL_STATE(1383)] = 23061, + [SMALL_STATE(1384)] = 23121, + [SMALL_STATE(1385)] = 23181, + [SMALL_STATE(1386)] = 23241, [SMALL_STATE(1387)] = 23307, [SMALL_STATE(1388)] = 23367, [SMALL_STATE(1389)] = 23427, @@ -190824,2733 +189633,2691 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1395)] = 23787, [SMALL_STATE(1396)] = 23847, [SMALL_STATE(1397)] = 23907, - [SMALL_STATE(1398)] = 23981, - [SMALL_STATE(1399)] = 24041, - [SMALL_STATE(1400)] = 24101, - [SMALL_STATE(1401)] = 24161, - [SMALL_STATE(1402)] = 24221, - [SMALL_STATE(1403)] = 24281, - [SMALL_STATE(1404)] = 24341, - [SMALL_STATE(1405)] = 24401, - [SMALL_STATE(1406)] = 24461, - [SMALL_STATE(1407)] = 24521, - [SMALL_STATE(1408)] = 24581, - [SMALL_STATE(1409)] = 24641, - [SMALL_STATE(1410)] = 24707, - [SMALL_STATE(1411)] = 24767, - [SMALL_STATE(1412)] = 24827, - [SMALL_STATE(1413)] = 24887, - [SMALL_STATE(1414)] = 24947, - [SMALL_STATE(1415)] = 25007, - [SMALL_STATE(1416)] = 25073, - [SMALL_STATE(1417)] = 25133, - [SMALL_STATE(1418)] = 25193, - [SMALL_STATE(1419)] = 25253, - [SMALL_STATE(1420)] = 25313, - [SMALL_STATE(1421)] = 25373, - [SMALL_STATE(1422)] = 25439, - [SMALL_STATE(1423)] = 25503, - [SMALL_STATE(1424)] = 25563, - [SMALL_STATE(1425)] = 25623, - [SMALL_STATE(1426)] = 25683, - [SMALL_STATE(1427)] = 25743, - [SMALL_STATE(1428)] = 25803, - [SMALL_STATE(1429)] = 25863, - [SMALL_STATE(1430)] = 25923, - [SMALL_STATE(1431)] = 25983, - [SMALL_STATE(1432)] = 26043, - [SMALL_STATE(1433)] = 26103, - [SMALL_STATE(1434)] = 26163, - [SMALL_STATE(1435)] = 26223, - [SMALL_STATE(1436)] = 26283, - [SMALL_STATE(1437)] = 26379, - [SMALL_STATE(1438)] = 26439, - [SMALL_STATE(1439)] = 26499, - [SMALL_STATE(1440)] = 26559, - [SMALL_STATE(1441)] = 26619, - [SMALL_STATE(1442)] = 26679, - [SMALL_STATE(1443)] = 26739, - [SMALL_STATE(1444)] = 26799, - [SMALL_STATE(1445)] = 26859, - [SMALL_STATE(1446)] = 26919, - [SMALL_STATE(1447)] = 26979, - [SMALL_STATE(1448)] = 27039, - [SMALL_STATE(1449)] = 27099, - [SMALL_STATE(1450)] = 27159, - [SMALL_STATE(1451)] = 27219, - [SMALL_STATE(1452)] = 27279, - [SMALL_STATE(1453)] = 27339, - [SMALL_STATE(1454)] = 27399, - [SMALL_STATE(1455)] = 27459, - [SMALL_STATE(1456)] = 27519, - [SMALL_STATE(1457)] = 27579, - [SMALL_STATE(1458)] = 27639, - [SMALL_STATE(1459)] = 27699, - [SMALL_STATE(1460)] = 27759, - [SMALL_STATE(1461)] = 27819, - [SMALL_STATE(1462)] = 27879, - [SMALL_STATE(1463)] = 27939, - [SMALL_STATE(1464)] = 27999, - [SMALL_STATE(1465)] = 28059, - [SMALL_STATE(1466)] = 28119, - [SMALL_STATE(1467)] = 28179, - [SMALL_STATE(1468)] = 28239, - [SMALL_STATE(1469)] = 28301, - [SMALL_STATE(1470)] = 28361, - [SMALL_STATE(1471)] = 28421, - [SMALL_STATE(1472)] = 28481, - [SMALL_STATE(1473)] = 28541, - [SMALL_STATE(1474)] = 28601, - [SMALL_STATE(1475)] = 28661, - [SMALL_STATE(1476)] = 28729, - [SMALL_STATE(1477)] = 28789, - [SMALL_STATE(1478)] = 28849, - [SMALL_STATE(1479)] = 28913, - [SMALL_STATE(1480)] = 28973, - [SMALL_STATE(1481)] = 29033, - [SMALL_STATE(1482)] = 29093, - [SMALL_STATE(1483)] = 29153, - [SMALL_STATE(1484)] = 29213, - [SMALL_STATE(1485)] = 29275, - [SMALL_STATE(1486)] = 29335, - [SMALL_STATE(1487)] = 29395, - [SMALL_STATE(1488)] = 29455, - [SMALL_STATE(1489)] = 29515, - [SMALL_STATE(1490)] = 29575, - [SMALL_STATE(1491)] = 29635, + [SMALL_STATE(1398)] = 23967, + [SMALL_STATE(1399)] = 24027, + [SMALL_STATE(1400)] = 24087, + [SMALL_STATE(1401)] = 24147, + [SMALL_STATE(1402)] = 24207, + [SMALL_STATE(1403)] = 24267, + [SMALL_STATE(1404)] = 24327, + [SMALL_STATE(1405)] = 24387, + [SMALL_STATE(1406)] = 24447, + [SMALL_STATE(1407)] = 24507, + [SMALL_STATE(1408)] = 24567, + [SMALL_STATE(1409)] = 24627, + [SMALL_STATE(1410)] = 24693, + [SMALL_STATE(1411)] = 24753, + [SMALL_STATE(1412)] = 24813, + [SMALL_STATE(1413)] = 24873, + [SMALL_STATE(1414)] = 24933, + [SMALL_STATE(1415)] = 24993, + [SMALL_STATE(1416)] = 25053, + [SMALL_STATE(1417)] = 25113, + [SMALL_STATE(1418)] = 25173, + [SMALL_STATE(1419)] = 25235, + [SMALL_STATE(1420)] = 25295, + [SMALL_STATE(1421)] = 25355, + [SMALL_STATE(1422)] = 25415, + [SMALL_STATE(1423)] = 25475, + [SMALL_STATE(1424)] = 25535, + [SMALL_STATE(1425)] = 25595, + [SMALL_STATE(1426)] = 25655, + [SMALL_STATE(1427)] = 25715, + [SMALL_STATE(1428)] = 25783, + [SMALL_STATE(1429)] = 25843, + [SMALL_STATE(1430)] = 25903, + [SMALL_STATE(1431)] = 25963, + [SMALL_STATE(1432)] = 26023, + [SMALL_STATE(1433)] = 26085, + [SMALL_STATE(1434)] = 26145, + [SMALL_STATE(1435)] = 26205, + [SMALL_STATE(1436)] = 26265, + [SMALL_STATE(1437)] = 26325, + [SMALL_STATE(1438)] = 26385, + [SMALL_STATE(1439)] = 26445, + [SMALL_STATE(1440)] = 26505, + [SMALL_STATE(1441)] = 26565, + [SMALL_STATE(1442)] = 26625, + [SMALL_STATE(1443)] = 26685, + [SMALL_STATE(1444)] = 26745, + [SMALL_STATE(1445)] = 26805, + [SMALL_STATE(1446)] = 26871, + [SMALL_STATE(1447)] = 26931, + [SMALL_STATE(1448)] = 27005, + [SMALL_STATE(1449)] = 27065, + [SMALL_STATE(1450)] = 27125, + [SMALL_STATE(1451)] = 27185, + [SMALL_STATE(1452)] = 27245, + [SMALL_STATE(1453)] = 27305, + [SMALL_STATE(1454)] = 27365, + [SMALL_STATE(1455)] = 27425, + [SMALL_STATE(1456)] = 27485, + [SMALL_STATE(1457)] = 27545, + [SMALL_STATE(1458)] = 27605, + [SMALL_STATE(1459)] = 27665, + [SMALL_STATE(1460)] = 27731, + [SMALL_STATE(1461)] = 27791, + [SMALL_STATE(1462)] = 27851, + [SMALL_STATE(1463)] = 27911, + [SMALL_STATE(1464)] = 27971, + [SMALL_STATE(1465)] = 28031, + [SMALL_STATE(1466)] = 28091, + [SMALL_STATE(1467)] = 28151, + [SMALL_STATE(1468)] = 28211, + [SMALL_STATE(1469)] = 28307, + [SMALL_STATE(1470)] = 28367, + [SMALL_STATE(1471)] = 28427, + [SMALL_STATE(1472)] = 28487, + [SMALL_STATE(1473)] = 28547, + [SMALL_STATE(1474)] = 28607, + [SMALL_STATE(1475)] = 28667, + [SMALL_STATE(1476)] = 28727, + [SMALL_STATE(1477)] = 28787, + [SMALL_STATE(1478)] = 28847, + [SMALL_STATE(1479)] = 28911, + [SMALL_STATE(1480)] = 28971, + [SMALL_STATE(1481)] = 29035, + [SMALL_STATE(1482)] = 29095, + [SMALL_STATE(1483)] = 29191, + [SMALL_STATE(1484)] = 29251, + [SMALL_STATE(1485)] = 29311, + [SMALL_STATE(1486)] = 29371, + [SMALL_STATE(1487)] = 29431, + [SMALL_STATE(1488)] = 29491, + [SMALL_STATE(1489)] = 29551, + [SMALL_STATE(1490)] = 29611, + [SMALL_STATE(1491)] = 29671, [SMALL_STATE(1492)] = 29731, [SMALL_STATE(1493)] = 29791, - [SMALL_STATE(1494)] = 29851, - [SMALL_STATE(1495)] = 29911, - [SMALL_STATE(1496)] = 29971, - [SMALL_STATE(1497)] = 30031, - [SMALL_STATE(1498)] = 30097, - [SMALL_STATE(1499)] = 30157, - [SMALL_STATE(1500)] = 30256, - [SMALL_STATE(1501)] = 30327, - [SMALL_STATE(1502)] = 30388, - [SMALL_STATE(1503)] = 30457, - [SMALL_STATE(1504)] = 30556, - [SMALL_STATE(1505)] = 30655, - [SMALL_STATE(1506)] = 30716, - [SMALL_STATE(1507)] = 30802, - [SMALL_STATE(1508)] = 30888, - [SMALL_STATE(1509)] = 30956, - [SMALL_STATE(1510)] = 31022, - [SMALL_STATE(1511)] = 31096, - [SMALL_STATE(1512)] = 31168, - [SMALL_STATE(1513)] = 31244, - [SMALL_STATE(1514)] = 31326, - [SMALL_STATE(1515)] = 31410, - [SMALL_STATE(1516)] = 31480, - [SMALL_STATE(1517)] = 31570, - [SMALL_STATE(1518)] = 31660, - [SMALL_STATE(1519)] = 31738, - [SMALL_STATE(1520)] = 31824, - [SMALL_STATE(1521)] = 31916, - [SMALL_STATE(1522)] = 31986, - [SMALL_STATE(1523)] = 32078, - [SMALL_STATE(1524)] = 32168, - [SMALL_STATE(1525)] = 32254, - [SMALL_STATE(1526)] = 32344, - [SMALL_STATE(1527)] = 32430, - [SMALL_STATE(1528)] = 32520, - [SMALL_STATE(1529)] = 32606, - [SMALL_STATE(1530)] = 32698, - [SMALL_STATE(1531)] = 32788, - [SMALL_STATE(1532)] = 32847, - [SMALL_STATE(1533)] = 32914, - [SMALL_STATE(1534)] = 32971, - [SMALL_STATE(1535)] = 33028, - [SMALL_STATE(1536)] = 33087, - [SMALL_STATE(1537)] = 33144, - [SMALL_STATE(1538)] = 33207, - [SMALL_STATE(1539)] = 33264, - [SMALL_STATE(1540)] = 33331, - [SMALL_STATE(1541)] = 33394, - [SMALL_STATE(1542)] = 33451, - [SMALL_STATE(1543)] = 33518, + [SMALL_STATE(1494)] = 29890, + [SMALL_STATE(1495)] = 29951, + [SMALL_STATE(1496)] = 30012, + [SMALL_STATE(1497)] = 30081, + [SMALL_STATE(1498)] = 30180, + [SMALL_STATE(1499)] = 30251, + [SMALL_STATE(1500)] = 30350, + [SMALL_STATE(1501)] = 30442, + [SMALL_STATE(1502)] = 30532, + [SMALL_STATE(1503)] = 30622, + [SMALL_STATE(1504)] = 30700, + [SMALL_STATE(1505)] = 30790, + [SMALL_STATE(1506)] = 30856, + [SMALL_STATE(1507)] = 30926, + [SMALL_STATE(1508)] = 31012, + [SMALL_STATE(1509)] = 31104, + [SMALL_STATE(1510)] = 31194, + [SMALL_STATE(1511)] = 31280, + [SMALL_STATE(1512)] = 31370, + [SMALL_STATE(1513)] = 31440, + [SMALL_STATE(1514)] = 31508, + [SMALL_STATE(1515)] = 31600, + [SMALL_STATE(1516)] = 31686, + [SMALL_STATE(1517)] = 31772, + [SMALL_STATE(1518)] = 31846, + [SMALL_STATE(1519)] = 31932, + [SMALL_STATE(1520)] = 32004, + [SMALL_STATE(1521)] = 32094, + [SMALL_STATE(1522)] = 32180, + [SMALL_STATE(1523)] = 32256, + [SMALL_STATE(1524)] = 32338, + [SMALL_STATE(1525)] = 32422, + [SMALL_STATE(1526)] = 32487, + [SMALL_STATE(1527)] = 32550, + [SMALL_STATE(1528)] = 32617, + [SMALL_STATE(1529)] = 32674, + [SMALL_STATE(1530)] = 32731, + [SMALL_STATE(1531)] = 32798, + [SMALL_STATE(1532)] = 32855, + [SMALL_STATE(1533)] = 32922, + [SMALL_STATE(1534)] = 32985, + [SMALL_STATE(1535)] = 33044, + [SMALL_STATE(1536)] = 33103, + [SMALL_STATE(1537)] = 33167, + [SMALL_STATE(1538)] = 33225, + [SMALL_STATE(1539)] = 33283, + [SMALL_STATE(1540)] = 33347, + [SMALL_STATE(1541)] = 33403, + [SMALL_STATE(1542)] = 33467, + [SMALL_STATE(1543)] = 33525, [SMALL_STATE(1544)] = 33583, - [SMALL_STATE(1545)] = 33641, - [SMALL_STATE(1546)] = 33701, - [SMALL_STATE(1547)] = 33759, - [SMALL_STATE(1548)] = 33817, - [SMALL_STATE(1549)] = 33873, - [SMALL_STATE(1550)] = 33933, + [SMALL_STATE(1545)] = 33643, + [SMALL_STATE(1546)] = 33703, + [SMALL_STATE(1547)] = 33763, + [SMALL_STATE(1548)] = 33819, + [SMALL_STATE(1549)] = 33875, + [SMALL_STATE(1550)] = 33931, [SMALL_STATE(1551)] = 33991, [SMALL_STATE(1552)] = 34055, [SMALL_STATE(1553)] = 34115, - [SMALL_STATE(1554)] = 34171, + [SMALL_STATE(1554)] = 34175, [SMALL_STATE(1555)] = 34235, - [SMALL_STATE(1556)] = 34291, - [SMALL_STATE(1557)] = 34355, - [SMALL_STATE(1558)] = 34419, - [SMALL_STATE(1559)] = 34479, - [SMALL_STATE(1560)] = 34539, - [SMALL_STATE(1561)] = 34595, - [SMALL_STATE(1562)] = 34655, - [SMALL_STATE(1563)] = 34715, - [SMALL_STATE(1564)] = 34810, - [SMALL_STATE(1565)] = 34905, - [SMALL_STATE(1566)] = 34962, - [SMALL_STATE(1567)] = 35057, - [SMALL_STATE(1568)] = 35112, - [SMALL_STATE(1569)] = 35169, - [SMALL_STATE(1570)] = 35224, - [SMALL_STATE(1571)] = 35283, - [SMALL_STATE(1572)] = 35378, - [SMALL_STATE(1573)] = 35437, - [SMALL_STATE(1574)] = 35494, - [SMALL_STATE(1575)] = 35553, - [SMALL_STATE(1576)] = 35648, - [SMALL_STATE(1577)] = 35707, - [SMALL_STATE(1578)] = 35762, - [SMALL_STATE(1579)] = 35851, - [SMALL_STATE(1580)] = 35908, - [SMALL_STATE(1581)] = 35963, - [SMALL_STATE(1582)] = 36058, - [SMALL_STATE(1583)] = 36153, - [SMALL_STATE(1584)] = 36248, - [SMALL_STATE(1585)] = 36343, - [SMALL_STATE(1586)] = 36398, - [SMALL_STATE(1587)] = 36455, - [SMALL_STATE(1588)] = 36512, - [SMALL_STATE(1589)] = 36601, - [SMALL_STATE(1590)] = 36656, - [SMALL_STATE(1591)] = 36751, - [SMALL_STATE(1592)] = 36806, - [SMALL_STATE(1593)] = 36863, - [SMALL_STATE(1594)] = 36918, - [SMALL_STATE(1595)] = 37013, - [SMALL_STATE(1596)] = 37102, - [SMALL_STATE(1597)] = 37197, - [SMALL_STATE(1598)] = 37251, - [SMALL_STATE(1599)] = 37343, - [SMALL_STATE(1600)] = 37399, - [SMALL_STATE(1601)] = 37491, - [SMALL_STATE(1602)] = 37545, - [SMALL_STATE(1603)] = 37601, - [SMALL_STATE(1604)] = 37681, - [SMALL_STATE(1605)] = 37773, - [SMALL_STATE(1606)] = 37861, - [SMALL_STATE(1607)] = 37917, - [SMALL_STATE(1608)] = 37973, - [SMALL_STATE(1609)] = 38029, - [SMALL_STATE(1610)] = 38085, - [SMALL_STATE(1611)] = 38143, - [SMALL_STATE(1612)] = 38199, - [SMALL_STATE(1613)] = 38281, - [SMALL_STATE(1614)] = 38367, - [SMALL_STATE(1615)] = 38423, - [SMALL_STATE(1616)] = 38515, - [SMALL_STATE(1617)] = 38601, - [SMALL_STATE(1618)] = 38665, - [SMALL_STATE(1619)] = 38751, - [SMALL_STATE(1620)] = 38805, - [SMALL_STATE(1621)] = 38875, - [SMALL_STATE(1622)] = 38967, - [SMALL_STATE(1623)] = 39021, - [SMALL_STATE(1624)] = 39075, - [SMALL_STATE(1625)] = 39143, - [SMALL_STATE(1626)] = 39197, - [SMALL_STATE(1627)] = 39289, - [SMALL_STATE(1628)] = 39361, - [SMALL_STATE(1629)] = 39415, - [SMALL_STATE(1630)] = 39497, - [SMALL_STATE(1631)] = 39553, - [SMALL_STATE(1632)] = 39641, - [SMALL_STATE(1633)] = 39695, - [SMALL_STATE(1634)] = 39783, - [SMALL_STATE(1635)] = 39837, - [SMALL_STATE(1636)] = 39891, - [SMALL_STATE(1637)] = 39945, - [SMALL_STATE(1638)] = 40031, - [SMALL_STATE(1639)] = 40087, - [SMALL_STATE(1640)] = 40141, - [SMALL_STATE(1641)] = 40195, - [SMALL_STATE(1642)] = 40251, - [SMALL_STATE(1643)] = 40307, - [SMALL_STATE(1644)] = 40361, - [SMALL_STATE(1645)] = 40415, - [SMALL_STATE(1646)] = 40471, - [SMALL_STATE(1647)] = 40527, - [SMALL_STATE(1648)] = 40583, - [SMALL_STATE(1649)] = 40671, - [SMALL_STATE(1650)] = 40749, - [SMALL_STATE(1651)] = 40829, - [SMALL_STATE(1652)] = 40917, - [SMALL_STATE(1653)] = 40983, - [SMALL_STATE(1654)] = 41069, - [SMALL_STATE(1655)] = 41123, - [SMALL_STATE(1656)] = 41209, - [SMALL_STATE(1657)] = 41283, - [SMALL_STATE(1658)] = 41339, - [SMALL_STATE(1659)] = 41392, - [SMALL_STATE(1660)] = 41481, - [SMALL_STATE(1661)] = 41534, - [SMALL_STATE(1662)] = 41597, - [SMALL_STATE(1663)] = 41666, - [SMALL_STATE(1664)] = 41719, - [SMALL_STATE(1665)] = 41772, - [SMALL_STATE(1666)] = 41861, - [SMALL_STATE(1667)] = 41928, - [SMALL_STATE(1668)] = 42017, - [SMALL_STATE(1669)] = 42106, - [SMALL_STATE(1670)] = 42195, - [SMALL_STATE(1671)] = 42284, - [SMALL_STATE(1672)] = 42355, - [SMALL_STATE(1673)] = 42432, - [SMALL_STATE(1674)] = 42511, - [SMALL_STATE(1675)] = 42576, - [SMALL_STATE(1676)] = 42661, - [SMALL_STATE(1677)] = 42742, - [SMALL_STATE(1678)] = 42827, - [SMALL_STATE(1679)] = 42916, - [SMALL_STATE(1680)] = 43001, - [SMALL_STATE(1681)] = 43086, - [SMALL_STATE(1682)] = 43175, - [SMALL_STATE(1683)] = 43228, - [SMALL_STATE(1684)] = 43313, - [SMALL_STATE(1685)] = 43386, - [SMALL_STATE(1686)] = 43439, - [SMALL_STATE(1687)] = 43520, - [SMALL_STATE(1688)] = 43579, - [SMALL_STATE(1689)] = 43666, - [SMALL_STATE(1690)] = 43725, - [SMALL_STATE(1691)] = 43814, - [SMALL_STATE(1692)] = 43867, - [SMALL_STATE(1693)] = 43954, - [SMALL_STATE(1694)] = 44007, - [SMALL_STATE(1695)] = 44060, - [SMALL_STATE(1696)] = 44113, - [SMALL_STATE(1697)] = 44202, - [SMALL_STATE(1698)] = 44291, - [SMALL_STATE(1699)] = 44344, - [SMALL_STATE(1700)] = 44397, - [SMALL_STATE(1701)] = 44484, - [SMALL_STATE(1702)] = 44537, - [SMALL_STATE(1703)] = 44626, - [SMALL_STATE(1704)] = 44713, - [SMALL_STATE(1705)] = 44766, - [SMALL_STATE(1706)] = 44855, - [SMALL_STATE(1707)] = 44936, - [SMALL_STATE(1708)] = 44989, - [SMALL_STATE(1709)] = 45078, - [SMALL_STATE(1710)] = 45167, - [SMALL_STATE(1711)] = 45220, - [SMALL_STATE(1712)] = 45309, - [SMALL_STATE(1713)] = 45398, - [SMALL_STATE(1714)] = 45451, - [SMALL_STATE(1715)] = 45536, - [SMALL_STATE(1716)] = 45589, - [SMALL_STATE(1717)] = 45674, - [SMALL_STATE(1718)] = 45727, - [SMALL_STATE(1719)] = 45780, - [SMALL_STATE(1720)] = 45833, - [SMALL_STATE(1721)] = 45886, - [SMALL_STATE(1722)] = 45939, - [SMALL_STATE(1723)] = 46028, - [SMALL_STATE(1724)] = 46081, - [SMALL_STATE(1725)] = 46134, - [SMALL_STATE(1726)] = 46223, - [SMALL_STATE(1727)] = 46284, - [SMALL_STATE(1728)] = 46337, - [SMALL_STATE(1729)] = 46390, - [SMALL_STATE(1730)] = 46443, - [SMALL_STATE(1731)] = 46532, - [SMALL_STATE(1732)] = 46585, - [SMALL_STATE(1733)] = 46674, - [SMALL_STATE(1734)] = 46727, - [SMALL_STATE(1735)] = 46812, - [SMALL_STATE(1736)] = 46865, - [SMALL_STATE(1737)] = 46918, - [SMALL_STATE(1738)] = 47005, - [SMALL_STATE(1739)] = 47094, - [SMALL_STATE(1740)] = 47147, - [SMALL_STATE(1741)] = 47236, - [SMALL_STATE(1742)] = 47289, - [SMALL_STATE(1743)] = 47378, - [SMALL_STATE(1744)] = 47431, - [SMALL_STATE(1745)] = 47520, - [SMALL_STATE(1746)] = 47573, - [SMALL_STATE(1747)] = 47662, - [SMALL_STATE(1748)] = 47715, - [SMALL_STATE(1749)] = 47804, - [SMALL_STATE(1750)] = 47857, - [SMALL_STATE(1751)] = 47910, - [SMALL_STATE(1752)] = 47963, - [SMALL_STATE(1753)] = 48050, - [SMALL_STATE(1754)] = 48103, - [SMALL_STATE(1755)] = 48192, - [SMALL_STATE(1756)] = 48281, - [SMALL_STATE(1757)] = 48370, - [SMALL_STATE(1758)] = 48423, - [SMALL_STATE(1759)] = 48512, - [SMALL_STATE(1760)] = 48565, - [SMALL_STATE(1761)] = 48654, - [SMALL_STATE(1762)] = 48741, - [SMALL_STATE(1763)] = 48830, - [SMALL_STATE(1764)] = 48907, - [SMALL_STATE(1765)] = 48996, - [SMALL_STATE(1766)] = 49049, - [SMALL_STATE(1767)] = 49136, - [SMALL_STATE(1768)] = 49221, - [SMALL_STATE(1769)] = 49274, - [SMALL_STATE(1770)] = 49327, - [SMALL_STATE(1771)] = 49380, - [SMALL_STATE(1772)] = 49433, - [SMALL_STATE(1773)] = 49486, - [SMALL_STATE(1774)] = 49575, - [SMALL_STATE(1775)] = 49628, - [SMALL_STATE(1776)] = 49715, - [SMALL_STATE(1777)] = 49804, - [SMALL_STATE(1778)] = 49893, - [SMALL_STATE(1779)] = 49946, - [SMALL_STATE(1780)] = 49999, - [SMALL_STATE(1781)] = 50052, - [SMALL_STATE(1782)] = 50105, - [SMALL_STATE(1783)] = 50190, - [SMALL_STATE(1784)] = 50243, - [SMALL_STATE(1785)] = 50296, - [SMALL_STATE(1786)] = 50385, - [SMALL_STATE(1787)] = 50462, - [SMALL_STATE(1788)] = 50515, - [SMALL_STATE(1789)] = 50604, - [SMALL_STATE(1790)] = 50657, - [SMALL_STATE(1791)] = 50710, - [SMALL_STATE(1792)] = 50763, - [SMALL_STATE(1793)] = 50816, - [SMALL_STATE(1794)] = 50905, - [SMALL_STATE(1795)] = 50992, - [SMALL_STATE(1796)] = 51045, - [SMALL_STATE(1797)] = 51134, - [SMALL_STATE(1798)] = 51187, - [SMALL_STATE(1799)] = 51240, - [SMALL_STATE(1800)] = 51329, - [SMALL_STATE(1801)] = 51382, - [SMALL_STATE(1802)] = 51435, - [SMALL_STATE(1803)] = 51522, - [SMALL_STATE(1804)] = 51575, - [SMALL_STATE(1805)] = 51628, - [SMALL_STATE(1806)] = 51681, - [SMALL_STATE(1807)] = 51734, - [SMALL_STATE(1808)] = 51823, - [SMALL_STATE(1809)] = 51910, - [SMALL_STATE(1810)] = 51999, - [SMALL_STATE(1811)] = 52052, - [SMALL_STATE(1812)] = 52105, - [SMALL_STATE(1813)] = 52158, - [SMALL_STATE(1814)] = 52243, - [SMALL_STATE(1815)] = 52330, - [SMALL_STATE(1816)] = 52415, - [SMALL_STATE(1817)] = 52468, - [SMALL_STATE(1818)] = 52521, - [SMALL_STATE(1819)] = 52574, - [SMALL_STATE(1820)] = 52661, - [SMALL_STATE(1821)] = 52748, - [SMALL_STATE(1822)] = 52835, - [SMALL_STATE(1823)] = 52888, - [SMALL_STATE(1824)] = 52941, - [SMALL_STATE(1825)] = 52994, - [SMALL_STATE(1826)] = 53047, - [SMALL_STATE(1827)] = 53100, - [SMALL_STATE(1828)] = 53187, - [SMALL_STATE(1829)] = 53240, - [SMALL_STATE(1830)] = 53293, - [SMALL_STATE(1831)] = 53382, - [SMALL_STATE(1832)] = 53469, - [SMALL_STATE(1833)] = 53532, - [SMALL_STATE(1834)] = 53585, - [SMALL_STATE(1835)] = 53654, - [SMALL_STATE(1836)] = 53721, - [SMALL_STATE(1837)] = 53774, - [SMALL_STATE(1838)] = 53845, - [SMALL_STATE(1839)] = 53922, - [SMALL_STATE(1840)] = 53975, - [SMALL_STATE(1841)] = 54028, - [SMALL_STATE(1842)] = 54107, - [SMALL_STATE(1843)] = 54160, - [SMALL_STATE(1844)] = 54225, - [SMALL_STATE(1845)] = 54278, - [SMALL_STATE(1846)] = 54331, - [SMALL_STATE(1847)] = 54390, - [SMALL_STATE(1848)] = 54475, - [SMALL_STATE(1849)] = 54564, - [SMALL_STATE(1850)] = 54649, - [SMALL_STATE(1851)] = 54702, - [SMALL_STATE(1852)] = 54755, - [SMALL_STATE(1853)] = 54828, - [SMALL_STATE(1854)] = 54909, - [SMALL_STATE(1855)] = 54968, - [SMALL_STATE(1856)] = 55057, - [SMALL_STATE(1857)] = 55110, - [SMALL_STATE(1858)] = 55163, - [SMALL_STATE(1859)] = 55252, - [SMALL_STATE(1860)] = 55305, - [SMALL_STATE(1861)] = 55392, - [SMALL_STATE(1862)] = 55445, - [SMALL_STATE(1863)] = 55534, - [SMALL_STATE(1864)] = 55587, - [SMALL_STATE(1865)] = 55640, - [SMALL_STATE(1866)] = 55693, - [SMALL_STATE(1867)] = 55782, - [SMALL_STATE(1868)] = 55835, - [SMALL_STATE(1869)] = 55909, - [SMALL_STATE(1870)] = 55995, - [SMALL_STATE(1871)] = 56079, - [SMALL_STATE(1872)] = 56165, - [SMALL_STATE(1873)] = 56251, - [SMALL_STATE(1874)] = 56337, - [SMALL_STATE(1875)] = 56421, - [SMALL_STATE(1876)] = 56507, - [SMALL_STATE(1877)] = 56593, - [SMALL_STATE(1878)] = 56679, - [SMALL_STATE(1879)] = 56765, - [SMALL_STATE(1880)] = 56839, - [SMALL_STATE(1881)] = 56913, - [SMALL_STATE(1882)] = 56999, - [SMALL_STATE(1883)] = 57085, - [SMALL_STATE(1884)] = 57171, - [SMALL_STATE(1885)] = 57257, - [SMALL_STATE(1886)] = 57343, - [SMALL_STATE(1887)] = 57429, - [SMALL_STATE(1888)] = 57515, - [SMALL_STATE(1889)] = 57601, - [SMALL_STATE(1890)] = 57687, - [SMALL_STATE(1891)] = 57773, - [SMALL_STATE(1892)] = 57859, - [SMALL_STATE(1893)] = 57945, - [SMALL_STATE(1894)] = 58031, - [SMALL_STATE(1895)] = 58117, - [SMALL_STATE(1896)] = 58203, - [SMALL_STATE(1897)] = 58289, - [SMALL_STATE(1898)] = 58375, - [SMALL_STATE(1899)] = 58461, - [SMALL_STATE(1900)] = 58547, - [SMALL_STATE(1901)] = 58621, - [SMALL_STATE(1902)] = 58695, - [SMALL_STATE(1903)] = 58781, - [SMALL_STATE(1904)] = 58867, - [SMALL_STATE(1905)] = 58953, - [SMALL_STATE(1906)] = 59028, - [SMALL_STATE(1907)] = 59103, - [SMALL_STATE(1908)] = 59178, - [SMALL_STATE(1909)] = 59253, - [SMALL_STATE(1910)] = 59328, - [SMALL_STATE(1911)] = 59403, - [SMALL_STATE(1912)] = 59478, - [SMALL_STATE(1913)] = 59553, - [SMALL_STATE(1914)] = 59600, - [SMALL_STATE(1915)] = 59647, - [SMALL_STATE(1916)] = 59694, - [SMALL_STATE(1917)] = 59756, - [SMALL_STATE(1918)] = 59818, - [SMALL_STATE(1919)] = 59880, - [SMALL_STATE(1920)] = 59942, - [SMALL_STATE(1921)] = 60004, - [SMALL_STATE(1922)] = 60066, - [SMALL_STATE(1923)] = 60128, - [SMALL_STATE(1924)] = 60190, - [SMALL_STATE(1925)] = 60249, - [SMALL_STATE(1926)] = 60308, - [SMALL_STATE(1927)] = 60356, - [SMALL_STATE(1928)] = 60392, - [SMALL_STATE(1929)] = 60428, - [SMALL_STATE(1930)] = 60465, - [SMALL_STATE(1931)] = 60510, - [SMALL_STATE(1932)] = 60547, - [SMALL_STATE(1933)] = 60584, - [SMALL_STATE(1934)] = 60629, - [SMALL_STATE(1935)] = 60682, - [SMALL_STATE(1936)] = 60719, - [SMALL_STATE(1937)] = 60764, - [SMALL_STATE(1938)] = 60804, - [SMALL_STATE(1939)] = 60840, - [SMALL_STATE(1940)] = 60880, - [SMALL_STATE(1941)] = 60914, - [SMALL_STATE(1942)] = 60950, - [SMALL_STATE(1943)] = 60984, - [SMALL_STATE(1944)] = 61020, - [SMALL_STATE(1945)] = 61054, - [SMALL_STATE(1946)] = 61090, - [SMALL_STATE(1947)] = 61130, - [SMALL_STATE(1948)] = 61164, - [SMALL_STATE(1949)] = 61204, - [SMALL_STATE(1950)] = 61237, - [SMALL_STATE(1951)] = 61270, - [SMALL_STATE(1952)] = 61301, - [SMALL_STATE(1953)] = 61334, - [SMALL_STATE(1954)] = 61367, - [SMALL_STATE(1955)] = 61413, - [SMALL_STATE(1956)] = 61445, - [SMALL_STATE(1957)] = 61477, - [SMALL_STATE(1958)] = 61537, - [SMALL_STATE(1959)] = 61569, - [SMALL_STATE(1960)] = 61629, - [SMALL_STATE(1961)] = 61673, - [SMALL_STATE(1962)] = 61702, - [SMALL_STATE(1963)] = 61735, - [SMALL_STATE(1964)] = 61766, - [SMALL_STATE(1965)] = 61795, - [SMALL_STATE(1966)] = 61824, - [SMALL_STATE(1967)] = 61877, - [SMALL_STATE(1968)] = 61906, - [SMALL_STATE(1969)] = 61935, - [SMALL_STATE(1970)] = 61964, - [SMALL_STATE(1971)] = 61993, - [SMALL_STATE(1972)] = 62026, - [SMALL_STATE(1973)] = 62059, - [SMALL_STATE(1974)] = 62112, - [SMALL_STATE(1975)] = 62143, - [SMALL_STATE(1976)] = 62174, - [SMALL_STATE(1977)] = 62205, - [SMALL_STATE(1978)] = 62236, - [SMALL_STATE(1979)] = 62267, - [SMALL_STATE(1980)] = 62300, - [SMALL_STATE(1981)] = 62331, - [SMALL_STATE(1982)] = 62372, - [SMALL_STATE(1983)] = 62405, - [SMALL_STATE(1984)] = 62438, - [SMALL_STATE(1985)] = 62493, - [SMALL_STATE(1986)] = 62536, - [SMALL_STATE(1987)] = 62567, - [SMALL_STATE(1988)] = 62596, - [SMALL_STATE(1989)] = 62625, - [SMALL_STATE(1990)] = 62655, - [SMALL_STATE(1991)] = 62683, - [SMALL_STATE(1992)] = 62711, - [SMALL_STATE(1993)] = 62739, - [SMALL_STATE(1994)] = 62767, - [SMALL_STATE(1995)] = 62795, - [SMALL_STATE(1996)] = 62823, - [SMALL_STATE(1997)] = 62867, - [SMALL_STATE(1998)] = 62895, - [SMALL_STATE(1999)] = 62925, - [SMALL_STATE(2000)] = 62953, - [SMALL_STATE(2001)] = 62981, - [SMALL_STATE(2002)] = 63009, - [SMALL_STATE(2003)] = 63037, - [SMALL_STATE(2004)] = 63065, - [SMALL_STATE(2005)] = 63093, - [SMALL_STATE(2006)] = 63121, - [SMALL_STATE(2007)] = 63149, - [SMALL_STATE(2008)] = 63177, - [SMALL_STATE(2009)] = 63205, - [SMALL_STATE(2010)] = 63233, - [SMALL_STATE(2011)] = 63261, - [SMALL_STATE(2012)] = 63289, - [SMALL_STATE(2013)] = 63317, - [SMALL_STATE(2014)] = 63345, - [SMALL_STATE(2015)] = 63373, - [SMALL_STATE(2016)] = 63401, - [SMALL_STATE(2017)] = 63429, - [SMALL_STATE(2018)] = 63457, - [SMALL_STATE(2019)] = 63485, - [SMALL_STATE(2020)] = 63513, - [SMALL_STATE(2021)] = 63541, - [SMALL_STATE(2022)] = 63570, - [SMALL_STATE(2023)] = 63601, - [SMALL_STATE(2024)] = 63630, - [SMALL_STATE(2025)] = 63665, - [SMALL_STATE(2026)] = 63716, - [SMALL_STATE(2027)] = 63748, - [SMALL_STATE(2028)] = 63776, - [SMALL_STATE(2029)] = 63808, - [SMALL_STATE(2030)] = 63840, - [SMALL_STATE(2031)] = 63870, - [SMALL_STATE(2032)] = 63914, - [SMALL_STATE(2033)] = 63946, - [SMALL_STATE(2034)] = 63978, - [SMALL_STATE(2035)] = 64010, - [SMALL_STATE(2036)] = 64042, - [SMALL_STATE(2037)] = 64070, - [SMALL_STATE(2038)] = 64102, - [SMALL_STATE(2039)] = 64134, - [SMALL_STATE(2040)] = 64166, - [SMALL_STATE(2041)] = 64198, - [SMALL_STATE(2042)] = 64230, - [SMALL_STATE(2043)] = 64259, - [SMALL_STATE(2044)] = 64304, - [SMALL_STATE(2045)] = 64349, - [SMALL_STATE(2046)] = 64394, - [SMALL_STATE(2047)] = 64439, - [SMALL_STATE(2048)] = 64484, - [SMALL_STATE(2049)] = 64529, - [SMALL_STATE(2050)] = 64574, - [SMALL_STATE(2051)] = 64603, - [SMALL_STATE(2052)] = 64640, - [SMALL_STATE(2053)] = 64685, - [SMALL_STATE(2054)] = 64730, - [SMALL_STATE(2055)] = 64775, - [SMALL_STATE(2056)] = 64820, - [SMALL_STATE(2057)] = 64865, - [SMALL_STATE(2058)] = 64910, - [SMALL_STATE(2059)] = 64955, - [SMALL_STATE(2060)] = 65000, - [SMALL_STATE(2061)] = 65038, - [SMALL_STATE(2062)] = 65078, - [SMALL_STATE(2063)] = 65118, - [SMALL_STATE(2064)] = 65160, - [SMALL_STATE(2065)] = 65184, - [SMALL_STATE(2066)] = 65218, - [SMALL_STATE(2067)] = 65260, - [SMALL_STATE(2068)] = 65294, - [SMALL_STATE(2069)] = 65322, - [SMALL_STATE(2070)] = 65350, - [SMALL_STATE(2071)] = 65378, - [SMALL_STATE(2072)] = 65406, - [SMALL_STATE(2073)] = 65448, - [SMALL_STATE(2074)] = 65490, - [SMALL_STATE(2075)] = 65530, - [SMALL_STATE(2076)] = 65554, - [SMALL_STATE(2077)] = 65596, - [SMALL_STATE(2078)] = 65620, - [SMALL_STATE(2079)] = 65658, - [SMALL_STATE(2080)] = 65688, - [SMALL_STATE(2081)] = 65716, - [SMALL_STATE(2082)] = 65744, - [SMALL_STATE(2083)] = 65772, - [SMALL_STATE(2084)] = 65800, - [SMALL_STATE(2085)] = 65838, - [SMALL_STATE(2086)] = 65866, - [SMALL_STATE(2087)] = 65908, - [SMALL_STATE(2088)] = 65950, - [SMALL_STATE(2089)] = 65988, - [SMALL_STATE(2090)] = 66026, - [SMALL_STATE(2091)] = 66064, - [SMALL_STATE(2092)] = 66088, - [SMALL_STATE(2093)] = 66118, - [SMALL_STATE(2094)] = 66156, - [SMALL_STATE(2095)] = 66186, - [SMALL_STATE(2096)] = 66224, - [SMALL_STATE(2097)] = 66262, - [SMALL_STATE(2098)] = 66290, - [SMALL_STATE(2099)] = 66318, - [SMALL_STATE(2100)] = 66342, - [SMALL_STATE(2101)] = 66370, - [SMALL_STATE(2102)] = 66400, - [SMALL_STATE(2103)] = 66433, - [SMALL_STATE(2104)] = 66456, - [SMALL_STATE(2105)] = 66479, - [SMALL_STATE(2106)] = 66502, - [SMALL_STATE(2107)] = 66525, - [SMALL_STATE(2108)] = 66548, - [SMALL_STATE(2109)] = 66589, - [SMALL_STATE(2110)] = 66620, - [SMALL_STATE(2111)] = 66661, - [SMALL_STATE(2112)] = 66684, - [SMALL_STATE(2113)] = 66719, - [SMALL_STATE(2114)] = 66742, - [SMALL_STATE(2115)] = 66765, - [SMALL_STATE(2116)] = 66788, - [SMALL_STATE(2117)] = 66811, - [SMALL_STATE(2118)] = 66834, - [SMALL_STATE(2119)] = 66857, - [SMALL_STATE(2120)] = 66880, - [SMALL_STATE(2121)] = 66903, - [SMALL_STATE(2122)] = 66944, - [SMALL_STATE(2123)] = 66967, - [SMALL_STATE(2124)] = 67004, - [SMALL_STATE(2125)] = 67027, - [SMALL_STATE(2126)] = 67050, - [SMALL_STATE(2127)] = 67073, - [SMALL_STATE(2128)] = 67104, - [SMALL_STATE(2129)] = 67127, - [SMALL_STATE(2130)] = 67150, - [SMALL_STATE(2131)] = 67187, - [SMALL_STATE(2132)] = 67210, - [SMALL_STATE(2133)] = 67233, - [SMALL_STATE(2134)] = 67270, - [SMALL_STATE(2135)] = 67293, - [SMALL_STATE(2136)] = 67316, - [SMALL_STATE(2137)] = 67351, - [SMALL_STATE(2138)] = 67374, - [SMALL_STATE(2139)] = 67397, - [SMALL_STATE(2140)] = 67420, - [SMALL_STATE(2141)] = 67455, - [SMALL_STATE(2142)] = 67478, - [SMALL_STATE(2143)] = 67501, - [SMALL_STATE(2144)] = 67524, - [SMALL_STATE(2145)] = 67547, - [SMALL_STATE(2146)] = 67588, - [SMALL_STATE(2147)] = 67611, - [SMALL_STATE(2148)] = 67634, - [SMALL_STATE(2149)] = 67665, - [SMALL_STATE(2150)] = 67688, - [SMALL_STATE(2151)] = 67711, - [SMALL_STATE(2152)] = 67748, - [SMALL_STATE(2153)] = 67779, - [SMALL_STATE(2154)] = 67802, - [SMALL_STATE(2155)] = 67840, - [SMALL_STATE(2156)] = 67878, - [SMALL_STATE(2157)] = 67906, - [SMALL_STATE(2158)] = 67944, - [SMALL_STATE(2159)] = 67982, - [SMALL_STATE(2160)] = 68020, - [SMALL_STATE(2161)] = 68058, - [SMALL_STATE(2162)] = 68090, - [SMALL_STATE(2163)] = 68114, - [SMALL_STATE(2164)] = 68146, - [SMALL_STATE(2165)] = 68184, - [SMALL_STATE(2166)] = 68216, - [SMALL_STATE(2167)] = 68244, - [SMALL_STATE(2168)] = 68276, - [SMALL_STATE(2169)] = 68300, - [SMALL_STATE(2170)] = 68334, - [SMALL_STATE(2171)] = 68372, - [SMALL_STATE(2172)] = 68410, - [SMALL_STATE(2173)] = 68448, - [SMALL_STATE(2174)] = 68476, - [SMALL_STATE(2175)] = 68500, - [SMALL_STATE(2176)] = 68524, - [SMALL_STATE(2177)] = 68552, - [SMALL_STATE(2178)] = 68590, - [SMALL_STATE(2179)] = 68628, - [SMALL_STATE(2180)] = 68660, - [SMALL_STATE(2181)] = 68698, - [SMALL_STATE(2182)] = 68724, - [SMALL_STATE(2183)] = 68762, - [SMALL_STATE(2184)] = 68794, - [SMALL_STATE(2185)] = 68826, - [SMALL_STATE(2186)] = 68852, - [SMALL_STATE(2187)] = 68884, - [SMALL_STATE(2188)] = 68912, - [SMALL_STATE(2189)] = 68938, - [SMALL_STATE(2190)] = 68970, - [SMALL_STATE(2191)] = 69006, - [SMALL_STATE(2192)] = 69038, - [SMALL_STATE(2193)] = 69064, - [SMALL_STATE(2194)] = 69096, - [SMALL_STATE(2195)] = 69134, - [SMALL_STATE(2196)] = 69166, - [SMALL_STATE(2197)] = 69200, - [SMALL_STATE(2198)] = 69238, - [SMALL_STATE(2199)] = 69266, - [SMALL_STATE(2200)] = 69294, - [SMALL_STATE(2201)] = 69326, - [SMALL_STATE(2202)] = 69350, - [SMALL_STATE(2203)] = 69385, - [SMALL_STATE(2204)] = 69420, - [SMALL_STATE(2205)] = 69455, - [SMALL_STATE(2206)] = 69490, - [SMALL_STATE(2207)] = 69525, - [SMALL_STATE(2208)] = 69560, - [SMALL_STATE(2209)] = 69595, - [SMALL_STATE(2210)] = 69630, - [SMALL_STATE(2211)] = 69665, - [SMALL_STATE(2212)] = 69700, - [SMALL_STATE(2213)] = 69733, - [SMALL_STATE(2214)] = 69766, - [SMALL_STATE(2215)] = 69801, - [SMALL_STATE(2216)] = 69836, - [SMALL_STATE(2217)] = 69871, - [SMALL_STATE(2218)] = 69906, - [SMALL_STATE(2219)] = 69931, - [SMALL_STATE(2220)] = 69966, - [SMALL_STATE(2221)] = 69991, - [SMALL_STATE(2222)] = 70026, - [SMALL_STATE(2223)] = 70061, - [SMALL_STATE(2224)] = 70088, - [SMALL_STATE(2225)] = 70123, - [SMALL_STATE(2226)] = 70158, - [SMALL_STATE(2227)] = 70193, - [SMALL_STATE(2228)] = 70228, - [SMALL_STATE(2229)] = 70263, - [SMALL_STATE(2230)] = 70298, - [SMALL_STATE(2231)] = 70333, - [SMALL_STATE(2232)] = 70368, - [SMALL_STATE(2233)] = 70403, - [SMALL_STATE(2234)] = 70438, - [SMALL_STATE(2235)] = 70473, - [SMALL_STATE(2236)] = 70508, - [SMALL_STATE(2237)] = 70543, - [SMALL_STATE(2238)] = 70578, - [SMALL_STATE(2239)] = 70599, - [SMALL_STATE(2240)] = 70634, - [SMALL_STATE(2241)] = 70669, - [SMALL_STATE(2242)] = 70704, - [SMALL_STATE(2243)] = 70739, - [SMALL_STATE(2244)] = 70772, - [SMALL_STATE(2245)] = 70793, - [SMALL_STATE(2246)] = 70814, - [SMALL_STATE(2247)] = 70835, - [SMALL_STATE(2248)] = 70856, - [SMALL_STATE(2249)] = 70877, - [SMALL_STATE(2250)] = 70910, - [SMALL_STATE(2251)] = 70939, - [SMALL_STATE(2252)] = 70974, - [SMALL_STATE(2253)] = 71009, - [SMALL_STATE(2254)] = 71034, - [SMALL_STATE(2255)] = 71067, - [SMALL_STATE(2256)] = 71102, - [SMALL_STATE(2257)] = 71137, - [SMALL_STATE(2258)] = 71172, - [SMALL_STATE(2259)] = 71202, - [SMALL_STATE(2260)] = 71234, - [SMALL_STATE(2261)] = 71264, - [SMALL_STATE(2262)] = 71294, - [SMALL_STATE(2263)] = 71316, - [SMALL_STATE(2264)] = 71348, - [SMALL_STATE(2265)] = 71380, - [SMALL_STATE(2266)] = 71412, - [SMALL_STATE(2267)] = 71444, - [SMALL_STATE(2268)] = 71474, - [SMALL_STATE(2269)] = 71504, - [SMALL_STATE(2270)] = 71532, - [SMALL_STATE(2271)] = 71562, - [SMALL_STATE(2272)] = 71594, - [SMALL_STATE(2273)] = 71622, - [SMALL_STATE(2274)] = 71652, - [SMALL_STATE(2275)] = 71682, - [SMALL_STATE(2276)] = 71714, - [SMALL_STATE(2277)] = 71746, - [SMALL_STATE(2278)] = 71778, - [SMALL_STATE(2279)] = 71810, - [SMALL_STATE(2280)] = 71842, - [SMALL_STATE(2281)] = 71874, - [SMALL_STATE(2282)] = 71900, - [SMALL_STATE(2283)] = 71928, - [SMALL_STATE(2284)] = 71958, - [SMALL_STATE(2285)] = 71984, - [SMALL_STATE(2286)] = 72016, - [SMALL_STATE(2287)] = 72038, - [SMALL_STATE(2288)] = 72070, - [SMALL_STATE(2289)] = 72102, - [SMALL_STATE(2290)] = 72134, - [SMALL_STATE(2291)] = 72166, - [SMALL_STATE(2292)] = 72198, - [SMALL_STATE(2293)] = 72230, - [SMALL_STATE(2294)] = 72262, - [SMALL_STATE(2295)] = 72294, - [SMALL_STATE(2296)] = 72326, - [SMALL_STATE(2297)] = 72358, - [SMALL_STATE(2298)] = 72386, - [SMALL_STATE(2299)] = 72412, - [SMALL_STATE(2300)] = 72444, - [SMALL_STATE(2301)] = 72472, - [SMALL_STATE(2302)] = 72494, - [SMALL_STATE(2303)] = 72526, - [SMALL_STATE(2304)] = 72556, - [SMALL_STATE(2305)] = 72588, - [SMALL_STATE(2306)] = 72610, - [SMALL_STATE(2307)] = 72642, - [SMALL_STATE(2308)] = 72668, - [SMALL_STATE(2309)] = 72700, - [SMALL_STATE(2310)] = 72732, - [SMALL_STATE(2311)] = 72764, - [SMALL_STATE(2312)] = 72796, - [SMALL_STATE(2313)] = 72818, - [SMALL_STATE(2314)] = 72840, - [SMALL_STATE(2315)] = 72872, - [SMALL_STATE(2316)] = 72904, - [SMALL_STATE(2317)] = 72933, - [SMALL_STATE(2318)] = 72962, - [SMALL_STATE(2319)] = 72989, - [SMALL_STATE(2320)] = 73018, - [SMALL_STATE(2321)] = 73047, - [SMALL_STATE(2322)] = 73076, - [SMALL_STATE(2323)] = 73105, - [SMALL_STATE(2324)] = 73134, - [SMALL_STATE(2325)] = 73163, - [SMALL_STATE(2326)] = 73186, - [SMALL_STATE(2327)] = 73213, - [SMALL_STATE(2328)] = 73242, - [SMALL_STATE(2329)] = 73271, - [SMALL_STATE(2330)] = 73300, - [SMALL_STATE(2331)] = 73327, - [SMALL_STATE(2332)] = 73356, - [SMALL_STATE(2333)] = 73385, - [SMALL_STATE(2334)] = 73414, - [SMALL_STATE(2335)] = 73443, - [SMALL_STATE(2336)] = 73472, - [SMALL_STATE(2337)] = 73501, - [SMALL_STATE(2338)] = 73528, - [SMALL_STATE(2339)] = 73557, - [SMALL_STATE(2340)] = 73586, - [SMALL_STATE(2341)] = 73615, - [SMALL_STATE(2342)] = 73644, - [SMALL_STATE(2343)] = 73673, - [SMALL_STATE(2344)] = 73700, - [SMALL_STATE(2345)] = 73721, - [SMALL_STATE(2346)] = 73750, - [SMALL_STATE(2347)] = 73779, - [SMALL_STATE(2348)] = 73802, - [SMALL_STATE(2349)] = 73831, - [SMALL_STATE(2350)] = 73852, - [SMALL_STATE(2351)] = 73881, - [SMALL_STATE(2352)] = 73910, - [SMALL_STATE(2353)] = 73939, - [SMALL_STATE(2354)] = 73968, - [SMALL_STATE(2355)] = 73997, - [SMALL_STATE(2356)] = 74026, - [SMALL_STATE(2357)] = 74055, - [SMALL_STATE(2358)] = 74076, - [SMALL_STATE(2359)] = 74105, - [SMALL_STATE(2360)] = 74126, - [SMALL_STATE(2361)] = 74155, - [SMALL_STATE(2362)] = 74184, - [SMALL_STATE(2363)] = 74213, - [SMALL_STATE(2364)] = 74242, - [SMALL_STATE(2365)] = 74271, - [SMALL_STATE(2366)] = 74290, - [SMALL_STATE(2367)] = 74311, - [SMALL_STATE(2368)] = 74340, - [SMALL_STATE(2369)] = 74369, - [SMALL_STATE(2370)] = 74390, - [SMALL_STATE(2371)] = 74419, - [SMALL_STATE(2372)] = 74448, - [SMALL_STATE(2373)] = 74477, - [SMALL_STATE(2374)] = 74506, - [SMALL_STATE(2375)] = 74527, - [SMALL_STATE(2376)] = 74548, - [SMALL_STATE(2377)] = 74577, - [SMALL_STATE(2378)] = 74606, - [SMALL_STATE(2379)] = 74635, - [SMALL_STATE(2380)] = 74664, - [SMALL_STATE(2381)] = 74687, - [SMALL_STATE(2382)] = 74716, - [SMALL_STATE(2383)] = 74745, - [SMALL_STATE(2384)] = 74770, - [SMALL_STATE(2385)] = 74799, - [SMALL_STATE(2386)] = 74822, - [SMALL_STATE(2387)] = 74847, - [SMALL_STATE(2388)] = 74876, - [SMALL_STATE(2389)] = 74905, - [SMALL_STATE(2390)] = 74934, - [SMALL_STATE(2391)] = 74953, - [SMALL_STATE(2392)] = 74982, - [SMALL_STATE(2393)] = 75005, - [SMALL_STATE(2394)] = 75034, - [SMALL_STATE(2395)] = 75057, - [SMALL_STATE(2396)] = 75082, - [SMALL_STATE(2397)] = 75111, - [SMALL_STATE(2398)] = 75134, - [SMALL_STATE(2399)] = 75163, - [SMALL_STATE(2400)] = 75192, - [SMALL_STATE(2401)] = 75221, - [SMALL_STATE(2402)] = 75246, - [SMALL_STATE(2403)] = 75269, - [SMALL_STATE(2404)] = 75292, - [SMALL_STATE(2405)] = 75319, - [SMALL_STATE(2406)] = 75348, - [SMALL_STATE(2407)] = 75371, - [SMALL_STATE(2408)] = 75400, - [SMALL_STATE(2409)] = 75429, - [SMALL_STATE(2410)] = 75452, - [SMALL_STATE(2411)] = 75481, - [SMALL_STATE(2412)] = 75504, - [SMALL_STATE(2413)] = 75533, - [SMALL_STATE(2414)] = 75556, - [SMALL_STATE(2415)] = 75585, - [SMALL_STATE(2416)] = 75614, - [SMALL_STATE(2417)] = 75637, - [SMALL_STATE(2418)] = 75655, - [SMALL_STATE(2419)] = 75679, - [SMALL_STATE(2420)] = 75705, - [SMALL_STATE(2421)] = 75729, - [SMALL_STATE(2422)] = 75747, - [SMALL_STATE(2423)] = 75773, - [SMALL_STATE(2424)] = 75797, - [SMALL_STATE(2425)] = 75815, - [SMALL_STATE(2426)] = 75839, - [SMALL_STATE(2427)] = 75865, - [SMALL_STATE(2428)] = 75889, - [SMALL_STATE(2429)] = 75911, - [SMALL_STATE(2430)] = 75937, - [SMALL_STATE(2431)] = 75955, - [SMALL_STATE(2432)] = 75973, - [SMALL_STATE(2433)] = 75999, - [SMALL_STATE(2434)] = 76025, - [SMALL_STATE(2435)] = 76043, - [SMALL_STATE(2436)] = 76069, - [SMALL_STATE(2437)] = 76095, - [SMALL_STATE(2438)] = 76113, - [SMALL_STATE(2439)] = 76139, - [SMALL_STATE(2440)] = 76165, - [SMALL_STATE(2441)] = 76191, - [SMALL_STATE(2442)] = 76213, - [SMALL_STATE(2443)] = 76239, - [SMALL_STATE(2444)] = 76265, - [SMALL_STATE(2445)] = 76285, - [SMALL_STATE(2446)] = 76311, - [SMALL_STATE(2447)] = 76329, - [SMALL_STATE(2448)] = 76347, - [SMALL_STATE(2449)] = 76373, - [SMALL_STATE(2450)] = 76399, - [SMALL_STATE(2451)] = 76425, - [SMALL_STATE(2452)] = 76451, - [SMALL_STATE(2453)] = 76471, - [SMALL_STATE(2454)] = 76497, - [SMALL_STATE(2455)] = 76521, - [SMALL_STATE(2456)] = 76539, - [SMALL_STATE(2457)] = 76563, - [SMALL_STATE(2458)] = 76589, - [SMALL_STATE(2459)] = 76615, - [SMALL_STATE(2460)] = 76641, - [SMALL_STATE(2461)] = 76667, - [SMALL_STATE(2462)] = 76689, - [SMALL_STATE(2463)] = 76715, - [SMALL_STATE(2464)] = 76733, - [SMALL_STATE(2465)] = 76759, - [SMALL_STATE(2466)] = 76785, - [SMALL_STATE(2467)] = 76811, - [SMALL_STATE(2468)] = 76831, - [SMALL_STATE(2469)] = 76857, - [SMALL_STATE(2470)] = 76875, - [SMALL_STATE(2471)] = 76901, - [SMALL_STATE(2472)] = 76921, - [SMALL_STATE(2473)] = 76947, - [SMALL_STATE(2474)] = 76973, - [SMALL_STATE(2475)] = 76997, - [SMALL_STATE(2476)] = 77023, - [SMALL_STATE(2477)] = 77049, - [SMALL_STATE(2478)] = 77073, - [SMALL_STATE(2479)] = 77095, - [SMALL_STATE(2480)] = 77117, - [SMALL_STATE(2481)] = 77143, - [SMALL_STATE(2482)] = 77167, - [SMALL_STATE(2483)] = 77191, - [SMALL_STATE(2484)] = 77217, - [SMALL_STATE(2485)] = 77243, - [SMALL_STATE(2486)] = 77267, - [SMALL_STATE(2487)] = 77289, - [SMALL_STATE(2488)] = 77315, - [SMALL_STATE(2489)] = 77341, - [SMALL_STATE(2490)] = 77359, - [SMALL_STATE(2491)] = 77385, - [SMALL_STATE(2492)] = 77403, - [SMALL_STATE(2493)] = 77421, - [SMALL_STATE(2494)] = 77439, - [SMALL_STATE(2495)] = 77465, - [SMALL_STATE(2496)] = 77489, - [SMALL_STATE(2497)] = 77511, - [SMALL_STATE(2498)] = 77537, - [SMALL_STATE(2499)] = 77555, - [SMALL_STATE(2500)] = 77579, - [SMALL_STATE(2501)] = 77597, - [SMALL_STATE(2502)] = 77623, - [SMALL_STATE(2503)] = 77643, - [SMALL_STATE(2504)] = 77661, - [SMALL_STATE(2505)] = 77679, - [SMALL_STATE(2506)] = 77697, - [SMALL_STATE(2507)] = 77719, - [SMALL_STATE(2508)] = 77745, - [SMALL_STATE(2509)] = 77771, - [SMALL_STATE(2510)] = 77789, - [SMALL_STATE(2511)] = 77807, - [SMALL_STATE(2512)] = 77833, - [SMALL_STATE(2513)] = 77859, - [SMALL_STATE(2514)] = 77877, - [SMALL_STATE(2515)] = 77901, - [SMALL_STATE(2516)] = 77923, - [SMALL_STATE(2517)] = 77949, - [SMALL_STATE(2518)] = 77967, - [SMALL_STATE(2519)] = 77993, - [SMALL_STATE(2520)] = 78019, - [SMALL_STATE(2521)] = 78037, - [SMALL_STATE(2522)] = 78055, - [SMALL_STATE(2523)] = 78073, - [SMALL_STATE(2524)] = 78099, - [SMALL_STATE(2525)] = 78125, - [SMALL_STATE(2526)] = 78143, - [SMALL_STATE(2527)] = 78169, - [SMALL_STATE(2528)] = 78195, - [SMALL_STATE(2529)] = 78217, - [SMALL_STATE(2530)] = 78238, - [SMALL_STATE(2531)] = 78255, - [SMALL_STATE(2532)] = 78278, - [SMALL_STATE(2533)] = 78297, - [SMALL_STATE(2534)] = 78320, - [SMALL_STATE(2535)] = 78343, - [SMALL_STATE(2536)] = 78366, - [SMALL_STATE(2537)] = 78385, - [SMALL_STATE(2538)] = 78408, - [SMALL_STATE(2539)] = 78431, - [SMALL_STATE(2540)] = 78452, - [SMALL_STATE(2541)] = 78475, - [SMALL_STATE(2542)] = 78498, - [SMALL_STATE(2543)] = 78521, - [SMALL_STATE(2544)] = 78544, - [SMALL_STATE(2545)] = 78567, - [SMALL_STATE(2546)] = 78590, - [SMALL_STATE(2547)] = 78613, - [SMALL_STATE(2548)] = 78632, - [SMALL_STATE(2549)] = 78655, - [SMALL_STATE(2550)] = 78672, - [SMALL_STATE(2551)] = 78695, - [SMALL_STATE(2552)] = 78718, - [SMALL_STATE(2553)] = 78741, - [SMALL_STATE(2554)] = 78764, - [SMALL_STATE(2555)] = 78787, - [SMALL_STATE(2556)] = 78804, - [SMALL_STATE(2557)] = 78825, - [SMALL_STATE(2558)] = 78848, - [SMALL_STATE(2559)] = 78869, - [SMALL_STATE(2560)] = 78888, - [SMALL_STATE(2561)] = 78911, - [SMALL_STATE(2562)] = 78934, - [SMALL_STATE(2563)] = 78957, - [SMALL_STATE(2564)] = 78980, - [SMALL_STATE(2565)] = 79003, - [SMALL_STATE(2566)] = 79024, - [SMALL_STATE(2567)] = 79047, - [SMALL_STATE(2568)] = 79070, - [SMALL_STATE(2569)] = 79093, - [SMALL_STATE(2570)] = 79116, - [SMALL_STATE(2571)] = 79135, - [SMALL_STATE(2572)] = 79158, - [SMALL_STATE(2573)] = 79181, - [SMALL_STATE(2574)] = 79204, - [SMALL_STATE(2575)] = 79227, - [SMALL_STATE(2576)] = 79250, - [SMALL_STATE(2577)] = 79273, - [SMALL_STATE(2578)] = 79296, - [SMALL_STATE(2579)] = 79319, - [SMALL_STATE(2580)] = 79340, - [SMALL_STATE(2581)] = 79363, - [SMALL_STATE(2582)] = 79386, - [SMALL_STATE(2583)] = 79409, - [SMALL_STATE(2584)] = 79432, - [SMALL_STATE(2585)] = 79455, - [SMALL_STATE(2586)] = 79478, - [SMALL_STATE(2587)] = 79499, - [SMALL_STATE(2588)] = 79522, - [SMALL_STATE(2589)] = 79545, - [SMALL_STATE(2590)] = 79568, - [SMALL_STATE(2591)] = 79591, - [SMALL_STATE(2592)] = 79614, - [SMALL_STATE(2593)] = 79635, - [SMALL_STATE(2594)] = 79656, - [SMALL_STATE(2595)] = 79679, - [SMALL_STATE(2596)] = 79702, - [SMALL_STATE(2597)] = 79725, - [SMALL_STATE(2598)] = 79748, - [SMALL_STATE(2599)] = 79771, - [SMALL_STATE(2600)] = 79794, - [SMALL_STATE(2601)] = 79817, - [SMALL_STATE(2602)] = 79840, - [SMALL_STATE(2603)] = 79863, - [SMALL_STATE(2604)] = 79886, - [SMALL_STATE(2605)] = 79909, - [SMALL_STATE(2606)] = 79932, - [SMALL_STATE(2607)] = 79955, - [SMALL_STATE(2608)] = 79978, - [SMALL_STATE(2609)] = 80001, - [SMALL_STATE(2610)] = 80022, - [SMALL_STATE(2611)] = 80045, - [SMALL_STATE(2612)] = 80064, - [SMALL_STATE(2613)] = 80085, - [SMALL_STATE(2614)] = 80108, - [SMALL_STATE(2615)] = 80129, - [SMALL_STATE(2616)] = 80152, - [SMALL_STATE(2617)] = 80175, - [SMALL_STATE(2618)] = 80198, - [SMALL_STATE(2619)] = 80221, - [SMALL_STATE(2620)] = 80244, - [SMALL_STATE(2621)] = 80267, - [SMALL_STATE(2622)] = 80290, - [SMALL_STATE(2623)] = 80313, - [SMALL_STATE(2624)] = 80334, - [SMALL_STATE(2625)] = 80355, - [SMALL_STATE(2626)] = 80378, - [SMALL_STATE(2627)] = 80401, - [SMALL_STATE(2628)] = 80424, - [SMALL_STATE(2629)] = 80443, - [SMALL_STATE(2630)] = 80462, - [SMALL_STATE(2631)] = 80485, - [SMALL_STATE(2632)] = 80508, - [SMALL_STATE(2633)] = 80531, - [SMALL_STATE(2634)] = 80554, - [SMALL_STATE(2635)] = 80577, - [SMALL_STATE(2636)] = 80600, - [SMALL_STATE(2637)] = 80623, - [SMALL_STATE(2638)] = 80646, - [SMALL_STATE(2639)] = 80669, - [SMALL_STATE(2640)] = 80692, - [SMALL_STATE(2641)] = 80715, - [SMALL_STATE(2642)] = 80738, - [SMALL_STATE(2643)] = 80761, - [SMALL_STATE(2644)] = 80778, - [SMALL_STATE(2645)] = 80797, - [SMALL_STATE(2646)] = 80816, - [SMALL_STATE(2647)] = 80839, - [SMALL_STATE(2648)] = 80862, - [SMALL_STATE(2649)] = 80885, - [SMALL_STATE(2650)] = 80908, - [SMALL_STATE(2651)] = 80929, - [SMALL_STATE(2652)] = 80948, - [SMALL_STATE(2653)] = 80969, - [SMALL_STATE(2654)] = 80992, - [SMALL_STATE(2655)] = 81015, - [SMALL_STATE(2656)] = 81034, - [SMALL_STATE(2657)] = 81053, - [SMALL_STATE(2658)] = 81076, - [SMALL_STATE(2659)] = 81099, - [SMALL_STATE(2660)] = 81122, - [SMALL_STATE(2661)] = 81145, - [SMALL_STATE(2662)] = 81168, - [SMALL_STATE(2663)] = 81191, - [SMALL_STATE(2664)] = 81214, - [SMALL_STATE(2665)] = 81237, - [SMALL_STATE(2666)] = 81256, - [SMALL_STATE(2667)] = 81273, - [SMALL_STATE(2668)] = 81296, - [SMALL_STATE(2669)] = 81319, - [SMALL_STATE(2670)] = 81342, - [SMALL_STATE(2671)] = 81361, - [SMALL_STATE(2672)] = 81384, - [SMALL_STATE(2673)] = 81407, - [SMALL_STATE(2674)] = 81430, - [SMALL_STATE(2675)] = 81453, - [SMALL_STATE(2676)] = 81476, - [SMALL_STATE(2677)] = 81499, - [SMALL_STATE(2678)] = 81522, - [SMALL_STATE(2679)] = 81545, - [SMALL_STATE(2680)] = 81568, - [SMALL_STATE(2681)] = 81591, - [SMALL_STATE(2682)] = 81612, - [SMALL_STATE(2683)] = 81631, - [SMALL_STATE(2684)] = 81654, - [SMALL_STATE(2685)] = 81677, - [SMALL_STATE(2686)] = 81700, - [SMALL_STATE(2687)] = 81719, - [SMALL_STATE(2688)] = 81742, - [SMALL_STATE(2689)] = 81759, - [SMALL_STATE(2690)] = 81782, - [SMALL_STATE(2691)] = 81805, - [SMALL_STATE(2692)] = 81824, - [SMALL_STATE(2693)] = 81843, - [SMALL_STATE(2694)] = 81866, - [SMALL_STATE(2695)] = 81889, - [SMALL_STATE(2696)] = 81912, - [SMALL_STATE(2697)] = 81933, - [SMALL_STATE(2698)] = 81950, - [SMALL_STATE(2699)] = 81973, - [SMALL_STATE(2700)] = 81996, - [SMALL_STATE(2701)] = 82019, - [SMALL_STATE(2702)] = 82042, - [SMALL_STATE(2703)] = 82063, - [SMALL_STATE(2704)] = 82086, - [SMALL_STATE(2705)] = 82109, - [SMALL_STATE(2706)] = 82132, - [SMALL_STATE(2707)] = 82155, - [SMALL_STATE(2708)] = 82178, - [SMALL_STATE(2709)] = 82201, - [SMALL_STATE(2710)] = 82224, - [SMALL_STATE(2711)] = 82243, - [SMALL_STATE(2712)] = 82266, - [SMALL_STATE(2713)] = 82289, - [SMALL_STATE(2714)] = 82312, - [SMALL_STATE(2715)] = 82335, - [SMALL_STATE(2716)] = 82358, - [SMALL_STATE(2717)] = 82381, - [SMALL_STATE(2718)] = 82402, - [SMALL_STATE(2719)] = 82423, - [SMALL_STATE(2720)] = 82446, - [SMALL_STATE(2721)] = 82469, - [SMALL_STATE(2722)] = 82492, - [SMALL_STATE(2723)] = 82515, - [SMALL_STATE(2724)] = 82538, - [SMALL_STATE(2725)] = 82561, - [SMALL_STATE(2726)] = 82582, - [SMALL_STATE(2727)] = 82605, - [SMALL_STATE(2728)] = 82626, - [SMALL_STATE(2729)] = 82647, - [SMALL_STATE(2730)] = 82668, - [SMALL_STATE(2731)] = 82687, - [SMALL_STATE(2732)] = 82710, - [SMALL_STATE(2733)] = 82733, - [SMALL_STATE(2734)] = 82754, - [SMALL_STATE(2735)] = 82777, - [SMALL_STATE(2736)] = 82796, - [SMALL_STATE(2737)] = 82819, - [SMALL_STATE(2738)] = 82842, - [SMALL_STATE(2739)] = 82863, - [SMALL_STATE(2740)] = 82882, - [SMALL_STATE(2741)] = 82901, - [SMALL_STATE(2742)] = 82924, - [SMALL_STATE(2743)] = 82947, - [SMALL_STATE(2744)] = 82970, - [SMALL_STATE(2745)] = 82993, - [SMALL_STATE(2746)] = 83016, - [SMALL_STATE(2747)] = 83039, - [SMALL_STATE(2748)] = 83062, - [SMALL_STATE(2749)] = 83085, - [SMALL_STATE(2750)] = 83108, - [SMALL_STATE(2751)] = 83129, - [SMALL_STATE(2752)] = 83152, - [SMALL_STATE(2753)] = 83175, - [SMALL_STATE(2754)] = 83198, - [SMALL_STATE(2755)] = 83217, - [SMALL_STATE(2756)] = 83240, - [SMALL_STATE(2757)] = 83263, - [SMALL_STATE(2758)] = 83286, - [SMALL_STATE(2759)] = 83309, - [SMALL_STATE(2760)] = 83332, - [SMALL_STATE(2761)] = 83355, - [SMALL_STATE(2762)] = 83378, - [SMALL_STATE(2763)] = 83401, - [SMALL_STATE(2764)] = 83424, - [SMALL_STATE(2765)] = 83443, - [SMALL_STATE(2766)] = 83462, - [SMALL_STATE(2767)] = 83479, - [SMALL_STATE(2768)] = 83502, - [SMALL_STATE(2769)] = 83525, - [SMALL_STATE(2770)] = 83544, - [SMALL_STATE(2771)] = 83567, - [SMALL_STATE(2772)] = 83590, - [SMALL_STATE(2773)] = 83610, - [SMALL_STATE(2774)] = 83626, - [SMALL_STATE(2775)] = 83646, - [SMALL_STATE(2776)] = 83662, - [SMALL_STATE(2777)] = 83682, - [SMALL_STATE(2778)] = 83702, - [SMALL_STATE(2779)] = 83722, - [SMALL_STATE(2780)] = 83740, - [SMALL_STATE(2781)] = 83760, - [SMALL_STATE(2782)] = 83780, - [SMALL_STATE(2783)] = 83800, - [SMALL_STATE(2784)] = 83820, - [SMALL_STATE(2785)] = 83838, - [SMALL_STATE(2786)] = 83858, - [SMALL_STATE(2787)] = 83878, - [SMALL_STATE(2788)] = 83894, - [SMALL_STATE(2789)] = 83914, - [SMALL_STATE(2790)] = 83932, - [SMALL_STATE(2791)] = 83948, - [SMALL_STATE(2792)] = 83968, - [SMALL_STATE(2793)] = 83986, - [SMALL_STATE(2794)] = 84006, - [SMALL_STATE(2795)] = 84022, - [SMALL_STATE(2796)] = 84042, - [SMALL_STATE(2797)] = 84062, - [SMALL_STATE(2798)] = 84082, - [SMALL_STATE(2799)] = 84100, - [SMALL_STATE(2800)] = 84116, - [SMALL_STATE(2801)] = 84136, - [SMALL_STATE(2802)] = 84156, - [SMALL_STATE(2803)] = 84176, - [SMALL_STATE(2804)] = 84196, - [SMALL_STATE(2805)] = 84214, - [SMALL_STATE(2806)] = 84230, - [SMALL_STATE(2807)] = 84250, - [SMALL_STATE(2808)] = 84270, - [SMALL_STATE(2809)] = 84290, - [SMALL_STATE(2810)] = 84306, - [SMALL_STATE(2811)] = 84326, - [SMALL_STATE(2812)] = 84342, - [SMALL_STATE(2813)] = 84358, - [SMALL_STATE(2814)] = 84378, - [SMALL_STATE(2815)] = 84398, - [SMALL_STATE(2816)] = 84418, - [SMALL_STATE(2817)] = 84438, - [SMALL_STATE(2818)] = 84454, - [SMALL_STATE(2819)] = 84472, - [SMALL_STATE(2820)] = 84492, - [SMALL_STATE(2821)] = 84512, - [SMALL_STATE(2822)] = 84530, - [SMALL_STATE(2823)] = 84548, - [SMALL_STATE(2824)] = 84568, - [SMALL_STATE(2825)] = 84584, - [SMALL_STATE(2826)] = 84602, - [SMALL_STATE(2827)] = 84622, - [SMALL_STATE(2828)] = 84642, - [SMALL_STATE(2829)] = 84662, - [SMALL_STATE(2830)] = 84682, - [SMALL_STATE(2831)] = 84702, - [SMALL_STATE(2832)] = 84722, - [SMALL_STATE(2833)] = 84738, - [SMALL_STATE(2834)] = 84758, - [SMALL_STATE(2835)] = 84778, - [SMALL_STATE(2836)] = 84798, - [SMALL_STATE(2837)] = 84818, - [SMALL_STATE(2838)] = 84838, - [SMALL_STATE(2839)] = 84858, - [SMALL_STATE(2840)] = 84878, - [SMALL_STATE(2841)] = 84898, - [SMALL_STATE(2842)] = 84918, - [SMALL_STATE(2843)] = 84938, - [SMALL_STATE(2844)] = 84956, - [SMALL_STATE(2845)] = 84976, - [SMALL_STATE(2846)] = 84996, - [SMALL_STATE(2847)] = 85014, - [SMALL_STATE(2848)] = 85034, - [SMALL_STATE(2849)] = 85052, - [SMALL_STATE(2850)] = 85072, - [SMALL_STATE(2851)] = 85090, - [SMALL_STATE(2852)] = 85110, - [SMALL_STATE(2853)] = 85130, - [SMALL_STATE(2854)] = 85150, - [SMALL_STATE(2855)] = 85166, - [SMALL_STATE(2856)] = 85184, - [SMALL_STATE(2857)] = 85204, - [SMALL_STATE(2858)] = 85224, - [SMALL_STATE(2859)] = 85244, - [SMALL_STATE(2860)] = 85262, - [SMALL_STATE(2861)] = 85282, - [SMALL_STATE(2862)] = 85300, - [SMALL_STATE(2863)] = 85320, - [SMALL_STATE(2864)] = 85338, - [SMALL_STATE(2865)] = 85358, - [SMALL_STATE(2866)] = 85378, - [SMALL_STATE(2867)] = 85398, - [SMALL_STATE(2868)] = 85418, - [SMALL_STATE(2869)] = 85434, - [SMALL_STATE(2870)] = 85450, - [SMALL_STATE(2871)] = 85470, - [SMALL_STATE(2872)] = 85490, - [SMALL_STATE(2873)] = 85510, - [SMALL_STATE(2874)] = 85530, - [SMALL_STATE(2875)] = 85550, - [SMALL_STATE(2876)] = 85570, - [SMALL_STATE(2877)] = 85590, - [SMALL_STATE(2878)] = 85610, - [SMALL_STATE(2879)] = 85628, - [SMALL_STATE(2880)] = 85644, - [SMALL_STATE(2881)] = 85662, - [SMALL_STATE(2882)] = 85678, - [SMALL_STATE(2883)] = 85696, - [SMALL_STATE(2884)] = 85716, - [SMALL_STATE(2885)] = 85736, - [SMALL_STATE(2886)] = 85756, - [SMALL_STATE(2887)] = 85776, - [SMALL_STATE(2888)] = 85796, - [SMALL_STATE(2889)] = 85816, - [SMALL_STATE(2890)] = 85836, - [SMALL_STATE(2891)] = 85854, - [SMALL_STATE(2892)] = 85874, - [SMALL_STATE(2893)] = 85894, - [SMALL_STATE(2894)] = 85914, - [SMALL_STATE(2895)] = 85932, - [SMALL_STATE(2896)] = 85952, - [SMALL_STATE(2897)] = 85968, - [SMALL_STATE(2898)] = 85988, - [SMALL_STATE(2899)] = 86008, - [SMALL_STATE(2900)] = 86028, - [SMALL_STATE(2901)] = 86048, - [SMALL_STATE(2902)] = 86068, - [SMALL_STATE(2903)] = 86088, - [SMALL_STATE(2904)] = 86106, - [SMALL_STATE(2905)] = 86126, - [SMALL_STATE(2906)] = 86146, - [SMALL_STATE(2907)] = 86166, - [SMALL_STATE(2908)] = 86186, - [SMALL_STATE(2909)] = 86206, - [SMALL_STATE(2910)] = 86224, - [SMALL_STATE(2911)] = 86244, - [SMALL_STATE(2912)] = 86264, - [SMALL_STATE(2913)] = 86284, - [SMALL_STATE(2914)] = 86302, - [SMALL_STATE(2915)] = 86322, - [SMALL_STATE(2916)] = 86342, - [SMALL_STATE(2917)] = 86362, - [SMALL_STATE(2918)] = 86382, - [SMALL_STATE(2919)] = 86402, - [SMALL_STATE(2920)] = 86422, - [SMALL_STATE(2921)] = 86442, - [SMALL_STATE(2922)] = 86462, - [SMALL_STATE(2923)] = 86482, - [SMALL_STATE(2924)] = 86502, - [SMALL_STATE(2925)] = 86522, - [SMALL_STATE(2926)] = 86542, - [SMALL_STATE(2927)] = 86562, - [SMALL_STATE(2928)] = 86582, - [SMALL_STATE(2929)] = 86602, - [SMALL_STATE(2930)] = 86620, - [SMALL_STATE(2931)] = 86640, - [SMALL_STATE(2932)] = 86660, - [SMALL_STATE(2933)] = 86680, - [SMALL_STATE(2934)] = 86700, - [SMALL_STATE(2935)] = 86720, - [SMALL_STATE(2936)] = 86736, - [SMALL_STATE(2937)] = 86754, - [SMALL_STATE(2938)] = 86774, - [SMALL_STATE(2939)] = 86794, - [SMALL_STATE(2940)] = 86814, - [SMALL_STATE(2941)] = 86834, - [SMALL_STATE(2942)] = 86854, - [SMALL_STATE(2943)] = 86872, - [SMALL_STATE(2944)] = 86888, - [SMALL_STATE(2945)] = 86908, - [SMALL_STATE(2946)] = 86928, - [SMALL_STATE(2947)] = 86948, - [SMALL_STATE(2948)] = 86964, - [SMALL_STATE(2949)] = 86984, - [SMALL_STATE(2950)] = 87000, - [SMALL_STATE(2951)] = 87020, - [SMALL_STATE(2952)] = 87036, - [SMALL_STATE(2953)] = 87056, - [SMALL_STATE(2954)] = 87076, - [SMALL_STATE(2955)] = 87092, - [SMALL_STATE(2956)] = 87112, - [SMALL_STATE(2957)] = 87128, - [SMALL_STATE(2958)] = 87148, - [SMALL_STATE(2959)] = 87164, - [SMALL_STATE(2960)] = 87184, - [SMALL_STATE(2961)] = 87204, - [SMALL_STATE(2962)] = 87222, - [SMALL_STATE(2963)] = 87240, - [SMALL_STATE(2964)] = 87256, - [SMALL_STATE(2965)] = 87272, - [SMALL_STATE(2966)] = 87292, - [SMALL_STATE(2967)] = 87312, - [SMALL_STATE(2968)] = 87332, - [SMALL_STATE(2969)] = 87348, - [SMALL_STATE(2970)] = 87364, - [SMALL_STATE(2971)] = 87384, - [SMALL_STATE(2972)] = 87400, - [SMALL_STATE(2973)] = 87420, - [SMALL_STATE(2974)] = 87436, - [SMALL_STATE(2975)] = 87454, - [SMALL_STATE(2976)] = 87474, - [SMALL_STATE(2977)] = 87494, - [SMALL_STATE(2978)] = 87514, - [SMALL_STATE(2979)] = 87534, - [SMALL_STATE(2980)] = 87554, - [SMALL_STATE(2981)] = 87574, - [SMALL_STATE(2982)] = 87590, - [SMALL_STATE(2983)] = 87610, - [SMALL_STATE(2984)] = 87630, - [SMALL_STATE(2985)] = 87650, - [SMALL_STATE(2986)] = 87670, - [SMALL_STATE(2987)] = 87686, - [SMALL_STATE(2988)] = 87706, - [SMALL_STATE(2989)] = 87724, - [SMALL_STATE(2990)] = 87744, - [SMALL_STATE(2991)] = 87764, - [SMALL_STATE(2992)] = 87780, - [SMALL_STATE(2993)] = 87796, - [SMALL_STATE(2994)] = 87812, - [SMALL_STATE(2995)] = 87828, - [SMALL_STATE(2996)] = 87844, - [SMALL_STATE(2997)] = 87860, - [SMALL_STATE(2998)] = 87880, - [SMALL_STATE(2999)] = 87900, - [SMALL_STATE(3000)] = 87920, - [SMALL_STATE(3001)] = 87940, - [SMALL_STATE(3002)] = 87958, - [SMALL_STATE(3003)] = 87978, - [SMALL_STATE(3004)] = 87994, - [SMALL_STATE(3005)] = 88014, - [SMALL_STATE(3006)] = 88034, - [SMALL_STATE(3007)] = 88054, - [SMALL_STATE(3008)] = 88072, - [SMALL_STATE(3009)] = 88090, - [SMALL_STATE(3010)] = 88110, - [SMALL_STATE(3011)] = 88128, - [SMALL_STATE(3012)] = 88144, - [SMALL_STATE(3013)] = 88162, - [SMALL_STATE(3014)] = 88182, - [SMALL_STATE(3015)] = 88202, - [SMALL_STATE(3016)] = 88222, - [SMALL_STATE(3017)] = 88242, - [SMALL_STATE(3018)] = 88262, - [SMALL_STATE(3019)] = 88282, - [SMALL_STATE(3020)] = 88298, - [SMALL_STATE(3021)] = 88316, - [SMALL_STATE(3022)] = 88336, - [SMALL_STATE(3023)] = 88356, - [SMALL_STATE(3024)] = 88376, - [SMALL_STATE(3025)] = 88392, - [SMALL_STATE(3026)] = 88412, - [SMALL_STATE(3027)] = 88432, - [SMALL_STATE(3028)] = 88452, - [SMALL_STATE(3029)] = 88472, - [SMALL_STATE(3030)] = 88488, - [SMALL_STATE(3031)] = 88504, - [SMALL_STATE(3032)] = 88524, - [SMALL_STATE(3033)] = 88544, - [SMALL_STATE(3034)] = 88560, - [SMALL_STATE(3035)] = 88580, - [SMALL_STATE(3036)] = 88600, - [SMALL_STATE(3037)] = 88620, - [SMALL_STATE(3038)] = 88640, - [SMALL_STATE(3039)] = 88660, - [SMALL_STATE(3040)] = 88676, - [SMALL_STATE(3041)] = 88692, - [SMALL_STATE(3042)] = 88712, - [SMALL_STATE(3043)] = 88728, - [SMALL_STATE(3044)] = 88744, - [SMALL_STATE(3045)] = 88764, - [SMALL_STATE(3046)] = 88780, - [SMALL_STATE(3047)] = 88800, - [SMALL_STATE(3048)] = 88820, - [SMALL_STATE(3049)] = 88840, - [SMALL_STATE(3050)] = 88860, - [SMALL_STATE(3051)] = 88878, - [SMALL_STATE(3052)] = 88898, - [SMALL_STATE(3053)] = 88914, - [SMALL_STATE(3054)] = 88934, - [SMALL_STATE(3055)] = 88954, - [SMALL_STATE(3056)] = 88974, - [SMALL_STATE(3057)] = 88994, - [SMALL_STATE(3058)] = 89014, - [SMALL_STATE(3059)] = 89034, - [SMALL_STATE(3060)] = 89052, - [SMALL_STATE(3061)] = 89072, - [SMALL_STATE(3062)] = 89092, - [SMALL_STATE(3063)] = 89112, - [SMALL_STATE(3064)] = 89132, - [SMALL_STATE(3065)] = 89148, - [SMALL_STATE(3066)] = 89168, - [SMALL_STATE(3067)] = 89188, - [SMALL_STATE(3068)] = 89208, - [SMALL_STATE(3069)] = 89224, - [SMALL_STATE(3070)] = 89244, - [SMALL_STATE(3071)] = 89264, - [SMALL_STATE(3072)] = 89280, - [SMALL_STATE(3073)] = 89298, - [SMALL_STATE(3074)] = 89318, - [SMALL_STATE(3075)] = 89338, - [SMALL_STATE(3076)] = 89355, - [SMALL_STATE(3077)] = 89372, - [SMALL_STATE(3078)] = 89389, - [SMALL_STATE(3079)] = 89404, - [SMALL_STATE(3080)] = 89419, - [SMALL_STATE(3081)] = 89436, - [SMALL_STATE(3082)] = 89453, - [SMALL_STATE(3083)] = 89470, - [SMALL_STATE(3084)] = 89485, - [SMALL_STATE(3085)] = 89502, - [SMALL_STATE(3086)] = 89519, - [SMALL_STATE(3087)] = 89536, - [SMALL_STATE(3088)] = 89553, - [SMALL_STATE(3089)] = 89570, - [SMALL_STATE(3090)] = 89585, - [SMALL_STATE(3091)] = 89602, - [SMALL_STATE(3092)] = 89619, - [SMALL_STATE(3093)] = 89634, - [SMALL_STATE(3094)] = 89651, - [SMALL_STATE(3095)] = 89666, - [SMALL_STATE(3096)] = 89681, - [SMALL_STATE(3097)] = 89698, - [SMALL_STATE(3098)] = 89715, - [SMALL_STATE(3099)] = 89732, - [SMALL_STATE(3100)] = 89749, - [SMALL_STATE(3101)] = 89766, - [SMALL_STATE(3102)] = 89783, - [SMALL_STATE(3103)] = 89798, - [SMALL_STATE(3104)] = 89813, - [SMALL_STATE(3105)] = 89830, - [SMALL_STATE(3106)] = 89845, - [SMALL_STATE(3107)] = 89862, - [SMALL_STATE(3108)] = 89879, - [SMALL_STATE(3109)] = 89896, - [SMALL_STATE(3110)] = 89913, - [SMALL_STATE(3111)] = 89930, - [SMALL_STATE(3112)] = 89945, - [SMALL_STATE(3113)] = 89962, - [SMALL_STATE(3114)] = 89979, - [SMALL_STATE(3115)] = 89996, - [SMALL_STATE(3116)] = 90013, - [SMALL_STATE(3117)] = 90030, - [SMALL_STATE(3118)] = 90047, - [SMALL_STATE(3119)] = 90064, - [SMALL_STATE(3120)] = 90079, - [SMALL_STATE(3121)] = 90096, - [SMALL_STATE(3122)] = 90113, - [SMALL_STATE(3123)] = 90128, - [SMALL_STATE(3124)] = 90143, - [SMALL_STATE(3125)] = 90160, - [SMALL_STATE(3126)] = 90177, - [SMALL_STATE(3127)] = 90194, - [SMALL_STATE(3128)] = 90209, - [SMALL_STATE(3129)] = 90226, - [SMALL_STATE(3130)] = 90243, - [SMALL_STATE(3131)] = 90258, - [SMALL_STATE(3132)] = 90275, - [SMALL_STATE(3133)] = 90292, - [SMALL_STATE(3134)] = 90309, - [SMALL_STATE(3135)] = 90326, - [SMALL_STATE(3136)] = 90341, - [SMALL_STATE(3137)] = 90358, - [SMALL_STATE(3138)] = 90373, - [SMALL_STATE(3139)] = 90390, - [SMALL_STATE(3140)] = 90407, - [SMALL_STATE(3141)] = 90424, - [SMALL_STATE(3142)] = 90441, - [SMALL_STATE(3143)] = 90458, - [SMALL_STATE(3144)] = 90473, - [SMALL_STATE(3145)] = 90490, - [SMALL_STATE(3146)] = 90507, - [SMALL_STATE(3147)] = 90524, - [SMALL_STATE(3148)] = 90541, - [SMALL_STATE(3149)] = 90556, - [SMALL_STATE(3150)] = 90573, - [SMALL_STATE(3151)] = 90590, - [SMALL_STATE(3152)] = 90607, - [SMALL_STATE(3153)] = 90622, - [SMALL_STATE(3154)] = 90639, - [SMALL_STATE(3155)] = 90654, - [SMALL_STATE(3156)] = 90671, - [SMALL_STATE(3157)] = 90688, - [SMALL_STATE(3158)] = 90705, - [SMALL_STATE(3159)] = 90722, - [SMALL_STATE(3160)] = 90739, - [SMALL_STATE(3161)] = 90754, - [SMALL_STATE(3162)] = 90771, - [SMALL_STATE(3163)] = 90788, - [SMALL_STATE(3164)] = 90803, - [SMALL_STATE(3165)] = 90820, - [SMALL_STATE(3166)] = 90837, - [SMALL_STATE(3167)] = 90854, - [SMALL_STATE(3168)] = 90871, - [SMALL_STATE(3169)] = 90888, - [SMALL_STATE(3170)] = 90903, - [SMALL_STATE(3171)] = 90920, - [SMALL_STATE(3172)] = 90937, - [SMALL_STATE(3173)] = 90954, - [SMALL_STATE(3174)] = 90971, - [SMALL_STATE(3175)] = 90988, - [SMALL_STATE(3176)] = 91005, - [SMALL_STATE(3177)] = 91022, - [SMALL_STATE(3178)] = 91037, - [SMALL_STATE(3179)] = 91054, - [SMALL_STATE(3180)] = 91071, - [SMALL_STATE(3181)] = 91088, - [SMALL_STATE(3182)] = 91105, - [SMALL_STATE(3183)] = 91122, - [SMALL_STATE(3184)] = 91139, - [SMALL_STATE(3185)] = 91156, - [SMALL_STATE(3186)] = 91173, - [SMALL_STATE(3187)] = 91188, - [SMALL_STATE(3188)] = 91203, - [SMALL_STATE(3189)] = 91220, - [SMALL_STATE(3190)] = 91237, - [SMALL_STATE(3191)] = 91252, - [SMALL_STATE(3192)] = 91269, - [SMALL_STATE(3193)] = 91286, - [SMALL_STATE(3194)] = 91303, - [SMALL_STATE(3195)] = 91320, - [SMALL_STATE(3196)] = 91337, - [SMALL_STATE(3197)] = 91354, - [SMALL_STATE(3198)] = 91371, - [SMALL_STATE(3199)] = 91388, - [SMALL_STATE(3200)] = 91405, - [SMALL_STATE(3201)] = 91422, - [SMALL_STATE(3202)] = 91439, - [SMALL_STATE(3203)] = 91456, - [SMALL_STATE(3204)] = 91473, - [SMALL_STATE(3205)] = 91490, - [SMALL_STATE(3206)] = 91507, - [SMALL_STATE(3207)] = 91524, - [SMALL_STATE(3208)] = 91541, - [SMALL_STATE(3209)] = 91558, - [SMALL_STATE(3210)] = 91575, - [SMALL_STATE(3211)] = 91592, - [SMALL_STATE(3212)] = 91609, - [SMALL_STATE(3213)] = 91626, - [SMALL_STATE(3214)] = 91643, - [SMALL_STATE(3215)] = 91660, - [SMALL_STATE(3216)] = 91677, - [SMALL_STATE(3217)] = 91694, - [SMALL_STATE(3218)] = 91711, - [SMALL_STATE(3219)] = 91728, - [SMALL_STATE(3220)] = 91745, - [SMALL_STATE(3221)] = 91762, - [SMALL_STATE(3222)] = 91779, - [SMALL_STATE(3223)] = 91796, - [SMALL_STATE(3224)] = 91813, - [SMALL_STATE(3225)] = 91830, - [SMALL_STATE(3226)] = 91847, - [SMALL_STATE(3227)] = 91864, - [SMALL_STATE(3228)] = 91881, - [SMALL_STATE(3229)] = 91896, - [SMALL_STATE(3230)] = 91913, - [SMALL_STATE(3231)] = 91930, - [SMALL_STATE(3232)] = 91947, - [SMALL_STATE(3233)] = 91962, - [SMALL_STATE(3234)] = 91979, - [SMALL_STATE(3235)] = 91996, - [SMALL_STATE(3236)] = 92013, - [SMALL_STATE(3237)] = 92028, - [SMALL_STATE(3238)] = 92045, - [SMALL_STATE(3239)] = 92060, - [SMALL_STATE(3240)] = 92077, - [SMALL_STATE(3241)] = 92094, - [SMALL_STATE(3242)] = 92111, - [SMALL_STATE(3243)] = 92128, - [SMALL_STATE(3244)] = 92145, - [SMALL_STATE(3245)] = 92162, - [SMALL_STATE(3246)] = 92177, - [SMALL_STATE(3247)] = 92194, - [SMALL_STATE(3248)] = 92211, - [SMALL_STATE(3249)] = 92226, - [SMALL_STATE(3250)] = 92243, - [SMALL_STATE(3251)] = 92260, - [SMALL_STATE(3252)] = 92275, - [SMALL_STATE(3253)] = 92290, - [SMALL_STATE(3254)] = 92307, - [SMALL_STATE(3255)] = 92322, - [SMALL_STATE(3256)] = 92339, - [SMALL_STATE(3257)] = 92354, - [SMALL_STATE(3258)] = 92369, - [SMALL_STATE(3259)] = 92384, - [SMALL_STATE(3260)] = 92401, - [SMALL_STATE(3261)] = 92418, - [SMALL_STATE(3262)] = 92435, - [SMALL_STATE(3263)] = 92452, - [SMALL_STATE(3264)] = 92469, - [SMALL_STATE(3265)] = 92486, - [SMALL_STATE(3266)] = 92503, - [SMALL_STATE(3267)] = 92520, - [SMALL_STATE(3268)] = 92537, - [SMALL_STATE(3269)] = 92554, - [SMALL_STATE(3270)] = 92571, - [SMALL_STATE(3271)] = 92588, - [SMALL_STATE(3272)] = 92605, - [SMALL_STATE(3273)] = 92622, - [SMALL_STATE(3274)] = 92639, - [SMALL_STATE(3275)] = 92656, - [SMALL_STATE(3276)] = 92673, - [SMALL_STATE(3277)] = 92690, - [SMALL_STATE(3278)] = 92707, - [SMALL_STATE(3279)] = 92724, - [SMALL_STATE(3280)] = 92741, - [SMALL_STATE(3281)] = 92758, - [SMALL_STATE(3282)] = 92775, - [SMALL_STATE(3283)] = 92792, - [SMALL_STATE(3284)] = 92809, - [SMALL_STATE(3285)] = 92826, - [SMALL_STATE(3286)] = 92843, - [SMALL_STATE(3287)] = 92860, - [SMALL_STATE(3288)] = 92875, - [SMALL_STATE(3289)] = 92892, - [SMALL_STATE(3290)] = 92909, - [SMALL_STATE(3291)] = 92926, - [SMALL_STATE(3292)] = 92943, - [SMALL_STATE(3293)] = 92958, - [SMALL_STATE(3294)] = 92975, - [SMALL_STATE(3295)] = 92992, - [SMALL_STATE(3296)] = 93009, - [SMALL_STATE(3297)] = 93026, - [SMALL_STATE(3298)] = 93043, - [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)] = 93158, - [SMALL_STATE(3306)] = 93175, - [SMALL_STATE(3307)] = 93192, - [SMALL_STATE(3308)] = 93209, - [SMALL_STATE(3309)] = 93224, - [SMALL_STATE(3310)] = 93241, - [SMALL_STATE(3311)] = 93258, - [SMALL_STATE(3312)] = 93275, - [SMALL_STATE(3313)] = 93290, - [SMALL_STATE(3314)] = 93307, - [SMALL_STATE(3315)] = 93324, - [SMALL_STATE(3316)] = 93341, - [SMALL_STATE(3317)] = 93358, - [SMALL_STATE(3318)] = 93375, - [SMALL_STATE(3319)] = 93392, - [SMALL_STATE(3320)] = 93409, - [SMALL_STATE(3321)] = 93426, - [SMALL_STATE(3322)] = 93443, - [SMALL_STATE(3323)] = 93460, - [SMALL_STATE(3324)] = 93477, - [SMALL_STATE(3325)] = 93494, - [SMALL_STATE(3326)] = 93509, - [SMALL_STATE(3327)] = 93526, - [SMALL_STATE(3328)] = 93543, - [SMALL_STATE(3329)] = 93560, - [SMALL_STATE(3330)] = 93575, - [SMALL_STATE(3331)] = 93592, - [SMALL_STATE(3332)] = 93609, - [SMALL_STATE(3333)] = 93624, - [SMALL_STATE(3334)] = 93641, - [SMALL_STATE(3335)] = 93658, - [SMALL_STATE(3336)] = 93673, - [SMALL_STATE(3337)] = 93690, - [SMALL_STATE(3338)] = 93707, - [SMALL_STATE(3339)] = 93724, - [SMALL_STATE(3340)] = 93741, - [SMALL_STATE(3341)] = 93758, - [SMALL_STATE(3342)] = 93775, - [SMALL_STATE(3343)] = 93792, - [SMALL_STATE(3344)] = 93809, - [SMALL_STATE(3345)] = 93826, - [SMALL_STATE(3346)] = 93843, - [SMALL_STATE(3347)] = 93860, - [SMALL_STATE(3348)] = 93877, - [SMALL_STATE(3349)] = 93894, - [SMALL_STATE(3350)] = 93911, - [SMALL_STATE(3351)] = 93928, - [SMALL_STATE(3352)] = 93943, - [SMALL_STATE(3353)] = 93960, - [SMALL_STATE(3354)] = 93977, - [SMALL_STATE(3355)] = 93994, - [SMALL_STATE(3356)] = 94011, - [SMALL_STATE(3357)] = 94028, - [SMALL_STATE(3358)] = 94042, - [SMALL_STATE(3359)] = 94056, - [SMALL_STATE(3360)] = 94070, - [SMALL_STATE(3361)] = 94084, - [SMALL_STATE(3362)] = 94098, - [SMALL_STATE(3363)] = 94112, - [SMALL_STATE(3364)] = 94126, - [SMALL_STATE(3365)] = 94140, - [SMALL_STATE(3366)] = 94154, - [SMALL_STATE(3367)] = 94168, - [SMALL_STATE(3368)] = 94182, - [SMALL_STATE(3369)] = 94196, - [SMALL_STATE(3370)] = 94210, - [SMALL_STATE(3371)] = 94224, - [SMALL_STATE(3372)] = 94238, - [SMALL_STATE(3373)] = 94252, - [SMALL_STATE(3374)] = 94266, - [SMALL_STATE(3375)] = 94280, - [SMALL_STATE(3376)] = 94294, - [SMALL_STATE(3377)] = 94308, - [SMALL_STATE(3378)] = 94322, - [SMALL_STATE(3379)] = 94336, - [SMALL_STATE(3380)] = 94350, - [SMALL_STATE(3381)] = 94364, - [SMALL_STATE(3382)] = 94378, - [SMALL_STATE(3383)] = 94392, - [SMALL_STATE(3384)] = 94406, - [SMALL_STATE(3385)] = 94420, - [SMALL_STATE(3386)] = 94434, - [SMALL_STATE(3387)] = 94448, - [SMALL_STATE(3388)] = 94462, - [SMALL_STATE(3389)] = 94476, - [SMALL_STATE(3390)] = 94490, - [SMALL_STATE(3391)] = 94504, - [SMALL_STATE(3392)] = 94518, - [SMALL_STATE(3393)] = 94532, - [SMALL_STATE(3394)] = 94546, - [SMALL_STATE(3395)] = 94560, - [SMALL_STATE(3396)] = 94574, - [SMALL_STATE(3397)] = 94588, - [SMALL_STATE(3398)] = 94602, - [SMALL_STATE(3399)] = 94616, - [SMALL_STATE(3400)] = 94630, - [SMALL_STATE(3401)] = 94644, - [SMALL_STATE(3402)] = 94658, - [SMALL_STATE(3403)] = 94672, - [SMALL_STATE(3404)] = 94686, - [SMALL_STATE(3405)] = 94700, - [SMALL_STATE(3406)] = 94714, - [SMALL_STATE(3407)] = 94728, - [SMALL_STATE(3408)] = 94742, - [SMALL_STATE(3409)] = 94756, - [SMALL_STATE(3410)] = 94770, - [SMALL_STATE(3411)] = 94784, - [SMALL_STATE(3412)] = 94798, - [SMALL_STATE(3413)] = 94812, - [SMALL_STATE(3414)] = 94826, - [SMALL_STATE(3415)] = 94840, - [SMALL_STATE(3416)] = 94854, - [SMALL_STATE(3417)] = 94868, - [SMALL_STATE(3418)] = 94882, - [SMALL_STATE(3419)] = 94896, - [SMALL_STATE(3420)] = 94910, - [SMALL_STATE(3421)] = 94924, - [SMALL_STATE(3422)] = 94938, - [SMALL_STATE(3423)] = 94952, - [SMALL_STATE(3424)] = 94966, - [SMALL_STATE(3425)] = 94980, - [SMALL_STATE(3426)] = 94994, - [SMALL_STATE(3427)] = 95008, - [SMALL_STATE(3428)] = 95022, - [SMALL_STATE(3429)] = 95036, - [SMALL_STATE(3430)] = 95050, - [SMALL_STATE(3431)] = 95064, - [SMALL_STATE(3432)] = 95078, - [SMALL_STATE(3433)] = 95092, - [SMALL_STATE(3434)] = 95106, - [SMALL_STATE(3435)] = 95120, - [SMALL_STATE(3436)] = 95134, - [SMALL_STATE(3437)] = 95148, - [SMALL_STATE(3438)] = 95162, - [SMALL_STATE(3439)] = 95176, - [SMALL_STATE(3440)] = 95190, - [SMALL_STATE(3441)] = 95204, - [SMALL_STATE(3442)] = 95218, - [SMALL_STATE(3443)] = 95232, - [SMALL_STATE(3444)] = 95246, - [SMALL_STATE(3445)] = 95260, - [SMALL_STATE(3446)] = 95274, - [SMALL_STATE(3447)] = 95288, - [SMALL_STATE(3448)] = 95302, - [SMALL_STATE(3449)] = 95316, - [SMALL_STATE(3450)] = 95330, - [SMALL_STATE(3451)] = 95344, - [SMALL_STATE(3452)] = 95358, - [SMALL_STATE(3453)] = 95372, - [SMALL_STATE(3454)] = 95386, - [SMALL_STATE(3455)] = 95400, - [SMALL_STATE(3456)] = 95414, - [SMALL_STATE(3457)] = 95428, - [SMALL_STATE(3458)] = 95442, - [SMALL_STATE(3459)] = 95456, - [SMALL_STATE(3460)] = 95470, - [SMALL_STATE(3461)] = 95484, - [SMALL_STATE(3462)] = 95498, - [SMALL_STATE(3463)] = 95512, - [SMALL_STATE(3464)] = 95526, - [SMALL_STATE(3465)] = 95540, - [SMALL_STATE(3466)] = 95554, - [SMALL_STATE(3467)] = 95568, - [SMALL_STATE(3468)] = 95582, - [SMALL_STATE(3469)] = 95596, - [SMALL_STATE(3470)] = 95610, - [SMALL_STATE(3471)] = 95624, - [SMALL_STATE(3472)] = 95638, - [SMALL_STATE(3473)] = 95652, - [SMALL_STATE(3474)] = 95666, - [SMALL_STATE(3475)] = 95680, - [SMALL_STATE(3476)] = 95694, - [SMALL_STATE(3477)] = 95708, - [SMALL_STATE(3478)] = 95722, - [SMALL_STATE(3479)] = 95736, - [SMALL_STATE(3480)] = 95750, - [SMALL_STATE(3481)] = 95764, - [SMALL_STATE(3482)] = 95778, - [SMALL_STATE(3483)] = 95792, - [SMALL_STATE(3484)] = 95806, - [SMALL_STATE(3485)] = 95820, - [SMALL_STATE(3486)] = 95834, - [SMALL_STATE(3487)] = 95848, - [SMALL_STATE(3488)] = 95862, - [SMALL_STATE(3489)] = 95876, - [SMALL_STATE(3490)] = 95890, - [SMALL_STATE(3491)] = 95904, - [SMALL_STATE(3492)] = 95918, - [SMALL_STATE(3493)] = 95932, - [SMALL_STATE(3494)] = 95946, - [SMALL_STATE(3495)] = 95960, - [SMALL_STATE(3496)] = 95974, - [SMALL_STATE(3497)] = 95988, - [SMALL_STATE(3498)] = 96002, - [SMALL_STATE(3499)] = 96016, - [SMALL_STATE(3500)] = 96030, - [SMALL_STATE(3501)] = 96044, - [SMALL_STATE(3502)] = 96058, - [SMALL_STATE(3503)] = 96072, - [SMALL_STATE(3504)] = 96086, - [SMALL_STATE(3505)] = 96100, - [SMALL_STATE(3506)] = 96114, - [SMALL_STATE(3507)] = 96128, - [SMALL_STATE(3508)] = 96142, - [SMALL_STATE(3509)] = 96156, - [SMALL_STATE(3510)] = 96170, - [SMALL_STATE(3511)] = 96184, - [SMALL_STATE(3512)] = 96198, - [SMALL_STATE(3513)] = 96212, - [SMALL_STATE(3514)] = 96226, - [SMALL_STATE(3515)] = 96240, - [SMALL_STATE(3516)] = 96254, - [SMALL_STATE(3517)] = 96268, - [SMALL_STATE(3518)] = 96282, - [SMALL_STATE(3519)] = 96296, - [SMALL_STATE(3520)] = 96310, - [SMALL_STATE(3521)] = 96324, - [SMALL_STATE(3522)] = 96338, - [SMALL_STATE(3523)] = 96352, - [SMALL_STATE(3524)] = 96366, - [SMALL_STATE(3525)] = 96380, - [SMALL_STATE(3526)] = 96394, - [SMALL_STATE(3527)] = 96408, - [SMALL_STATE(3528)] = 96422, - [SMALL_STATE(3529)] = 96436, - [SMALL_STATE(3530)] = 96450, - [SMALL_STATE(3531)] = 96464, - [SMALL_STATE(3532)] = 96478, - [SMALL_STATE(3533)] = 96492, - [SMALL_STATE(3534)] = 96506, - [SMALL_STATE(3535)] = 96520, - [SMALL_STATE(3536)] = 96534, - [SMALL_STATE(3537)] = 96548, - [SMALL_STATE(3538)] = 96562, - [SMALL_STATE(3539)] = 96576, - [SMALL_STATE(3540)] = 96590, - [SMALL_STATE(3541)] = 96604, - [SMALL_STATE(3542)] = 96618, - [SMALL_STATE(3543)] = 96632, - [SMALL_STATE(3544)] = 96646, - [SMALL_STATE(3545)] = 96660, - [SMALL_STATE(3546)] = 96674, - [SMALL_STATE(3547)] = 96688, - [SMALL_STATE(3548)] = 96702, - [SMALL_STATE(3549)] = 96716, - [SMALL_STATE(3550)] = 96730, - [SMALL_STATE(3551)] = 96744, - [SMALL_STATE(3552)] = 96758, - [SMALL_STATE(3553)] = 96772, - [SMALL_STATE(3554)] = 96786, - [SMALL_STATE(3555)] = 96800, - [SMALL_STATE(3556)] = 96814, - [SMALL_STATE(3557)] = 96828, - [SMALL_STATE(3558)] = 96842, - [SMALL_STATE(3559)] = 96856, - [SMALL_STATE(3560)] = 96870, - [SMALL_STATE(3561)] = 96884, - [SMALL_STATE(3562)] = 96898, - [SMALL_STATE(3563)] = 96912, - [SMALL_STATE(3564)] = 96926, - [SMALL_STATE(3565)] = 96940, - [SMALL_STATE(3566)] = 96954, - [SMALL_STATE(3567)] = 96968, - [SMALL_STATE(3568)] = 96982, - [SMALL_STATE(3569)] = 96996, - [SMALL_STATE(3570)] = 97010, - [SMALL_STATE(3571)] = 97024, - [SMALL_STATE(3572)] = 97038, - [SMALL_STATE(3573)] = 97052, - [SMALL_STATE(3574)] = 97066, - [SMALL_STATE(3575)] = 97080, - [SMALL_STATE(3576)] = 97094, - [SMALL_STATE(3577)] = 97108, - [SMALL_STATE(3578)] = 97122, - [SMALL_STATE(3579)] = 97136, - [SMALL_STATE(3580)] = 97150, - [SMALL_STATE(3581)] = 97164, - [SMALL_STATE(3582)] = 97178, - [SMALL_STATE(3583)] = 97192, - [SMALL_STATE(3584)] = 97206, - [SMALL_STATE(3585)] = 97220, - [SMALL_STATE(3586)] = 97234, - [SMALL_STATE(3587)] = 97248, - [SMALL_STATE(3588)] = 97262, - [SMALL_STATE(3589)] = 97276, - [SMALL_STATE(3590)] = 97290, - [SMALL_STATE(3591)] = 97304, - [SMALL_STATE(3592)] = 97318, - [SMALL_STATE(3593)] = 97332, - [SMALL_STATE(3594)] = 97346, - [SMALL_STATE(3595)] = 97360, - [SMALL_STATE(3596)] = 97374, - [SMALL_STATE(3597)] = 97388, - [SMALL_STATE(3598)] = 97402, - [SMALL_STATE(3599)] = 97416, - [SMALL_STATE(3600)] = 97430, - [SMALL_STATE(3601)] = 97444, - [SMALL_STATE(3602)] = 97458, - [SMALL_STATE(3603)] = 97472, - [SMALL_STATE(3604)] = 97486, - [SMALL_STATE(3605)] = 97500, - [SMALL_STATE(3606)] = 97514, - [SMALL_STATE(3607)] = 97528, - [SMALL_STATE(3608)] = 97542, - [SMALL_STATE(3609)] = 97556, - [SMALL_STATE(3610)] = 97570, - [SMALL_STATE(3611)] = 97584, - [SMALL_STATE(3612)] = 97598, - [SMALL_STATE(3613)] = 97612, - [SMALL_STATE(3614)] = 97626, - [SMALL_STATE(3615)] = 97640, - [SMALL_STATE(3616)] = 97654, - [SMALL_STATE(3617)] = 97668, - [SMALL_STATE(3618)] = 97682, - [SMALL_STATE(3619)] = 97696, - [SMALL_STATE(3620)] = 97710, - [SMALL_STATE(3621)] = 97724, - [SMALL_STATE(3622)] = 97738, - [SMALL_STATE(3623)] = 97752, - [SMALL_STATE(3624)] = 97766, - [SMALL_STATE(3625)] = 97780, - [SMALL_STATE(3626)] = 97794, - [SMALL_STATE(3627)] = 97808, - [SMALL_STATE(3628)] = 97822, - [SMALL_STATE(3629)] = 97836, - [SMALL_STATE(3630)] = 97850, - [SMALL_STATE(3631)] = 97864, - [SMALL_STATE(3632)] = 97878, - [SMALL_STATE(3633)] = 97892, - [SMALL_STATE(3634)] = 97906, - [SMALL_STATE(3635)] = 97920, - [SMALL_STATE(3636)] = 97934, - [SMALL_STATE(3637)] = 97948, - [SMALL_STATE(3638)] = 97962, - [SMALL_STATE(3639)] = 97976, - [SMALL_STATE(3640)] = 97990, - [SMALL_STATE(3641)] = 98004, - [SMALL_STATE(3642)] = 98018, - [SMALL_STATE(3643)] = 98032, - [SMALL_STATE(3644)] = 98046, - [SMALL_STATE(3645)] = 98060, - [SMALL_STATE(3646)] = 98074, - [SMALL_STATE(3647)] = 98088, - [SMALL_STATE(3648)] = 98102, - [SMALL_STATE(3649)] = 98116, - [SMALL_STATE(3650)] = 98130, - [SMALL_STATE(3651)] = 98144, - [SMALL_STATE(3652)] = 98158, - [SMALL_STATE(3653)] = 98172, - [SMALL_STATE(3654)] = 98186, - [SMALL_STATE(3655)] = 98200, - [SMALL_STATE(3656)] = 98214, - [SMALL_STATE(3657)] = 98228, - [SMALL_STATE(3658)] = 98242, - [SMALL_STATE(3659)] = 98256, - [SMALL_STATE(3660)] = 98270, - [SMALL_STATE(3661)] = 98274, - [SMALL_STATE(3662)] = 98278, - [SMALL_STATE(3663)] = 98282, - [SMALL_STATE(3664)] = 98286, - [SMALL_STATE(3665)] = 98290, - [SMALL_STATE(3666)] = 98294, + [SMALL_STATE(1556)] = 34330, + [SMALL_STATE(1557)] = 34385, + [SMALL_STATE(1558)] = 34444, + [SMALL_STATE(1559)] = 34499, + [SMALL_STATE(1560)] = 34556, + [SMALL_STATE(1561)] = 34611, + [SMALL_STATE(1562)] = 34668, + [SMALL_STATE(1563)] = 34723, + [SMALL_STATE(1564)] = 34778, + [SMALL_STATE(1565)] = 34833, + [SMALL_STATE(1566)] = 34888, + [SMALL_STATE(1567)] = 34947, + [SMALL_STATE(1568)] = 35042, + [SMALL_STATE(1569)] = 35137, + [SMALL_STATE(1570)] = 35232, + [SMALL_STATE(1571)] = 35327, + [SMALL_STATE(1572)] = 35386, + [SMALL_STATE(1573)] = 35475, + [SMALL_STATE(1574)] = 35570, + [SMALL_STATE(1575)] = 35665, + [SMALL_STATE(1576)] = 35760, + [SMALL_STATE(1577)] = 35817, + [SMALL_STATE(1578)] = 35912, + [SMALL_STATE(1579)] = 36007, + [SMALL_STATE(1580)] = 36062, + [SMALL_STATE(1581)] = 36157, + [SMALL_STATE(1582)] = 36252, + [SMALL_STATE(1583)] = 36309, + [SMALL_STATE(1584)] = 36366, + [SMALL_STATE(1585)] = 36425, + [SMALL_STATE(1586)] = 36514, + [SMALL_STATE(1587)] = 36571, + [SMALL_STATE(1588)] = 36660, + [SMALL_STATE(1589)] = 36717, + [SMALL_STATE(1590)] = 36803, + [SMALL_STATE(1591)] = 36891, + [SMALL_STATE(1592)] = 36949, + [SMALL_STATE(1593)] = 37003, + [SMALL_STATE(1594)] = 37059, + [SMALL_STATE(1595)] = 37113, + [SMALL_STATE(1596)] = 37167, + [SMALL_STATE(1597)] = 37221, + [SMALL_STATE(1598)] = 37275, + [SMALL_STATE(1599)] = 37329, + [SMALL_STATE(1600)] = 37385, + [SMALL_STATE(1601)] = 37441, + [SMALL_STATE(1602)] = 37497, + [SMALL_STATE(1603)] = 37579, + [SMALL_STATE(1604)] = 37665, + [SMALL_STATE(1605)] = 37751, + [SMALL_STATE(1606)] = 37837, + [SMALL_STATE(1607)] = 37925, + [SMALL_STATE(1608)] = 37981, + [SMALL_STATE(1609)] = 38073, + [SMALL_STATE(1610)] = 38127, + [SMALL_STATE(1611)] = 38219, + [SMALL_STATE(1612)] = 38273, + [SMALL_STATE(1613)] = 38365, + [SMALL_STATE(1614)] = 38419, + [SMALL_STATE(1615)] = 38473, + [SMALL_STATE(1616)] = 38561, + [SMALL_STATE(1617)] = 38615, + [SMALL_STATE(1618)] = 38669, + [SMALL_STATE(1619)] = 38725, + [SMALL_STATE(1620)] = 38781, + [SMALL_STATE(1621)] = 38837, + [SMALL_STATE(1622)] = 38901, + [SMALL_STATE(1623)] = 38957, + [SMALL_STATE(1624)] = 39013, + [SMALL_STATE(1625)] = 39083, + [SMALL_STATE(1626)] = 39137, + [SMALL_STATE(1627)] = 39193, + [SMALL_STATE(1628)] = 39261, + [SMALL_STATE(1629)] = 39353, + [SMALL_STATE(1630)] = 39425, + [SMALL_STATE(1631)] = 39503, + [SMALL_STATE(1632)] = 39583, + [SMALL_STATE(1633)] = 39649, + [SMALL_STATE(1634)] = 39735, + [SMALL_STATE(1635)] = 39791, + [SMALL_STATE(1636)] = 39877, + [SMALL_STATE(1637)] = 39965, + [SMALL_STATE(1638)] = 40039, + [SMALL_STATE(1639)] = 40095, + [SMALL_STATE(1640)] = 40149, + [SMALL_STATE(1641)] = 40203, + [SMALL_STATE(1642)] = 40257, + [SMALL_STATE(1643)] = 40339, + [SMALL_STATE(1644)] = 40431, + [SMALL_STATE(1645)] = 40523, + [SMALL_STATE(1646)] = 40579, + [SMALL_STATE(1647)] = 40635, + [SMALL_STATE(1648)] = 40723, + [SMALL_STATE(1649)] = 40803, + [SMALL_STATE(1650)] = 40859, + [SMALL_STATE(1651)] = 40948, + [SMALL_STATE(1652)] = 41001, + [SMALL_STATE(1653)] = 41088, + [SMALL_STATE(1654)] = 41141, + [SMALL_STATE(1655)] = 41194, + [SMALL_STATE(1656)] = 41247, + [SMALL_STATE(1657)] = 41336, + [SMALL_STATE(1658)] = 41395, + [SMALL_STATE(1659)] = 41448, + [SMALL_STATE(1660)] = 41501, + [SMALL_STATE(1661)] = 41554, + [SMALL_STATE(1662)] = 41607, + [SMALL_STATE(1663)] = 41660, + [SMALL_STATE(1664)] = 41713, + [SMALL_STATE(1665)] = 41766, + [SMALL_STATE(1666)] = 41819, + [SMALL_STATE(1667)] = 41906, + [SMALL_STATE(1668)] = 41959, + [SMALL_STATE(1669)] = 42012, + [SMALL_STATE(1670)] = 42097, + [SMALL_STATE(1671)] = 42150, + [SMALL_STATE(1672)] = 42213, + [SMALL_STATE(1673)] = 42266, + [SMALL_STATE(1674)] = 42353, + [SMALL_STATE(1675)] = 42406, + [SMALL_STATE(1676)] = 42469, + [SMALL_STATE(1677)] = 42538, + [SMALL_STATE(1678)] = 42605, + [SMALL_STATE(1679)] = 42676, + [SMALL_STATE(1680)] = 42753, + [SMALL_STATE(1681)] = 42832, + [SMALL_STATE(1682)] = 42897, + [SMALL_STATE(1683)] = 42982, + [SMALL_STATE(1684)] = 43067, + [SMALL_STATE(1685)] = 43140, + [SMALL_STATE(1686)] = 43221, + [SMALL_STATE(1687)] = 43274, + [SMALL_STATE(1688)] = 43327, + [SMALL_STATE(1689)] = 43380, + [SMALL_STATE(1690)] = 43433, + [SMALL_STATE(1691)] = 43486, + [SMALL_STATE(1692)] = 43573, + [SMALL_STATE(1693)] = 43626, + [SMALL_STATE(1694)] = 43679, + [SMALL_STATE(1695)] = 43732, + [SMALL_STATE(1696)] = 43785, + [SMALL_STATE(1697)] = 43838, + [SMALL_STATE(1698)] = 43891, + [SMALL_STATE(1699)] = 43944, + [SMALL_STATE(1700)] = 43997, + [SMALL_STATE(1701)] = 44050, + [SMALL_STATE(1702)] = 44103, + [SMALL_STATE(1703)] = 44156, + [SMALL_STATE(1704)] = 44243, + [SMALL_STATE(1705)] = 44296, + [SMALL_STATE(1706)] = 44349, + [SMALL_STATE(1707)] = 44436, + [SMALL_STATE(1708)] = 44489, + [SMALL_STATE(1709)] = 44542, + [SMALL_STATE(1710)] = 44629, + [SMALL_STATE(1711)] = 44682, + [SMALL_STATE(1712)] = 44735, + [SMALL_STATE(1713)] = 44822, + [SMALL_STATE(1714)] = 44891, + [SMALL_STATE(1715)] = 44958, + [SMALL_STATE(1716)] = 45029, + [SMALL_STATE(1717)] = 45082, + [SMALL_STATE(1718)] = 45135, + [SMALL_STATE(1719)] = 45212, + [SMALL_STATE(1720)] = 45291, + [SMALL_STATE(1721)] = 45350, + [SMALL_STATE(1722)] = 45415, + [SMALL_STATE(1723)] = 45468, + [SMALL_STATE(1724)] = 45557, + [SMALL_STATE(1725)] = 45642, + [SMALL_STATE(1726)] = 45731, + [SMALL_STATE(1727)] = 45816, + [SMALL_STATE(1728)] = 45905, + [SMALL_STATE(1729)] = 45994, + [SMALL_STATE(1730)] = 46083, + [SMALL_STATE(1731)] = 46136, + [SMALL_STATE(1732)] = 46209, + [SMALL_STATE(1733)] = 46290, + [SMALL_STATE(1734)] = 46379, + [SMALL_STATE(1735)] = 46432, + [SMALL_STATE(1736)] = 46485, + [SMALL_STATE(1737)] = 46538, + [SMALL_STATE(1738)] = 46591, + [SMALL_STATE(1739)] = 46680, + [SMALL_STATE(1740)] = 46733, + [SMALL_STATE(1741)] = 46786, + [SMALL_STATE(1742)] = 46839, + [SMALL_STATE(1743)] = 46928, + [SMALL_STATE(1744)] = 47015, + [SMALL_STATE(1745)] = 47104, + [SMALL_STATE(1746)] = 47157, + [SMALL_STATE(1747)] = 47246, + [SMALL_STATE(1748)] = 47335, + [SMALL_STATE(1749)] = 47422, + [SMALL_STATE(1750)] = 47503, + [SMALL_STATE(1751)] = 47592, + [SMALL_STATE(1752)] = 47679, + [SMALL_STATE(1753)] = 47732, + [SMALL_STATE(1754)] = 47785, + [SMALL_STATE(1755)] = 47838, + [SMALL_STATE(1756)] = 47927, + [SMALL_STATE(1757)] = 47980, + [SMALL_STATE(1758)] = 48033, + [SMALL_STATE(1759)] = 48122, + [SMALL_STATE(1760)] = 48211, + [SMALL_STATE(1761)] = 48300, + [SMALL_STATE(1762)] = 48353, + [SMALL_STATE(1763)] = 48406, + [SMALL_STATE(1764)] = 48495, + [SMALL_STATE(1765)] = 48582, + [SMALL_STATE(1766)] = 48635, + [SMALL_STATE(1767)] = 48712, + [SMALL_STATE(1768)] = 48765, + [SMALL_STATE(1769)] = 48854, + [SMALL_STATE(1770)] = 48943, + [SMALL_STATE(1771)] = 48996, + [SMALL_STATE(1772)] = 49049, + [SMALL_STATE(1773)] = 49102, + [SMALL_STATE(1774)] = 49191, + [SMALL_STATE(1775)] = 49244, + [SMALL_STATE(1776)] = 49297, + [SMALL_STATE(1777)] = 49378, + [SMALL_STATE(1778)] = 49463, + [SMALL_STATE(1779)] = 49552, + [SMALL_STATE(1780)] = 49637, + [SMALL_STATE(1781)] = 49722, + [SMALL_STATE(1782)] = 49811, + [SMALL_STATE(1783)] = 49864, + [SMALL_STATE(1784)] = 49917, + [SMALL_STATE(1785)] = 50004, + [SMALL_STATE(1786)] = 50065, + [SMALL_STATE(1787)] = 50154, + [SMALL_STATE(1788)] = 50243, + [SMALL_STATE(1789)] = 50330, + [SMALL_STATE(1790)] = 50419, + [SMALL_STATE(1791)] = 50504, + [SMALL_STATE(1792)] = 50591, + [SMALL_STATE(1793)] = 50644, + [SMALL_STATE(1794)] = 50733, + [SMALL_STATE(1795)] = 50786, + [SMALL_STATE(1796)] = 50875, + [SMALL_STATE(1797)] = 50964, + [SMALL_STATE(1798)] = 51053, + [SMALL_STATE(1799)] = 51106, + [SMALL_STATE(1800)] = 51159, + [SMALL_STATE(1801)] = 51212, + [SMALL_STATE(1802)] = 51265, + [SMALL_STATE(1803)] = 51354, + [SMALL_STATE(1804)] = 51439, + [SMALL_STATE(1805)] = 51528, + [SMALL_STATE(1806)] = 51581, + [SMALL_STATE(1807)] = 51634, + [SMALL_STATE(1808)] = 51687, + [SMALL_STATE(1809)] = 51776, + [SMALL_STATE(1810)] = 51829, + [SMALL_STATE(1811)] = 51918, + [SMALL_STATE(1812)] = 51971, + [SMALL_STATE(1813)] = 52024, + [SMALL_STATE(1814)] = 52077, + [SMALL_STATE(1815)] = 52166, + [SMALL_STATE(1816)] = 52255, + [SMALL_STATE(1817)] = 52344, + [SMALL_STATE(1818)] = 52397, + [SMALL_STATE(1819)] = 52486, + [SMALL_STATE(1820)] = 52575, + [SMALL_STATE(1821)] = 52664, + [SMALL_STATE(1822)] = 52753, + [SMALL_STATE(1823)] = 52842, + [SMALL_STATE(1824)] = 52931, + [SMALL_STATE(1825)] = 53020, + [SMALL_STATE(1826)] = 53109, + [SMALL_STATE(1827)] = 53198, + [SMALL_STATE(1828)] = 53251, + [SMALL_STATE(1829)] = 53336, + [SMALL_STATE(1830)] = 53389, + [SMALL_STATE(1831)] = 53442, + [SMALL_STATE(1832)] = 53495, + [SMALL_STATE(1833)] = 53548, + [SMALL_STATE(1834)] = 53635, + [SMALL_STATE(1835)] = 53712, + [SMALL_STATE(1836)] = 53799, + [SMALL_STATE(1837)] = 53852, + [SMALL_STATE(1838)] = 53905, + [SMALL_STATE(1839)] = 53958, + [SMALL_STATE(1840)] = 54011, + [SMALL_STATE(1841)] = 54098, + [SMALL_STATE(1842)] = 54151, + [SMALL_STATE(1843)] = 54236, + [SMALL_STATE(1844)] = 54289, + [SMALL_STATE(1845)] = 54342, + [SMALL_STATE(1846)] = 54401, + [SMALL_STATE(1847)] = 54490, + [SMALL_STATE(1848)] = 54579, + [SMALL_STATE(1849)] = 54632, + [SMALL_STATE(1850)] = 54685, + [SMALL_STATE(1851)] = 54738, + [SMALL_STATE(1852)] = 54791, + [SMALL_STATE(1853)] = 54880, + [SMALL_STATE(1854)] = 54933, + [SMALL_STATE(1855)] = 55018, + [SMALL_STATE(1856)] = 55105, + [SMALL_STATE(1857)] = 55158, + [SMALL_STATE(1858)] = 55217, + [SMALL_STATE(1859)] = 55270, + [SMALL_STATE(1860)] = 55355, + [SMALL_STATE(1861)] = 55441, + [SMALL_STATE(1862)] = 55527, + [SMALL_STATE(1863)] = 55613, + [SMALL_STATE(1864)] = 55699, + [SMALL_STATE(1865)] = 55785, + [SMALL_STATE(1866)] = 55871, + [SMALL_STATE(1867)] = 55945, + [SMALL_STATE(1868)] = 56031, + [SMALL_STATE(1869)] = 56115, + [SMALL_STATE(1870)] = 56201, + [SMALL_STATE(1871)] = 56287, + [SMALL_STATE(1872)] = 56373, + [SMALL_STATE(1873)] = 56447, + [SMALL_STATE(1874)] = 56533, + [SMALL_STATE(1875)] = 56619, + [SMALL_STATE(1876)] = 56705, + [SMALL_STATE(1877)] = 56791, + [SMALL_STATE(1878)] = 56877, + [SMALL_STATE(1879)] = 56963, + [SMALL_STATE(1880)] = 57037, + [SMALL_STATE(1881)] = 57123, + [SMALL_STATE(1882)] = 57209, + [SMALL_STATE(1883)] = 57283, + [SMALL_STATE(1884)] = 57369, + [SMALL_STATE(1885)] = 57455, + [SMALL_STATE(1886)] = 57541, + [SMALL_STATE(1887)] = 57627, + [SMALL_STATE(1888)] = 57713, + [SMALL_STATE(1889)] = 57787, + [SMALL_STATE(1890)] = 57873, + [SMALL_STATE(1891)] = 57959, + [SMALL_STATE(1892)] = 58045, + [SMALL_STATE(1893)] = 58131, + [SMALL_STATE(1894)] = 58217, + [SMALL_STATE(1895)] = 58303, + [SMALL_STATE(1896)] = 58387, + [SMALL_STATE(1897)] = 58473, + [SMALL_STATE(1898)] = 58548, + [SMALL_STATE(1899)] = 58623, + [SMALL_STATE(1900)] = 58698, + [SMALL_STATE(1901)] = 58773, + [SMALL_STATE(1902)] = 58848, + [SMALL_STATE(1903)] = 58923, + [SMALL_STATE(1904)] = 58998, + [SMALL_STATE(1905)] = 59073, + [SMALL_STATE(1906)] = 59120, + [SMALL_STATE(1907)] = 59167, + [SMALL_STATE(1908)] = 59214, + [SMALL_STATE(1909)] = 59276, + [SMALL_STATE(1910)] = 59338, + [SMALL_STATE(1911)] = 59400, + [SMALL_STATE(1912)] = 59462, + [SMALL_STATE(1913)] = 59524, + [SMALL_STATE(1914)] = 59586, + [SMALL_STATE(1915)] = 59648, + [SMALL_STATE(1916)] = 59710, + [SMALL_STATE(1917)] = 59769, + [SMALL_STATE(1918)] = 59828, + [SMALL_STATE(1919)] = 59864, + [SMALL_STATE(1920)] = 59900, + [SMALL_STATE(1921)] = 59948, + [SMALL_STATE(1922)] = 59985, + [SMALL_STATE(1923)] = 60030, + [SMALL_STATE(1924)] = 60083, + [SMALL_STATE(1925)] = 60120, + [SMALL_STATE(1926)] = 60157, + [SMALL_STATE(1927)] = 60202, + [SMALL_STATE(1928)] = 60239, + [SMALL_STATE(1929)] = 60284, + [SMALL_STATE(1930)] = 60324, + [SMALL_STATE(1931)] = 60360, + [SMALL_STATE(1932)] = 60396, + [SMALL_STATE(1933)] = 60436, + [SMALL_STATE(1934)] = 60476, + [SMALL_STATE(1935)] = 60510, + [SMALL_STATE(1936)] = 60546, + [SMALL_STATE(1937)] = 60580, + [SMALL_STATE(1938)] = 60620, + [SMALL_STATE(1939)] = 60654, + [SMALL_STATE(1940)] = 60690, + [SMALL_STATE(1941)] = 60724, + [SMALL_STATE(1942)] = 60775, + [SMALL_STATE(1943)] = 60808, + [SMALL_STATE(1944)] = 60841, + [SMALL_STATE(1945)] = 60874, + [SMALL_STATE(1946)] = 60907, + [SMALL_STATE(1947)] = 60938, + [SMALL_STATE(1948)] = 60982, + [SMALL_STATE(1949)] = 61014, + [SMALL_STATE(1950)] = 61074, + [SMALL_STATE(1951)] = 61106, + [SMALL_STATE(1952)] = 61138, + [SMALL_STATE(1953)] = 61198, + [SMALL_STATE(1954)] = 61244, + [SMALL_STATE(1955)] = 61299, + [SMALL_STATE(1956)] = 61332, + [SMALL_STATE(1957)] = 61361, + [SMALL_STATE(1958)] = 61390, + [SMALL_STATE(1959)] = 61423, + [SMALL_STATE(1960)] = 61452, + [SMALL_STATE(1961)] = 61481, + [SMALL_STATE(1962)] = 61512, + [SMALL_STATE(1963)] = 61545, + [SMALL_STATE(1964)] = 61576, + [SMALL_STATE(1965)] = 61609, + [SMALL_STATE(1966)] = 61642, + [SMALL_STATE(1967)] = 61673, + [SMALL_STATE(1968)] = 61704, + [SMALL_STATE(1969)] = 61757, + [SMALL_STATE(1970)] = 61786, + [SMALL_STATE(1971)] = 61817, + [SMALL_STATE(1972)] = 61870, + [SMALL_STATE(1973)] = 61899, + [SMALL_STATE(1974)] = 61930, + [SMALL_STATE(1975)] = 61959, + [SMALL_STATE(1976)] = 61990, + [SMALL_STATE(1977)] = 62023, + [SMALL_STATE(1978)] = 62052, + [SMALL_STATE(1979)] = 62081, + [SMALL_STATE(1980)] = 62122, + [SMALL_STATE(1981)] = 62165, + [SMALL_STATE(1982)] = 62196, + [SMALL_STATE(1983)] = 62224, + [SMALL_STATE(1984)] = 62252, + [SMALL_STATE(1985)] = 62280, + [SMALL_STATE(1986)] = 62308, + [SMALL_STATE(1987)] = 62336, + [SMALL_STATE(1988)] = 62364, + [SMALL_STATE(1989)] = 62392, + [SMALL_STATE(1990)] = 62420, + [SMALL_STATE(1991)] = 62448, + [SMALL_STATE(1992)] = 62478, + [SMALL_STATE(1993)] = 62506, + [SMALL_STATE(1994)] = 62534, + [SMALL_STATE(1995)] = 62562, + [SMALL_STATE(1996)] = 62590, + [SMALL_STATE(1997)] = 62618, + [SMALL_STATE(1998)] = 62646, + [SMALL_STATE(1999)] = 62674, + [SMALL_STATE(2000)] = 62702, + [SMALL_STATE(2001)] = 62746, + [SMALL_STATE(2002)] = 62774, + [SMALL_STATE(2003)] = 62802, + [SMALL_STATE(2004)] = 62830, + [SMALL_STATE(2005)] = 62858, + [SMALL_STATE(2006)] = 62886, + [SMALL_STATE(2007)] = 62914, + [SMALL_STATE(2008)] = 62944, + [SMALL_STATE(2009)] = 62972, + [SMALL_STATE(2010)] = 63000, + [SMALL_STATE(2011)] = 63028, + [SMALL_STATE(2012)] = 63056, + [SMALL_STATE(2013)] = 63084, + [SMALL_STATE(2014)] = 63112, + [SMALL_STATE(2015)] = 63141, + [SMALL_STATE(2016)] = 63172, + [SMALL_STATE(2017)] = 63201, + [SMALL_STATE(2018)] = 63236, + [SMALL_STATE(2019)] = 63265, + [SMALL_STATE(2020)] = 63297, + [SMALL_STATE(2021)] = 63329, + [SMALL_STATE(2022)] = 63361, + [SMALL_STATE(2023)] = 63393, + [SMALL_STATE(2024)] = 63425, + [SMALL_STATE(2025)] = 63471, + [SMALL_STATE(2026)] = 63503, + [SMALL_STATE(2027)] = 63547, + [SMALL_STATE(2028)] = 63579, + [SMALL_STATE(2029)] = 63611, + [SMALL_STATE(2030)] = 63643, + [SMALL_STATE(2031)] = 63673, + [SMALL_STATE(2032)] = 63701, + [SMALL_STATE(2033)] = 63733, + [SMALL_STATE(2034)] = 63765, + [SMALL_STATE(2035)] = 63797, + [SMALL_STATE(2036)] = 63840, + [SMALL_STATE(2037)] = 63869, + [SMALL_STATE(2038)] = 63898, + [SMALL_STATE(2039)] = 63935, + [SMALL_STATE(2040)] = 63978, + [SMALL_STATE(2041)] = 64021, + [SMALL_STATE(2042)] = 64064, + [SMALL_STATE(2043)] = 64107, + [SMALL_STATE(2044)] = 64150, + [SMALL_STATE(2045)] = 64188, + [SMALL_STATE(2046)] = 64216, + [SMALL_STATE(2047)] = 64254, + [SMALL_STATE(2048)] = 64294, + [SMALL_STATE(2049)] = 64318, + [SMALL_STATE(2050)] = 64346, + [SMALL_STATE(2051)] = 64386, + [SMALL_STATE(2052)] = 64410, + [SMALL_STATE(2053)] = 64450, + [SMALL_STATE(2054)] = 64480, + [SMALL_STATE(2055)] = 64508, + [SMALL_STATE(2056)] = 64546, + [SMALL_STATE(2057)] = 64586, + [SMALL_STATE(2058)] = 64626, + [SMALL_STATE(2059)] = 64660, + [SMALL_STATE(2060)] = 64698, + [SMALL_STATE(2061)] = 64722, + [SMALL_STATE(2062)] = 64762, + [SMALL_STATE(2063)] = 64792, + [SMALL_STATE(2064)] = 64820, + [SMALL_STATE(2065)] = 64848, + [SMALL_STATE(2066)] = 64888, + [SMALL_STATE(2067)] = 64928, + [SMALL_STATE(2068)] = 64956, + [SMALL_STATE(2069)] = 64996, + [SMALL_STATE(2070)] = 65030, + [SMALL_STATE(2071)] = 65068, + [SMALL_STATE(2072)] = 65092, + [SMALL_STATE(2073)] = 65120, + [SMALL_STATE(2074)] = 65160, + [SMALL_STATE(2075)] = 65188, + [SMALL_STATE(2076)] = 65218, + [SMALL_STATE(2077)] = 65246, + [SMALL_STATE(2078)] = 65276, + [SMALL_STATE(2079)] = 65314, + [SMALL_STATE(2080)] = 65352, + [SMALL_STATE(2081)] = 65390, + [SMALL_STATE(2082)] = 65414, + [SMALL_STATE(2083)] = 65442, + [SMALL_STATE(2084)] = 65470, + [SMALL_STATE(2085)] = 65498, + [SMALL_STATE(2086)] = 65536, + [SMALL_STATE(2087)] = 65559, + [SMALL_STATE(2088)] = 65582, + [SMALL_STATE(2089)] = 65623, + [SMALL_STATE(2090)] = 65646, + [SMALL_STATE(2091)] = 65687, + [SMALL_STATE(2092)] = 65710, + [SMALL_STATE(2093)] = 65741, + [SMALL_STATE(2094)] = 65764, + [SMALL_STATE(2095)] = 65787, + [SMALL_STATE(2096)] = 65810, + [SMALL_STATE(2097)] = 65833, + [SMALL_STATE(2098)] = 65856, + [SMALL_STATE(2099)] = 65879, + [SMALL_STATE(2100)] = 65902, + [SMALL_STATE(2101)] = 65925, + [SMALL_STATE(2102)] = 65956, + [SMALL_STATE(2103)] = 65979, + [SMALL_STATE(2104)] = 66002, + [SMALL_STATE(2105)] = 66039, + [SMALL_STATE(2106)] = 66074, + [SMALL_STATE(2107)] = 66097, + [SMALL_STATE(2108)] = 66120, + [SMALL_STATE(2109)] = 66143, + [SMALL_STATE(2110)] = 66166, + [SMALL_STATE(2111)] = 66189, + [SMALL_STATE(2112)] = 66212, + [SMALL_STATE(2113)] = 66253, + [SMALL_STATE(2114)] = 66290, + [SMALL_STATE(2115)] = 66313, + [SMALL_STATE(2116)] = 66336, + [SMALL_STATE(2117)] = 66359, + [SMALL_STATE(2118)] = 66396, + [SMALL_STATE(2119)] = 66427, + [SMALL_STATE(2120)] = 66450, + [SMALL_STATE(2121)] = 66473, + [SMALL_STATE(2122)] = 66496, + [SMALL_STATE(2123)] = 66531, + [SMALL_STATE(2124)] = 66572, + [SMALL_STATE(2125)] = 66595, + [SMALL_STATE(2126)] = 66628, + [SMALL_STATE(2127)] = 66651, + [SMALL_STATE(2128)] = 66688, + [SMALL_STATE(2129)] = 66711, + [SMALL_STATE(2130)] = 66734, + [SMALL_STATE(2131)] = 66769, + [SMALL_STATE(2132)] = 66792, + [SMALL_STATE(2133)] = 66815, + [SMALL_STATE(2134)] = 66838, + [SMALL_STATE(2135)] = 66861, + [SMALL_STATE(2136)] = 66884, + [SMALL_STATE(2137)] = 66907, + [SMALL_STATE(2138)] = 66938, + [SMALL_STATE(2139)] = 66966, + [SMALL_STATE(2140)] = 66998, + [SMALL_STATE(2141)] = 67036, + [SMALL_STATE(2142)] = 67060, + [SMALL_STATE(2143)] = 67092, + [SMALL_STATE(2144)] = 67126, + [SMALL_STATE(2145)] = 67164, + [SMALL_STATE(2146)] = 67196, + [SMALL_STATE(2147)] = 67234, + [SMALL_STATE(2148)] = 67272, + [SMALL_STATE(2149)] = 67300, + [SMALL_STATE(2150)] = 67338, + [SMALL_STATE(2151)] = 67374, + [SMALL_STATE(2152)] = 67412, + [SMALL_STATE(2153)] = 67450, + [SMALL_STATE(2154)] = 67488, + [SMALL_STATE(2155)] = 67526, + [SMALL_STATE(2156)] = 67560, + [SMALL_STATE(2157)] = 67598, + [SMALL_STATE(2158)] = 67626, + [SMALL_STATE(2159)] = 67652, + [SMALL_STATE(2160)] = 67690, + [SMALL_STATE(2161)] = 67714, + [SMALL_STATE(2162)] = 67746, + [SMALL_STATE(2163)] = 67778, + [SMALL_STATE(2164)] = 67810, + [SMALL_STATE(2165)] = 67838, + [SMALL_STATE(2166)] = 67870, + [SMALL_STATE(2167)] = 67908, + [SMALL_STATE(2168)] = 67946, + [SMALL_STATE(2169)] = 67974, + [SMALL_STATE(2170)] = 68006, + [SMALL_STATE(2171)] = 68034, + [SMALL_STATE(2172)] = 68058, + [SMALL_STATE(2173)] = 68090, + [SMALL_STATE(2174)] = 68118, + [SMALL_STATE(2175)] = 68150, + [SMALL_STATE(2176)] = 68188, + [SMALL_STATE(2177)] = 68220, + [SMALL_STATE(2178)] = 68244, + [SMALL_STATE(2179)] = 68270, + [SMALL_STATE(2180)] = 68296, + [SMALL_STATE(2181)] = 68322, + [SMALL_STATE(2182)] = 68346, + [SMALL_STATE(2183)] = 68378, + [SMALL_STATE(2184)] = 68416, + [SMALL_STATE(2185)] = 68448, + [SMALL_STATE(2186)] = 68486, + [SMALL_STATE(2187)] = 68521, + [SMALL_STATE(2188)] = 68542, + [SMALL_STATE(2189)] = 68577, + [SMALL_STATE(2190)] = 68612, + [SMALL_STATE(2191)] = 68647, + [SMALL_STATE(2192)] = 68682, + [SMALL_STATE(2193)] = 68717, + [SMALL_STATE(2194)] = 68752, + [SMALL_STATE(2195)] = 68787, + [SMALL_STATE(2196)] = 68822, + [SMALL_STATE(2197)] = 68857, + [SMALL_STATE(2198)] = 68882, + [SMALL_STATE(2199)] = 68903, + [SMALL_STATE(2200)] = 68938, + [SMALL_STATE(2201)] = 68963, + [SMALL_STATE(2202)] = 68998, + [SMALL_STATE(2203)] = 69033, + [SMALL_STATE(2204)] = 69068, + [SMALL_STATE(2205)] = 69097, + [SMALL_STATE(2206)] = 69130, + [SMALL_STATE(2207)] = 69165, + [SMALL_STATE(2208)] = 69200, + [SMALL_STATE(2209)] = 69235, + [SMALL_STATE(2210)] = 69270, + [SMALL_STATE(2211)] = 69291, + [SMALL_STATE(2212)] = 69324, + [SMALL_STATE(2213)] = 69359, + [SMALL_STATE(2214)] = 69394, + [SMALL_STATE(2215)] = 69429, + [SMALL_STATE(2216)] = 69464, + [SMALL_STATE(2217)] = 69499, + [SMALL_STATE(2218)] = 69534, + [SMALL_STATE(2219)] = 69569, + [SMALL_STATE(2220)] = 69604, + [SMALL_STATE(2221)] = 69639, + [SMALL_STATE(2222)] = 69664, + [SMALL_STATE(2223)] = 69691, + [SMALL_STATE(2224)] = 69726, + [SMALL_STATE(2225)] = 69761, + [SMALL_STATE(2226)] = 69794, + [SMALL_STATE(2227)] = 69829, + [SMALL_STATE(2228)] = 69864, + [SMALL_STATE(2229)] = 69899, + [SMALL_STATE(2230)] = 69934, + [SMALL_STATE(2231)] = 69967, + [SMALL_STATE(2232)] = 70002, + [SMALL_STATE(2233)] = 70037, + [SMALL_STATE(2234)] = 70070, + [SMALL_STATE(2235)] = 70105, + [SMALL_STATE(2236)] = 70140, + [SMALL_STATE(2237)] = 70175, + [SMALL_STATE(2238)] = 70196, + [SMALL_STATE(2239)] = 70217, + [SMALL_STATE(2240)] = 70238, + [SMALL_STATE(2241)] = 70273, + [SMALL_STATE(2242)] = 70308, + [SMALL_STATE(2243)] = 70338, + [SMALL_STATE(2244)] = 70364, + [SMALL_STATE(2245)] = 70396, + [SMALL_STATE(2246)] = 70426, + [SMALL_STATE(2247)] = 70458, + [SMALL_STATE(2248)] = 70490, + [SMALL_STATE(2249)] = 70522, + [SMALL_STATE(2250)] = 70554, + [SMALL_STATE(2251)] = 70586, + [SMALL_STATE(2252)] = 70618, + [SMALL_STATE(2253)] = 70650, + [SMALL_STATE(2254)] = 70682, + [SMALL_STATE(2255)] = 70714, + [SMALL_STATE(2256)] = 70746, + [SMALL_STATE(2257)] = 70778, + [SMALL_STATE(2258)] = 70810, + [SMALL_STATE(2259)] = 70842, + [SMALL_STATE(2260)] = 70874, + [SMALL_STATE(2261)] = 70906, + [SMALL_STATE(2262)] = 70938, + [SMALL_STATE(2263)] = 70970, + [SMALL_STATE(2264)] = 70998, + [SMALL_STATE(2265)] = 71024, + [SMALL_STATE(2266)] = 71054, + [SMALL_STATE(2267)] = 71086, + [SMALL_STATE(2268)] = 71116, + [SMALL_STATE(2269)] = 71148, + [SMALL_STATE(2270)] = 71176, + [SMALL_STATE(2271)] = 71206, + [SMALL_STATE(2272)] = 71238, + [SMALL_STATE(2273)] = 71268, + [SMALL_STATE(2274)] = 71296, + [SMALL_STATE(2275)] = 71322, + [SMALL_STATE(2276)] = 71354, + [SMALL_STATE(2277)] = 71376, + [SMALL_STATE(2278)] = 71398, + [SMALL_STATE(2279)] = 71430, + [SMALL_STATE(2280)] = 71462, + [SMALL_STATE(2281)] = 71494, + [SMALL_STATE(2282)] = 71524, + [SMALL_STATE(2283)] = 71556, + [SMALL_STATE(2284)] = 71586, + [SMALL_STATE(2285)] = 71612, + [SMALL_STATE(2286)] = 71642, + [SMALL_STATE(2287)] = 71664, + [SMALL_STATE(2288)] = 71696, + [SMALL_STATE(2289)] = 71724, + [SMALL_STATE(2290)] = 71746, + [SMALL_STATE(2291)] = 71778, + [SMALL_STATE(2292)] = 71810, + [SMALL_STATE(2293)] = 71832, + [SMALL_STATE(2294)] = 71864, + [SMALL_STATE(2295)] = 71896, + [SMALL_STATE(2296)] = 71918, + [SMALL_STATE(2297)] = 71950, + [SMALL_STATE(2298)] = 71982, + [SMALL_STATE(2299)] = 72012, + [SMALL_STATE(2300)] = 72040, + [SMALL_STATE(2301)] = 72069, + [SMALL_STATE(2302)] = 72098, + [SMALL_STATE(2303)] = 72127, + [SMALL_STATE(2304)] = 72156, + [SMALL_STATE(2305)] = 72185, + [SMALL_STATE(2306)] = 72212, + [SMALL_STATE(2307)] = 72241, + [SMALL_STATE(2308)] = 72264, + [SMALL_STATE(2309)] = 72293, + [SMALL_STATE(2310)] = 72318, + [SMALL_STATE(2311)] = 72347, + [SMALL_STATE(2312)] = 72376, + [SMALL_STATE(2313)] = 72405, + [SMALL_STATE(2314)] = 72434, + [SMALL_STATE(2315)] = 72455, + [SMALL_STATE(2316)] = 72484, + [SMALL_STATE(2317)] = 72505, + [SMALL_STATE(2318)] = 72534, + [SMALL_STATE(2319)] = 72557, + [SMALL_STATE(2320)] = 72578, + [SMALL_STATE(2321)] = 72605, + [SMALL_STATE(2322)] = 72634, + [SMALL_STATE(2323)] = 72663, + [SMALL_STATE(2324)] = 72692, + [SMALL_STATE(2325)] = 72717, + [SMALL_STATE(2326)] = 72738, + [SMALL_STATE(2327)] = 72767, + [SMALL_STATE(2328)] = 72794, + [SMALL_STATE(2329)] = 72819, + [SMALL_STATE(2330)] = 72842, + [SMALL_STATE(2331)] = 72871, + [SMALL_STATE(2332)] = 72890, + [SMALL_STATE(2333)] = 72919, + [SMALL_STATE(2334)] = 72946, + [SMALL_STATE(2335)] = 72975, + [SMALL_STATE(2336)] = 72998, + [SMALL_STATE(2337)] = 73027, + [SMALL_STATE(2338)] = 73056, + [SMALL_STATE(2339)] = 73085, + [SMALL_STATE(2340)] = 73114, + [SMALL_STATE(2341)] = 73143, + [SMALL_STATE(2342)] = 73172, + [SMALL_STATE(2343)] = 73195, + [SMALL_STATE(2344)] = 73224, + [SMALL_STATE(2345)] = 73253, + [SMALL_STATE(2346)] = 73282, + [SMALL_STATE(2347)] = 73309, + [SMALL_STATE(2348)] = 73338, + [SMALL_STATE(2349)] = 73367, + [SMALL_STATE(2350)] = 73396, + [SMALL_STATE(2351)] = 73425, + [SMALL_STATE(2352)] = 73454, + [SMALL_STATE(2353)] = 73483, + [SMALL_STATE(2354)] = 73506, + [SMALL_STATE(2355)] = 73527, + [SMALL_STATE(2356)] = 73550, + [SMALL_STATE(2357)] = 73579, + [SMALL_STATE(2358)] = 73606, + [SMALL_STATE(2359)] = 73635, + [SMALL_STATE(2360)] = 73664, + [SMALL_STATE(2361)] = 73693, + [SMALL_STATE(2362)] = 73714, + [SMALL_STATE(2363)] = 73737, + [SMALL_STATE(2364)] = 73766, + [SMALL_STATE(2365)] = 73795, + [SMALL_STATE(2366)] = 73824, + [SMALL_STATE(2367)] = 73853, + [SMALL_STATE(2368)] = 73882, + [SMALL_STATE(2369)] = 73911, + [SMALL_STATE(2370)] = 73940, + [SMALL_STATE(2371)] = 73963, + [SMALL_STATE(2372)] = 73992, + [SMALL_STATE(2373)] = 74021, + [SMALL_STATE(2374)] = 74050, + [SMALL_STATE(2375)] = 74079, + [SMALL_STATE(2376)] = 74102, + [SMALL_STATE(2377)] = 74131, + [SMALL_STATE(2378)] = 74152, + [SMALL_STATE(2379)] = 74175, + [SMALL_STATE(2380)] = 74204, + [SMALL_STATE(2381)] = 74227, + [SMALL_STATE(2382)] = 74250, + [SMALL_STATE(2383)] = 74279, + [SMALL_STATE(2384)] = 74308, + [SMALL_STATE(2385)] = 74337, + [SMALL_STATE(2386)] = 74366, + [SMALL_STATE(2387)] = 74385, + [SMALL_STATE(2388)] = 74414, + [SMALL_STATE(2389)] = 74443, + [SMALL_STATE(2390)] = 74472, + [SMALL_STATE(2391)] = 74501, + [SMALL_STATE(2392)] = 74526, + [SMALL_STATE(2393)] = 74555, + [SMALL_STATE(2394)] = 74578, + [SMALL_STATE(2395)] = 74599, + [SMALL_STATE(2396)] = 74621, + [SMALL_STATE(2397)] = 74643, + [SMALL_STATE(2398)] = 74669, + [SMALL_STATE(2399)] = 74693, + [SMALL_STATE(2400)] = 74719, + [SMALL_STATE(2401)] = 74741, + [SMALL_STATE(2402)] = 74767, + [SMALL_STATE(2403)] = 74785, + [SMALL_STATE(2404)] = 74807, + [SMALL_STATE(2405)] = 74831, + [SMALL_STATE(2406)] = 74849, + [SMALL_STATE(2407)] = 74875, + [SMALL_STATE(2408)] = 74893, + [SMALL_STATE(2409)] = 74917, + [SMALL_STATE(2410)] = 74935, + [SMALL_STATE(2411)] = 74953, + [SMALL_STATE(2412)] = 74973, + [SMALL_STATE(2413)] = 74993, + [SMALL_STATE(2414)] = 75017, + [SMALL_STATE(2415)] = 75039, + [SMALL_STATE(2416)] = 75063, + [SMALL_STATE(2417)] = 75083, + [SMALL_STATE(2418)] = 75109, + [SMALL_STATE(2419)] = 75135, + [SMALL_STATE(2420)] = 75153, + [SMALL_STATE(2421)] = 75171, + [SMALL_STATE(2422)] = 75197, + [SMALL_STATE(2423)] = 75223, + [SMALL_STATE(2424)] = 75249, + [SMALL_STATE(2425)] = 75275, + [SMALL_STATE(2426)] = 75293, + [SMALL_STATE(2427)] = 75311, + [SMALL_STATE(2428)] = 75329, + [SMALL_STATE(2429)] = 75351, + [SMALL_STATE(2430)] = 75377, + [SMALL_STATE(2431)] = 75403, + [SMALL_STATE(2432)] = 75429, + [SMALL_STATE(2433)] = 75447, + [SMALL_STATE(2434)] = 75473, + [SMALL_STATE(2435)] = 75497, + [SMALL_STATE(2436)] = 75523, + [SMALL_STATE(2437)] = 75549, + [SMALL_STATE(2438)] = 75573, + [SMALL_STATE(2439)] = 75599, + [SMALL_STATE(2440)] = 75623, + [SMALL_STATE(2441)] = 75649, + [SMALL_STATE(2442)] = 75673, + [SMALL_STATE(2443)] = 75699, + [SMALL_STATE(2444)] = 75725, + [SMALL_STATE(2445)] = 75751, + [SMALL_STATE(2446)] = 75773, + [SMALL_STATE(2447)] = 75791, + [SMALL_STATE(2448)] = 75817, + [SMALL_STATE(2449)] = 75839, + [SMALL_STATE(2450)] = 75865, + [SMALL_STATE(2451)] = 75891, + [SMALL_STATE(2452)] = 75917, + [SMALL_STATE(2453)] = 75939, + [SMALL_STATE(2454)] = 75965, + [SMALL_STATE(2455)] = 75991, + [SMALL_STATE(2456)] = 76017, + [SMALL_STATE(2457)] = 76043, + [SMALL_STATE(2458)] = 76069, + [SMALL_STATE(2459)] = 76095, + [SMALL_STATE(2460)] = 76121, + [SMALL_STATE(2461)] = 76147, + [SMALL_STATE(2462)] = 76173, + [SMALL_STATE(2463)] = 76199, + [SMALL_STATE(2464)] = 76217, + [SMALL_STATE(2465)] = 76241, + [SMALL_STATE(2466)] = 76259, + [SMALL_STATE(2467)] = 76277, + [SMALL_STATE(2468)] = 76295, + [SMALL_STATE(2469)] = 76313, + [SMALL_STATE(2470)] = 76337, + [SMALL_STATE(2471)] = 76363, + [SMALL_STATE(2472)] = 76389, + [SMALL_STATE(2473)] = 76409, + [SMALL_STATE(2474)] = 76435, + [SMALL_STATE(2475)] = 76461, + [SMALL_STATE(2476)] = 76485, + [SMALL_STATE(2477)] = 76511, + [SMALL_STATE(2478)] = 76535, + [SMALL_STATE(2479)] = 76561, + [SMALL_STATE(2480)] = 76579, + [SMALL_STATE(2481)] = 76597, + [SMALL_STATE(2482)] = 76615, + [SMALL_STATE(2483)] = 76641, + [SMALL_STATE(2484)] = 76663, + [SMALL_STATE(2485)] = 76689, + [SMALL_STATE(2486)] = 76715, + [SMALL_STATE(2487)] = 76733, + [SMALL_STATE(2488)] = 76759, + [SMALL_STATE(2489)] = 76785, + [SMALL_STATE(2490)] = 76809, + [SMALL_STATE(2491)] = 76833, + [SMALL_STATE(2492)] = 76859, + [SMALL_STATE(2493)] = 76877, + [SMALL_STATE(2494)] = 76895, + [SMALL_STATE(2495)] = 76915, + [SMALL_STATE(2496)] = 76941, + [SMALL_STATE(2497)] = 76967, + [SMALL_STATE(2498)] = 76991, + [SMALL_STATE(2499)] = 77012, + [SMALL_STATE(2500)] = 77035, + [SMALL_STATE(2501)] = 77058, + [SMALL_STATE(2502)] = 77081, + [SMALL_STATE(2503)] = 77100, + [SMALL_STATE(2504)] = 77117, + [SMALL_STATE(2505)] = 77140, + [SMALL_STATE(2506)] = 77163, + [SMALL_STATE(2507)] = 77182, + [SMALL_STATE(2508)] = 77201, + [SMALL_STATE(2509)] = 77224, + [SMALL_STATE(2510)] = 77247, + [SMALL_STATE(2511)] = 77266, + [SMALL_STATE(2512)] = 77289, + [SMALL_STATE(2513)] = 77308, + [SMALL_STATE(2514)] = 77329, + [SMALL_STATE(2515)] = 77350, + [SMALL_STATE(2516)] = 77369, + [SMALL_STATE(2517)] = 77392, + [SMALL_STATE(2518)] = 77411, + [SMALL_STATE(2519)] = 77430, + [SMALL_STATE(2520)] = 77453, + [SMALL_STATE(2521)] = 77476, + [SMALL_STATE(2522)] = 77499, + [SMALL_STATE(2523)] = 77518, + [SMALL_STATE(2524)] = 77541, + [SMALL_STATE(2525)] = 77564, + [SMALL_STATE(2526)] = 77587, + [SMALL_STATE(2527)] = 77610, + [SMALL_STATE(2528)] = 77629, + [SMALL_STATE(2529)] = 77652, + [SMALL_STATE(2530)] = 77675, + [SMALL_STATE(2531)] = 77696, + [SMALL_STATE(2532)] = 77719, + [SMALL_STATE(2533)] = 77742, + [SMALL_STATE(2534)] = 77761, + [SMALL_STATE(2535)] = 77778, + [SMALL_STATE(2536)] = 77801, + [SMALL_STATE(2537)] = 77824, + [SMALL_STATE(2538)] = 77847, + [SMALL_STATE(2539)] = 77870, + [SMALL_STATE(2540)] = 77893, + [SMALL_STATE(2541)] = 77912, + [SMALL_STATE(2542)] = 77935, + [SMALL_STATE(2543)] = 77958, + [SMALL_STATE(2544)] = 77981, + [SMALL_STATE(2545)] = 77998, + [SMALL_STATE(2546)] = 78021, + [SMALL_STATE(2547)] = 78044, + [SMALL_STATE(2548)] = 78063, + [SMALL_STATE(2549)] = 78086, + [SMALL_STATE(2550)] = 78109, + [SMALL_STATE(2551)] = 78130, + [SMALL_STATE(2552)] = 78153, + [SMALL_STATE(2553)] = 78176, + [SMALL_STATE(2554)] = 78195, + [SMALL_STATE(2555)] = 78216, + [SMALL_STATE(2556)] = 78237, + [SMALL_STATE(2557)] = 78260, + [SMALL_STATE(2558)] = 78281, + [SMALL_STATE(2559)] = 78304, + [SMALL_STATE(2560)] = 78327, + [SMALL_STATE(2561)] = 78350, + [SMALL_STATE(2562)] = 78373, + [SMALL_STATE(2563)] = 78396, + [SMALL_STATE(2564)] = 78419, + [SMALL_STATE(2565)] = 78442, + [SMALL_STATE(2566)] = 78463, + [SMALL_STATE(2567)] = 78482, + [SMALL_STATE(2568)] = 78505, + [SMALL_STATE(2569)] = 78528, + [SMALL_STATE(2570)] = 78551, + [SMALL_STATE(2571)] = 78574, + [SMALL_STATE(2572)] = 78597, + [SMALL_STATE(2573)] = 78620, + [SMALL_STATE(2574)] = 78641, + [SMALL_STATE(2575)] = 78664, + [SMALL_STATE(2576)] = 78687, + [SMALL_STATE(2577)] = 78708, + [SMALL_STATE(2578)] = 78731, + [SMALL_STATE(2579)] = 78754, + [SMALL_STATE(2580)] = 78777, + [SMALL_STATE(2581)] = 78800, + [SMALL_STATE(2582)] = 78823, + [SMALL_STATE(2583)] = 78846, + [SMALL_STATE(2584)] = 78869, + [SMALL_STATE(2585)] = 78892, + [SMALL_STATE(2586)] = 78915, + [SMALL_STATE(2587)] = 78938, + [SMALL_STATE(2588)] = 78959, + [SMALL_STATE(2589)] = 78982, + [SMALL_STATE(2590)] = 79005, + [SMALL_STATE(2591)] = 79028, + [SMALL_STATE(2592)] = 79051, + [SMALL_STATE(2593)] = 79074, + [SMALL_STATE(2594)] = 79097, + [SMALL_STATE(2595)] = 79120, + [SMALL_STATE(2596)] = 79143, + [SMALL_STATE(2597)] = 79166, + [SMALL_STATE(2598)] = 79189, + [SMALL_STATE(2599)] = 79208, + [SMALL_STATE(2600)] = 79227, + [SMALL_STATE(2601)] = 79250, + [SMALL_STATE(2602)] = 79267, + [SMALL_STATE(2603)] = 79290, + [SMALL_STATE(2604)] = 79313, + [SMALL_STATE(2605)] = 79334, + [SMALL_STATE(2606)] = 79357, + [SMALL_STATE(2607)] = 79378, + [SMALL_STATE(2608)] = 79401, + [SMALL_STATE(2609)] = 79424, + [SMALL_STATE(2610)] = 79447, + [SMALL_STATE(2611)] = 79470, + [SMALL_STATE(2612)] = 79489, + [SMALL_STATE(2613)] = 79512, + [SMALL_STATE(2614)] = 79535, + [SMALL_STATE(2615)] = 79556, + [SMALL_STATE(2616)] = 79579, + [SMALL_STATE(2617)] = 79602, + [SMALL_STATE(2618)] = 79623, + [SMALL_STATE(2619)] = 79646, + [SMALL_STATE(2620)] = 79669, + [SMALL_STATE(2621)] = 79692, + [SMALL_STATE(2622)] = 79715, + [SMALL_STATE(2623)] = 79738, + [SMALL_STATE(2624)] = 79761, + [SMALL_STATE(2625)] = 79784, + [SMALL_STATE(2626)] = 79803, + [SMALL_STATE(2627)] = 79820, + [SMALL_STATE(2628)] = 79843, + [SMALL_STATE(2629)] = 79866, + [SMALL_STATE(2630)] = 79889, + [SMALL_STATE(2631)] = 79912, + [SMALL_STATE(2632)] = 79935, + [SMALL_STATE(2633)] = 79958, + [SMALL_STATE(2634)] = 79981, + [SMALL_STATE(2635)] = 80004, + [SMALL_STATE(2636)] = 80027, + [SMALL_STATE(2637)] = 80046, + [SMALL_STATE(2638)] = 80069, + [SMALL_STATE(2639)] = 80092, + [SMALL_STATE(2640)] = 80113, + [SMALL_STATE(2641)] = 80136, + [SMALL_STATE(2642)] = 80159, + [SMALL_STATE(2643)] = 80180, + [SMALL_STATE(2644)] = 80203, + [SMALL_STATE(2645)] = 80226, + [SMALL_STATE(2646)] = 80249, + [SMALL_STATE(2647)] = 80272, + [SMALL_STATE(2648)] = 80295, + [SMALL_STATE(2649)] = 80314, + [SMALL_STATE(2650)] = 80337, + [SMALL_STATE(2651)] = 80356, + [SMALL_STATE(2652)] = 80379, + [SMALL_STATE(2653)] = 80400, + [SMALL_STATE(2654)] = 80423, + [SMALL_STATE(2655)] = 80442, + [SMALL_STATE(2656)] = 80463, + [SMALL_STATE(2657)] = 80486, + [SMALL_STATE(2658)] = 80509, + [SMALL_STATE(2659)] = 80526, + [SMALL_STATE(2660)] = 80549, + [SMALL_STATE(2661)] = 80570, + [SMALL_STATE(2662)] = 80593, + [SMALL_STATE(2663)] = 80616, + [SMALL_STATE(2664)] = 80639, + [SMALL_STATE(2665)] = 80662, + [SMALL_STATE(2666)] = 80685, + [SMALL_STATE(2667)] = 80708, + [SMALL_STATE(2668)] = 80731, + [SMALL_STATE(2669)] = 80754, + [SMALL_STATE(2670)] = 80777, + [SMALL_STATE(2671)] = 80798, + [SMALL_STATE(2672)] = 80821, + [SMALL_STATE(2673)] = 80844, + [SMALL_STATE(2674)] = 80863, + [SMALL_STATE(2675)] = 80886, + [SMALL_STATE(2676)] = 80903, + [SMALL_STATE(2677)] = 80926, + [SMALL_STATE(2678)] = 80943, + [SMALL_STATE(2679)] = 80966, + [SMALL_STATE(2680)] = 80989, + [SMALL_STATE(2681)] = 81012, + [SMALL_STATE(2682)] = 81031, + [SMALL_STATE(2683)] = 81054, + [SMALL_STATE(2684)] = 81077, + [SMALL_STATE(2685)] = 81096, + [SMALL_STATE(2686)] = 81119, + [SMALL_STATE(2687)] = 81142, + [SMALL_STATE(2688)] = 81165, + [SMALL_STATE(2689)] = 81188, + [SMALL_STATE(2690)] = 81211, + [SMALL_STATE(2691)] = 81234, + [SMALL_STATE(2692)] = 81257, + [SMALL_STATE(2693)] = 81280, + [SMALL_STATE(2694)] = 81299, + [SMALL_STATE(2695)] = 81322, + [SMALL_STATE(2696)] = 81345, + [SMALL_STATE(2697)] = 81368, + [SMALL_STATE(2698)] = 81391, + [SMALL_STATE(2699)] = 81414, + [SMALL_STATE(2700)] = 81437, + [SMALL_STATE(2701)] = 81460, + [SMALL_STATE(2702)] = 81483, + [SMALL_STATE(2703)] = 81506, + [SMALL_STATE(2704)] = 81529, + [SMALL_STATE(2705)] = 81552, + [SMALL_STATE(2706)] = 81575, + [SMALL_STATE(2707)] = 81598, + [SMALL_STATE(2708)] = 81621, + [SMALL_STATE(2709)] = 81644, + [SMALL_STATE(2710)] = 81667, + [SMALL_STATE(2711)] = 81690, + [SMALL_STATE(2712)] = 81713, + [SMALL_STATE(2713)] = 81734, + [SMALL_STATE(2714)] = 81757, + [SMALL_STATE(2715)] = 81780, + [SMALL_STATE(2716)] = 81801, + [SMALL_STATE(2717)] = 81824, + [SMALL_STATE(2718)] = 81847, + [SMALL_STATE(2719)] = 81868, + [SMALL_STATE(2720)] = 81891, + [SMALL_STATE(2721)] = 81914, + [SMALL_STATE(2722)] = 81937, + [SMALL_STATE(2723)] = 81960, + [SMALL_STATE(2724)] = 81979, + [SMALL_STATE(2725)] = 82002, + [SMALL_STATE(2726)] = 82025, + [SMALL_STATE(2727)] = 82048, + [SMALL_STATE(2728)] = 82071, + [SMALL_STATE(2729)] = 82094, + [SMALL_STATE(2730)] = 82117, + [SMALL_STATE(2731)] = 82140, + [SMALL_STATE(2732)] = 82163, + [SMALL_STATE(2733)] = 82184, + [SMALL_STATE(2734)] = 82205, + [SMALL_STATE(2735)] = 82228, + [SMALL_STATE(2736)] = 82251, + [SMALL_STATE(2737)] = 82271, + [SMALL_STATE(2738)] = 82291, + [SMALL_STATE(2739)] = 82311, + [SMALL_STATE(2740)] = 82331, + [SMALL_STATE(2741)] = 82351, + [SMALL_STATE(2742)] = 82371, + [SMALL_STATE(2743)] = 82391, + [SMALL_STATE(2744)] = 82407, + [SMALL_STATE(2745)] = 82427, + [SMALL_STATE(2746)] = 82445, + [SMALL_STATE(2747)] = 82465, + [SMALL_STATE(2748)] = 82481, + [SMALL_STATE(2749)] = 82501, + [SMALL_STATE(2750)] = 82517, + [SMALL_STATE(2751)] = 82537, + [SMALL_STATE(2752)] = 82553, + [SMALL_STATE(2753)] = 82569, + [SMALL_STATE(2754)] = 82589, + [SMALL_STATE(2755)] = 82605, + [SMALL_STATE(2756)] = 82625, + [SMALL_STATE(2757)] = 82641, + [SMALL_STATE(2758)] = 82657, + [SMALL_STATE(2759)] = 82677, + [SMALL_STATE(2760)] = 82695, + [SMALL_STATE(2761)] = 82715, + [SMALL_STATE(2762)] = 82731, + [SMALL_STATE(2763)] = 82751, + [SMALL_STATE(2764)] = 82771, + [SMALL_STATE(2765)] = 82791, + [SMALL_STATE(2766)] = 82807, + [SMALL_STATE(2767)] = 82827, + [SMALL_STATE(2768)] = 82845, + [SMALL_STATE(2769)] = 82865, + [SMALL_STATE(2770)] = 82885, + [SMALL_STATE(2771)] = 82905, + [SMALL_STATE(2772)] = 82925, + [SMALL_STATE(2773)] = 82943, + [SMALL_STATE(2774)] = 82963, + [SMALL_STATE(2775)] = 82983, + [SMALL_STATE(2776)] = 83003, + [SMALL_STATE(2777)] = 83019, + [SMALL_STATE(2778)] = 83039, + [SMALL_STATE(2779)] = 83059, + [SMALL_STATE(2780)] = 83079, + [SMALL_STATE(2781)] = 83099, + [SMALL_STATE(2782)] = 83119, + [SMALL_STATE(2783)] = 83139, + [SMALL_STATE(2784)] = 83155, + [SMALL_STATE(2785)] = 83175, + [SMALL_STATE(2786)] = 83191, + [SMALL_STATE(2787)] = 83211, + [SMALL_STATE(2788)] = 83231, + [SMALL_STATE(2789)] = 83247, + [SMALL_STATE(2790)] = 83267, + [SMALL_STATE(2791)] = 83283, + [SMALL_STATE(2792)] = 83303, + [SMALL_STATE(2793)] = 83323, + [SMALL_STATE(2794)] = 83343, + [SMALL_STATE(2795)] = 83363, + [SMALL_STATE(2796)] = 83383, + [SMALL_STATE(2797)] = 83399, + [SMALL_STATE(2798)] = 83419, + [SMALL_STATE(2799)] = 83439, + [SMALL_STATE(2800)] = 83455, + [SMALL_STATE(2801)] = 83475, + [SMALL_STATE(2802)] = 83495, + [SMALL_STATE(2803)] = 83511, + [SMALL_STATE(2804)] = 83531, + [SMALL_STATE(2805)] = 83547, + [SMALL_STATE(2806)] = 83567, + [SMALL_STATE(2807)] = 83583, + [SMALL_STATE(2808)] = 83603, + [SMALL_STATE(2809)] = 83623, + [SMALL_STATE(2810)] = 83643, + [SMALL_STATE(2811)] = 83659, + [SMALL_STATE(2812)] = 83675, + [SMALL_STATE(2813)] = 83691, + [SMALL_STATE(2814)] = 83711, + [SMALL_STATE(2815)] = 83731, + [SMALL_STATE(2816)] = 83747, + [SMALL_STATE(2817)] = 83763, + [SMALL_STATE(2818)] = 83783, + [SMALL_STATE(2819)] = 83803, + [SMALL_STATE(2820)] = 83819, + [SMALL_STATE(2821)] = 83839, + [SMALL_STATE(2822)] = 83859, + [SMALL_STATE(2823)] = 83879, + [SMALL_STATE(2824)] = 83899, + [SMALL_STATE(2825)] = 83917, + [SMALL_STATE(2826)] = 83933, + [SMALL_STATE(2827)] = 83953, + [SMALL_STATE(2828)] = 83973, + [SMALL_STATE(2829)] = 83993, + [SMALL_STATE(2830)] = 84013, + [SMALL_STATE(2831)] = 84033, + [SMALL_STATE(2832)] = 84049, + [SMALL_STATE(2833)] = 84065, + [SMALL_STATE(2834)] = 84081, + [SMALL_STATE(2835)] = 84097, + [SMALL_STATE(2836)] = 84117, + [SMALL_STATE(2837)] = 84135, + [SMALL_STATE(2838)] = 84155, + [SMALL_STATE(2839)] = 84175, + [SMALL_STATE(2840)] = 84193, + [SMALL_STATE(2841)] = 84213, + [SMALL_STATE(2842)] = 84233, + [SMALL_STATE(2843)] = 84253, + [SMALL_STATE(2844)] = 84271, + [SMALL_STATE(2845)] = 84291, + [SMALL_STATE(2846)] = 84311, + [SMALL_STATE(2847)] = 84331, + [SMALL_STATE(2848)] = 84351, + [SMALL_STATE(2849)] = 84371, + [SMALL_STATE(2850)] = 84387, + [SMALL_STATE(2851)] = 84403, + [SMALL_STATE(2852)] = 84421, + [SMALL_STATE(2853)] = 84439, + [SMALL_STATE(2854)] = 84457, + [SMALL_STATE(2855)] = 84477, + [SMALL_STATE(2856)] = 84497, + [SMALL_STATE(2857)] = 84517, + [SMALL_STATE(2858)] = 84537, + [SMALL_STATE(2859)] = 84557, + [SMALL_STATE(2860)] = 84577, + [SMALL_STATE(2861)] = 84597, + [SMALL_STATE(2862)] = 84617, + [SMALL_STATE(2863)] = 84637, + [SMALL_STATE(2864)] = 84657, + [SMALL_STATE(2865)] = 84677, + [SMALL_STATE(2866)] = 84697, + [SMALL_STATE(2867)] = 84717, + [SMALL_STATE(2868)] = 84737, + [SMALL_STATE(2869)] = 84757, + [SMALL_STATE(2870)] = 84777, + [SMALL_STATE(2871)] = 84797, + [SMALL_STATE(2872)] = 84817, + [SMALL_STATE(2873)] = 84837, + [SMALL_STATE(2874)] = 84857, + [SMALL_STATE(2875)] = 84877, + [SMALL_STATE(2876)] = 84895, + [SMALL_STATE(2877)] = 84911, + [SMALL_STATE(2878)] = 84929, + [SMALL_STATE(2879)] = 84947, + [SMALL_STATE(2880)] = 84963, + [SMALL_STATE(2881)] = 84983, + [SMALL_STATE(2882)] = 85003, + [SMALL_STATE(2883)] = 85019, + [SMALL_STATE(2884)] = 85035, + [SMALL_STATE(2885)] = 85051, + [SMALL_STATE(2886)] = 85071, + [SMALL_STATE(2887)] = 85091, + [SMALL_STATE(2888)] = 85111, + [SMALL_STATE(2889)] = 85131, + [SMALL_STATE(2890)] = 85151, + [SMALL_STATE(2891)] = 85171, + [SMALL_STATE(2892)] = 85191, + [SMALL_STATE(2893)] = 85209, + [SMALL_STATE(2894)] = 85225, + [SMALL_STATE(2895)] = 85245, + [SMALL_STATE(2896)] = 85265, + [SMALL_STATE(2897)] = 85285, + [SMALL_STATE(2898)] = 85305, + [SMALL_STATE(2899)] = 85325, + [SMALL_STATE(2900)] = 85345, + [SMALL_STATE(2901)] = 85365, + [SMALL_STATE(2902)] = 85385, + [SMALL_STATE(2903)] = 85403, + [SMALL_STATE(2904)] = 85423, + [SMALL_STATE(2905)] = 85443, + [SMALL_STATE(2906)] = 85463, + [SMALL_STATE(2907)] = 85483, + [SMALL_STATE(2908)] = 85503, + [SMALL_STATE(2909)] = 85521, + [SMALL_STATE(2910)] = 85539, + [SMALL_STATE(2911)] = 85559, + [SMALL_STATE(2912)] = 85579, + [SMALL_STATE(2913)] = 85599, + [SMALL_STATE(2914)] = 85617, + [SMALL_STATE(2915)] = 85637, + [SMALL_STATE(2916)] = 85657, + [SMALL_STATE(2917)] = 85677, + [SMALL_STATE(2918)] = 85697, + [SMALL_STATE(2919)] = 85717, + [SMALL_STATE(2920)] = 85737, + [SMALL_STATE(2921)] = 85757, + [SMALL_STATE(2922)] = 85777, + [SMALL_STATE(2923)] = 85795, + [SMALL_STATE(2924)] = 85813, + [SMALL_STATE(2925)] = 85833, + [SMALL_STATE(2926)] = 85853, + [SMALL_STATE(2927)] = 85873, + [SMALL_STATE(2928)] = 85893, + [SMALL_STATE(2929)] = 85913, + [SMALL_STATE(2930)] = 85933, + [SMALL_STATE(2931)] = 85953, + [SMALL_STATE(2932)] = 85973, + [SMALL_STATE(2933)] = 85993, + [SMALL_STATE(2934)] = 86013, + [SMALL_STATE(2935)] = 86031, + [SMALL_STATE(2936)] = 86051, + [SMALL_STATE(2937)] = 86071, + [SMALL_STATE(2938)] = 86087, + [SMALL_STATE(2939)] = 86107, + [SMALL_STATE(2940)] = 86127, + [SMALL_STATE(2941)] = 86143, + [SMALL_STATE(2942)] = 86161, + [SMALL_STATE(2943)] = 86181, + [SMALL_STATE(2944)] = 86201, + [SMALL_STATE(2945)] = 86221, + [SMALL_STATE(2946)] = 86241, + [SMALL_STATE(2947)] = 86261, + [SMALL_STATE(2948)] = 86279, + [SMALL_STATE(2949)] = 86299, + [SMALL_STATE(2950)] = 86319, + [SMALL_STATE(2951)] = 86339, + [SMALL_STATE(2952)] = 86359, + [SMALL_STATE(2953)] = 86379, + [SMALL_STATE(2954)] = 86397, + [SMALL_STATE(2955)] = 86417, + [SMALL_STATE(2956)] = 86437, + [SMALL_STATE(2957)] = 86455, + [SMALL_STATE(2958)] = 86473, + [SMALL_STATE(2959)] = 86491, + [SMALL_STATE(2960)] = 86511, + [SMALL_STATE(2961)] = 86531, + [SMALL_STATE(2962)] = 86551, + [SMALL_STATE(2963)] = 86571, + [SMALL_STATE(2964)] = 86591, + [SMALL_STATE(2965)] = 86607, + [SMALL_STATE(2966)] = 86623, + [SMALL_STATE(2967)] = 86643, + [SMALL_STATE(2968)] = 86663, + [SMALL_STATE(2969)] = 86679, + [SMALL_STATE(2970)] = 86699, + [SMALL_STATE(2971)] = 86719, + [SMALL_STATE(2972)] = 86737, + [SMALL_STATE(2973)] = 86753, + [SMALL_STATE(2974)] = 86771, + [SMALL_STATE(2975)] = 86789, + [SMALL_STATE(2976)] = 86807, + [SMALL_STATE(2977)] = 86823, + [SMALL_STATE(2978)] = 86839, + [SMALL_STATE(2979)] = 86857, + [SMALL_STATE(2980)] = 86877, + [SMALL_STATE(2981)] = 86897, + [SMALL_STATE(2982)] = 86917, + [SMALL_STATE(2983)] = 86933, + [SMALL_STATE(2984)] = 86949, + [SMALL_STATE(2985)] = 86969, + [SMALL_STATE(2986)] = 86989, + [SMALL_STATE(2987)] = 87009, + [SMALL_STATE(2988)] = 87027, + [SMALL_STATE(2989)] = 87043, + [SMALL_STATE(2990)] = 87059, + [SMALL_STATE(2991)] = 87079, + [SMALL_STATE(2992)] = 87097, + [SMALL_STATE(2993)] = 87117, + [SMALL_STATE(2994)] = 87137, + [SMALL_STATE(2995)] = 87157, + [SMALL_STATE(2996)] = 87175, + [SMALL_STATE(2997)] = 87195, + [SMALL_STATE(2998)] = 87215, + [SMALL_STATE(2999)] = 87235, + [SMALL_STATE(3000)] = 87253, + [SMALL_STATE(3001)] = 87273, + [SMALL_STATE(3002)] = 87289, + [SMALL_STATE(3003)] = 87307, + [SMALL_STATE(3004)] = 87327, + [SMALL_STATE(3005)] = 87347, + [SMALL_STATE(3006)] = 87367, + [SMALL_STATE(3007)] = 87387, + [SMALL_STATE(3008)] = 87403, + [SMALL_STATE(3009)] = 87419, + [SMALL_STATE(3010)] = 87439, + [SMALL_STATE(3011)] = 87457, + [SMALL_STATE(3012)] = 87477, + [SMALL_STATE(3013)] = 87497, + [SMALL_STATE(3014)] = 87517, + [SMALL_STATE(3015)] = 87537, + [SMALL_STATE(3016)] = 87557, + [SMALL_STATE(3017)] = 87577, + [SMALL_STATE(3018)] = 87597, + [SMALL_STATE(3019)] = 87617, + [SMALL_STATE(3020)] = 87635, + [SMALL_STATE(3021)] = 87655, + [SMALL_STATE(3022)] = 87675, + [SMALL_STATE(3023)] = 87695, + [SMALL_STATE(3024)] = 87715, + [SMALL_STATE(3025)] = 87735, + [SMALL_STATE(3026)] = 87755, + [SMALL_STATE(3027)] = 87775, + [SMALL_STATE(3028)] = 87795, + [SMALL_STATE(3029)] = 87815, + [SMALL_STATE(3030)] = 87831, + [SMALL_STATE(3031)] = 87851, + [SMALL_STATE(3032)] = 87868, + [SMALL_STATE(3033)] = 87885, + [SMALL_STATE(3034)] = 87900, + [SMALL_STATE(3035)] = 87917, + [SMALL_STATE(3036)] = 87934, + [SMALL_STATE(3037)] = 87951, + [SMALL_STATE(3038)] = 87968, + [SMALL_STATE(3039)] = 87985, + [SMALL_STATE(3040)] = 88002, + [SMALL_STATE(3041)] = 88017, + [SMALL_STATE(3042)] = 88034, + [SMALL_STATE(3043)] = 88049, + [SMALL_STATE(3044)] = 88066, + [SMALL_STATE(3045)] = 88083, + [SMALL_STATE(3046)] = 88100, + [SMALL_STATE(3047)] = 88115, + [SMALL_STATE(3048)] = 88132, + [SMALL_STATE(3049)] = 88147, + [SMALL_STATE(3050)] = 88164, + [SMALL_STATE(3051)] = 88181, + [SMALL_STATE(3052)] = 88198, + [SMALL_STATE(3053)] = 88213, + [SMALL_STATE(3054)] = 88230, + [SMALL_STATE(3055)] = 88247, + [SMALL_STATE(3056)] = 88264, + [SMALL_STATE(3057)] = 88281, + [SMALL_STATE(3058)] = 88298, + [SMALL_STATE(3059)] = 88313, + [SMALL_STATE(3060)] = 88328, + [SMALL_STATE(3061)] = 88345, + [SMALL_STATE(3062)] = 88360, + [SMALL_STATE(3063)] = 88377, + [SMALL_STATE(3064)] = 88394, + [SMALL_STATE(3065)] = 88411, + [SMALL_STATE(3066)] = 88426, + [SMALL_STATE(3067)] = 88443, + [SMALL_STATE(3068)] = 88460, + [SMALL_STATE(3069)] = 88477, + [SMALL_STATE(3070)] = 88494, + [SMALL_STATE(3071)] = 88511, + [SMALL_STATE(3072)] = 88528, + [SMALL_STATE(3073)] = 88545, + [SMALL_STATE(3074)] = 88562, + [SMALL_STATE(3075)] = 88579, + [SMALL_STATE(3076)] = 88596, + [SMALL_STATE(3077)] = 88611, + [SMALL_STATE(3078)] = 88628, + [SMALL_STATE(3079)] = 88645, + [SMALL_STATE(3080)] = 88662, + [SMALL_STATE(3081)] = 88679, + [SMALL_STATE(3082)] = 88696, + [SMALL_STATE(3083)] = 88713, + [SMALL_STATE(3084)] = 88730, + [SMALL_STATE(3085)] = 88747, + [SMALL_STATE(3086)] = 88764, + [SMALL_STATE(3087)] = 88781, + [SMALL_STATE(3088)] = 88796, + [SMALL_STATE(3089)] = 88813, + [SMALL_STATE(3090)] = 88830, + [SMALL_STATE(3091)] = 88845, + [SMALL_STATE(3092)] = 88862, + [SMALL_STATE(3093)] = 88879, + [SMALL_STATE(3094)] = 88894, + [SMALL_STATE(3095)] = 88909, + [SMALL_STATE(3096)] = 88926, + [SMALL_STATE(3097)] = 88943, + [SMALL_STATE(3098)] = 88960, + [SMALL_STATE(3099)] = 88977, + [SMALL_STATE(3100)] = 88994, + [SMALL_STATE(3101)] = 89011, + [SMALL_STATE(3102)] = 89026, + [SMALL_STATE(3103)] = 89043, + [SMALL_STATE(3104)] = 89058, + [SMALL_STATE(3105)] = 89075, + [SMALL_STATE(3106)] = 89090, + [SMALL_STATE(3107)] = 89107, + [SMALL_STATE(3108)] = 89124, + [SMALL_STATE(3109)] = 89141, + [SMALL_STATE(3110)] = 89156, + [SMALL_STATE(3111)] = 89171, + [SMALL_STATE(3112)] = 89188, + [SMALL_STATE(3113)] = 89205, + [SMALL_STATE(3114)] = 89222, + [SMALL_STATE(3115)] = 89239, + [SMALL_STATE(3116)] = 89256, + [SMALL_STATE(3117)] = 89273, + [SMALL_STATE(3118)] = 89290, + [SMALL_STATE(3119)] = 89305, + [SMALL_STATE(3120)] = 89322, + [SMALL_STATE(3121)] = 89339, + [SMALL_STATE(3122)] = 89354, + [SMALL_STATE(3123)] = 89371, + [SMALL_STATE(3124)] = 89388, + [SMALL_STATE(3125)] = 89403, + [SMALL_STATE(3126)] = 89418, + [SMALL_STATE(3127)] = 89435, + [SMALL_STATE(3128)] = 89450, + [SMALL_STATE(3129)] = 89467, + [SMALL_STATE(3130)] = 89484, + [SMALL_STATE(3131)] = 89501, + [SMALL_STATE(3132)] = 89518, + [SMALL_STATE(3133)] = 89535, + [SMALL_STATE(3134)] = 89552, + [SMALL_STATE(3135)] = 89569, + [SMALL_STATE(3136)] = 89586, + [SMALL_STATE(3137)] = 89603, + [SMALL_STATE(3138)] = 89620, + [SMALL_STATE(3139)] = 89637, + [SMALL_STATE(3140)] = 89654, + [SMALL_STATE(3141)] = 89671, + [SMALL_STATE(3142)] = 89688, + [SMALL_STATE(3143)] = 89703, + [SMALL_STATE(3144)] = 89720, + [SMALL_STATE(3145)] = 89737, + [SMALL_STATE(3146)] = 89754, + [SMALL_STATE(3147)] = 89771, + [SMALL_STATE(3148)] = 89788, + [SMALL_STATE(3149)] = 89805, + [SMALL_STATE(3150)] = 89822, + [SMALL_STATE(3151)] = 89839, + [SMALL_STATE(3152)] = 89856, + [SMALL_STATE(3153)] = 89873, + [SMALL_STATE(3154)] = 89890, + [SMALL_STATE(3155)] = 89907, + [SMALL_STATE(3156)] = 89924, + [SMALL_STATE(3157)] = 89939, + [SMALL_STATE(3158)] = 89956, + [SMALL_STATE(3159)] = 89973, + [SMALL_STATE(3160)] = 89990, + [SMALL_STATE(3161)] = 90007, + [SMALL_STATE(3162)] = 90024, + [SMALL_STATE(3163)] = 90039, + [SMALL_STATE(3164)] = 90056, + [SMALL_STATE(3165)] = 90073, + [SMALL_STATE(3166)] = 90090, + [SMALL_STATE(3167)] = 90107, + [SMALL_STATE(3168)] = 90124, + [SMALL_STATE(3169)] = 90141, + [SMALL_STATE(3170)] = 90156, + [SMALL_STATE(3171)] = 90171, + [SMALL_STATE(3172)] = 90186, + [SMALL_STATE(3173)] = 90203, + [SMALL_STATE(3174)] = 90220, + [SMALL_STATE(3175)] = 90237, + [SMALL_STATE(3176)] = 90254, + [SMALL_STATE(3177)] = 90271, + [SMALL_STATE(3178)] = 90288, + [SMALL_STATE(3179)] = 90305, + [SMALL_STATE(3180)] = 90322, + [SMALL_STATE(3181)] = 90339, + [SMALL_STATE(3182)] = 90356, + [SMALL_STATE(3183)] = 90373, + [SMALL_STATE(3184)] = 90390, + [SMALL_STATE(3185)] = 90407, + [SMALL_STATE(3186)] = 90424, + [SMALL_STATE(3187)] = 90441, + [SMALL_STATE(3188)] = 90458, + [SMALL_STATE(3189)] = 90475, + [SMALL_STATE(3190)] = 90492, + [SMALL_STATE(3191)] = 90509, + [SMALL_STATE(3192)] = 90526, + [SMALL_STATE(3193)] = 90541, + [SMALL_STATE(3194)] = 90556, + [SMALL_STATE(3195)] = 90573, + [SMALL_STATE(3196)] = 90590, + [SMALL_STATE(3197)] = 90607, + [SMALL_STATE(3198)] = 90622, + [SMALL_STATE(3199)] = 90639, + [SMALL_STATE(3200)] = 90656, + [SMALL_STATE(3201)] = 90671, + [SMALL_STATE(3202)] = 90688, + [SMALL_STATE(3203)] = 90705, + [SMALL_STATE(3204)] = 90722, + [SMALL_STATE(3205)] = 90739, + [SMALL_STATE(3206)] = 90756, + [SMALL_STATE(3207)] = 90773, + [SMALL_STATE(3208)] = 90790, + [SMALL_STATE(3209)] = 90805, + [SMALL_STATE(3210)] = 90822, + [SMALL_STATE(3211)] = 90839, + [SMALL_STATE(3212)] = 90856, + [SMALL_STATE(3213)] = 90873, + [SMALL_STATE(3214)] = 90888, + [SMALL_STATE(3215)] = 90903, + [SMALL_STATE(3216)] = 90918, + [SMALL_STATE(3217)] = 90935, + [SMALL_STATE(3218)] = 90950, + [SMALL_STATE(3219)] = 90967, + [SMALL_STATE(3220)] = 90984, + [SMALL_STATE(3221)] = 91001, + [SMALL_STATE(3222)] = 91018, + [SMALL_STATE(3223)] = 91035, + [SMALL_STATE(3224)] = 91052, + [SMALL_STATE(3225)] = 91069, + [SMALL_STATE(3226)] = 91084, + [SMALL_STATE(3227)] = 91101, + [SMALL_STATE(3228)] = 91118, + [SMALL_STATE(3229)] = 91135, + [SMALL_STATE(3230)] = 91150, + [SMALL_STATE(3231)] = 91167, + [SMALL_STATE(3232)] = 91182, + [SMALL_STATE(3233)] = 91199, + [SMALL_STATE(3234)] = 91216, + [SMALL_STATE(3235)] = 91233, + [SMALL_STATE(3236)] = 91250, + [SMALL_STATE(3237)] = 91267, + [SMALL_STATE(3238)] = 91284, + [SMALL_STATE(3239)] = 91301, + [SMALL_STATE(3240)] = 91318, + [SMALL_STATE(3241)] = 91335, + [SMALL_STATE(3242)] = 91352, + [SMALL_STATE(3243)] = 91367, + [SMALL_STATE(3244)] = 91384, + [SMALL_STATE(3245)] = 91399, + [SMALL_STATE(3246)] = 91416, + [SMALL_STATE(3247)] = 91433, + [SMALL_STATE(3248)] = 91450, + [SMALL_STATE(3249)] = 91465, + [SMALL_STATE(3250)] = 91480, + [SMALL_STATE(3251)] = 91497, + [SMALL_STATE(3252)] = 91514, + [SMALL_STATE(3253)] = 91531, + [SMALL_STATE(3254)] = 91548, + [SMALL_STATE(3255)] = 91565, + [SMALL_STATE(3256)] = 91582, + [SMALL_STATE(3257)] = 91599, + [SMALL_STATE(3258)] = 91614, + [SMALL_STATE(3259)] = 91631, + [SMALL_STATE(3260)] = 91648, + [SMALL_STATE(3261)] = 91663, + [SMALL_STATE(3262)] = 91680, + [SMALL_STATE(3263)] = 91697, + [SMALL_STATE(3264)] = 91714, + [SMALL_STATE(3265)] = 91731, + [SMALL_STATE(3266)] = 91748, + [SMALL_STATE(3267)] = 91765, + [SMALL_STATE(3268)] = 91782, + [SMALL_STATE(3269)] = 91799, + [SMALL_STATE(3270)] = 91816, + [SMALL_STATE(3271)] = 91833, + [SMALL_STATE(3272)] = 91848, + [SMALL_STATE(3273)] = 91865, + [SMALL_STATE(3274)] = 91882, + [SMALL_STATE(3275)] = 91899, + [SMALL_STATE(3276)] = 91916, + [SMALL_STATE(3277)] = 91933, + [SMALL_STATE(3278)] = 91950, + [SMALL_STATE(3279)] = 91965, + [SMALL_STATE(3280)] = 91982, + [SMALL_STATE(3281)] = 91999, + [SMALL_STATE(3282)] = 92016, + [SMALL_STATE(3283)] = 92033, + [SMALL_STATE(3284)] = 92048, + [SMALL_STATE(3285)] = 92065, + [SMALL_STATE(3286)] = 92082, + [SMALL_STATE(3287)] = 92099, + [SMALL_STATE(3288)] = 92116, + [SMALL_STATE(3289)] = 92133, + [SMALL_STATE(3290)] = 92150, + [SMALL_STATE(3291)] = 92167, + [SMALL_STATE(3292)] = 92184, + [SMALL_STATE(3293)] = 92199, + [SMALL_STATE(3294)] = 92216, + [SMALL_STATE(3295)] = 92233, + [SMALL_STATE(3296)] = 92250, + [SMALL_STATE(3297)] = 92267, + [SMALL_STATE(3298)] = 92282, + [SMALL_STATE(3299)] = 92299, + [SMALL_STATE(3300)] = 92316, + [SMALL_STATE(3301)] = 92333, + [SMALL_STATE(3302)] = 92350, + [SMALL_STATE(3303)] = 92367, + [SMALL_STATE(3304)] = 92384, + [SMALL_STATE(3305)] = 92401, + [SMALL_STATE(3306)] = 92418, + [SMALL_STATE(3307)] = 92435, + [SMALL_STATE(3308)] = 92452, + [SMALL_STATE(3309)] = 92469, + [SMALL_STATE(3310)] = 92486, + [SMALL_STATE(3311)] = 92503, + [SMALL_STATE(3312)] = 92520, + [SMALL_STATE(3313)] = 92537, + [SMALL_STATE(3314)] = 92554, + [SMALL_STATE(3315)] = 92571, + [SMALL_STATE(3316)] = 92585, + [SMALL_STATE(3317)] = 92599, + [SMALL_STATE(3318)] = 92613, + [SMALL_STATE(3319)] = 92627, + [SMALL_STATE(3320)] = 92641, + [SMALL_STATE(3321)] = 92655, + [SMALL_STATE(3322)] = 92669, + [SMALL_STATE(3323)] = 92683, + [SMALL_STATE(3324)] = 92697, + [SMALL_STATE(3325)] = 92711, + [SMALL_STATE(3326)] = 92725, + [SMALL_STATE(3327)] = 92739, + [SMALL_STATE(3328)] = 92753, + [SMALL_STATE(3329)] = 92767, + [SMALL_STATE(3330)] = 92781, + [SMALL_STATE(3331)] = 92795, + [SMALL_STATE(3332)] = 92809, + [SMALL_STATE(3333)] = 92823, + [SMALL_STATE(3334)] = 92837, + [SMALL_STATE(3335)] = 92851, + [SMALL_STATE(3336)] = 92865, + [SMALL_STATE(3337)] = 92879, + [SMALL_STATE(3338)] = 92893, + [SMALL_STATE(3339)] = 92907, + [SMALL_STATE(3340)] = 92921, + [SMALL_STATE(3341)] = 92935, + [SMALL_STATE(3342)] = 92949, + [SMALL_STATE(3343)] = 92963, + [SMALL_STATE(3344)] = 92977, + [SMALL_STATE(3345)] = 92991, + [SMALL_STATE(3346)] = 93005, + [SMALL_STATE(3347)] = 93019, + [SMALL_STATE(3348)] = 93033, + [SMALL_STATE(3349)] = 93047, + [SMALL_STATE(3350)] = 93061, + [SMALL_STATE(3351)] = 93075, + [SMALL_STATE(3352)] = 93089, + [SMALL_STATE(3353)] = 93103, + [SMALL_STATE(3354)] = 93117, + [SMALL_STATE(3355)] = 93131, + [SMALL_STATE(3356)] = 93145, + [SMALL_STATE(3357)] = 93159, + [SMALL_STATE(3358)] = 93173, + [SMALL_STATE(3359)] = 93187, + [SMALL_STATE(3360)] = 93201, + [SMALL_STATE(3361)] = 93215, + [SMALL_STATE(3362)] = 93229, + [SMALL_STATE(3363)] = 93243, + [SMALL_STATE(3364)] = 93257, + [SMALL_STATE(3365)] = 93271, + [SMALL_STATE(3366)] = 93285, + [SMALL_STATE(3367)] = 93299, + [SMALL_STATE(3368)] = 93313, + [SMALL_STATE(3369)] = 93327, + [SMALL_STATE(3370)] = 93341, + [SMALL_STATE(3371)] = 93355, + [SMALL_STATE(3372)] = 93369, + [SMALL_STATE(3373)] = 93383, + [SMALL_STATE(3374)] = 93397, + [SMALL_STATE(3375)] = 93411, + [SMALL_STATE(3376)] = 93425, + [SMALL_STATE(3377)] = 93439, + [SMALL_STATE(3378)] = 93453, + [SMALL_STATE(3379)] = 93467, + [SMALL_STATE(3380)] = 93481, + [SMALL_STATE(3381)] = 93495, + [SMALL_STATE(3382)] = 93509, + [SMALL_STATE(3383)] = 93523, + [SMALL_STATE(3384)] = 93537, + [SMALL_STATE(3385)] = 93551, + [SMALL_STATE(3386)] = 93565, + [SMALL_STATE(3387)] = 93579, + [SMALL_STATE(3388)] = 93593, + [SMALL_STATE(3389)] = 93607, + [SMALL_STATE(3390)] = 93621, + [SMALL_STATE(3391)] = 93635, + [SMALL_STATE(3392)] = 93649, + [SMALL_STATE(3393)] = 93663, + [SMALL_STATE(3394)] = 93677, + [SMALL_STATE(3395)] = 93691, + [SMALL_STATE(3396)] = 93705, + [SMALL_STATE(3397)] = 93719, + [SMALL_STATE(3398)] = 93733, + [SMALL_STATE(3399)] = 93747, + [SMALL_STATE(3400)] = 93761, + [SMALL_STATE(3401)] = 93775, + [SMALL_STATE(3402)] = 93789, + [SMALL_STATE(3403)] = 93803, + [SMALL_STATE(3404)] = 93817, + [SMALL_STATE(3405)] = 93831, + [SMALL_STATE(3406)] = 93845, + [SMALL_STATE(3407)] = 93859, + [SMALL_STATE(3408)] = 93873, + [SMALL_STATE(3409)] = 93887, + [SMALL_STATE(3410)] = 93901, + [SMALL_STATE(3411)] = 93915, + [SMALL_STATE(3412)] = 93929, + [SMALL_STATE(3413)] = 93943, + [SMALL_STATE(3414)] = 93957, + [SMALL_STATE(3415)] = 93971, + [SMALL_STATE(3416)] = 93985, + [SMALL_STATE(3417)] = 93999, + [SMALL_STATE(3418)] = 94013, + [SMALL_STATE(3419)] = 94027, + [SMALL_STATE(3420)] = 94041, + [SMALL_STATE(3421)] = 94055, + [SMALL_STATE(3422)] = 94069, + [SMALL_STATE(3423)] = 94083, + [SMALL_STATE(3424)] = 94097, + [SMALL_STATE(3425)] = 94111, + [SMALL_STATE(3426)] = 94125, + [SMALL_STATE(3427)] = 94139, + [SMALL_STATE(3428)] = 94153, + [SMALL_STATE(3429)] = 94167, + [SMALL_STATE(3430)] = 94181, + [SMALL_STATE(3431)] = 94195, + [SMALL_STATE(3432)] = 94209, + [SMALL_STATE(3433)] = 94223, + [SMALL_STATE(3434)] = 94237, + [SMALL_STATE(3435)] = 94251, + [SMALL_STATE(3436)] = 94265, + [SMALL_STATE(3437)] = 94279, + [SMALL_STATE(3438)] = 94293, + [SMALL_STATE(3439)] = 94307, + [SMALL_STATE(3440)] = 94321, + [SMALL_STATE(3441)] = 94335, + [SMALL_STATE(3442)] = 94349, + [SMALL_STATE(3443)] = 94363, + [SMALL_STATE(3444)] = 94377, + [SMALL_STATE(3445)] = 94391, + [SMALL_STATE(3446)] = 94405, + [SMALL_STATE(3447)] = 94419, + [SMALL_STATE(3448)] = 94433, + [SMALL_STATE(3449)] = 94447, + [SMALL_STATE(3450)] = 94461, + [SMALL_STATE(3451)] = 94475, + [SMALL_STATE(3452)] = 94489, + [SMALL_STATE(3453)] = 94503, + [SMALL_STATE(3454)] = 94517, + [SMALL_STATE(3455)] = 94531, + [SMALL_STATE(3456)] = 94545, + [SMALL_STATE(3457)] = 94559, + [SMALL_STATE(3458)] = 94573, + [SMALL_STATE(3459)] = 94587, + [SMALL_STATE(3460)] = 94601, + [SMALL_STATE(3461)] = 94615, + [SMALL_STATE(3462)] = 94629, + [SMALL_STATE(3463)] = 94643, + [SMALL_STATE(3464)] = 94657, + [SMALL_STATE(3465)] = 94671, + [SMALL_STATE(3466)] = 94685, + [SMALL_STATE(3467)] = 94699, + [SMALL_STATE(3468)] = 94713, + [SMALL_STATE(3469)] = 94727, + [SMALL_STATE(3470)] = 94741, + [SMALL_STATE(3471)] = 94755, + [SMALL_STATE(3472)] = 94769, + [SMALL_STATE(3473)] = 94783, + [SMALL_STATE(3474)] = 94797, + [SMALL_STATE(3475)] = 94811, + [SMALL_STATE(3476)] = 94825, + [SMALL_STATE(3477)] = 94839, + [SMALL_STATE(3478)] = 94853, + [SMALL_STATE(3479)] = 94867, + [SMALL_STATE(3480)] = 94881, + [SMALL_STATE(3481)] = 94895, + [SMALL_STATE(3482)] = 94909, + [SMALL_STATE(3483)] = 94923, + [SMALL_STATE(3484)] = 94937, + [SMALL_STATE(3485)] = 94951, + [SMALL_STATE(3486)] = 94965, + [SMALL_STATE(3487)] = 94979, + [SMALL_STATE(3488)] = 94993, + [SMALL_STATE(3489)] = 95007, + [SMALL_STATE(3490)] = 95021, + [SMALL_STATE(3491)] = 95035, + [SMALL_STATE(3492)] = 95049, + [SMALL_STATE(3493)] = 95063, + [SMALL_STATE(3494)] = 95077, + [SMALL_STATE(3495)] = 95091, + [SMALL_STATE(3496)] = 95105, + [SMALL_STATE(3497)] = 95119, + [SMALL_STATE(3498)] = 95133, + [SMALL_STATE(3499)] = 95147, + [SMALL_STATE(3500)] = 95161, + [SMALL_STATE(3501)] = 95175, + [SMALL_STATE(3502)] = 95189, + [SMALL_STATE(3503)] = 95203, + [SMALL_STATE(3504)] = 95217, + [SMALL_STATE(3505)] = 95231, + [SMALL_STATE(3506)] = 95245, + [SMALL_STATE(3507)] = 95259, + [SMALL_STATE(3508)] = 95273, + [SMALL_STATE(3509)] = 95287, + [SMALL_STATE(3510)] = 95301, + [SMALL_STATE(3511)] = 95315, + [SMALL_STATE(3512)] = 95329, + [SMALL_STATE(3513)] = 95343, + [SMALL_STATE(3514)] = 95357, + [SMALL_STATE(3515)] = 95371, + [SMALL_STATE(3516)] = 95385, + [SMALL_STATE(3517)] = 95399, + [SMALL_STATE(3518)] = 95413, + [SMALL_STATE(3519)] = 95427, + [SMALL_STATE(3520)] = 95441, + [SMALL_STATE(3521)] = 95455, + [SMALL_STATE(3522)] = 95469, + [SMALL_STATE(3523)] = 95483, + [SMALL_STATE(3524)] = 95497, + [SMALL_STATE(3525)] = 95511, + [SMALL_STATE(3526)] = 95525, + [SMALL_STATE(3527)] = 95539, + [SMALL_STATE(3528)] = 95553, + [SMALL_STATE(3529)] = 95567, + [SMALL_STATE(3530)] = 95581, + [SMALL_STATE(3531)] = 95595, + [SMALL_STATE(3532)] = 95609, + [SMALL_STATE(3533)] = 95623, + [SMALL_STATE(3534)] = 95637, + [SMALL_STATE(3535)] = 95651, + [SMALL_STATE(3536)] = 95665, + [SMALL_STATE(3537)] = 95679, + [SMALL_STATE(3538)] = 95693, + [SMALL_STATE(3539)] = 95707, + [SMALL_STATE(3540)] = 95721, + [SMALL_STATE(3541)] = 95735, + [SMALL_STATE(3542)] = 95749, + [SMALL_STATE(3543)] = 95763, + [SMALL_STATE(3544)] = 95777, + [SMALL_STATE(3545)] = 95791, + [SMALL_STATE(3546)] = 95805, + [SMALL_STATE(3547)] = 95819, + [SMALL_STATE(3548)] = 95833, + [SMALL_STATE(3549)] = 95847, + [SMALL_STATE(3550)] = 95861, + [SMALL_STATE(3551)] = 95875, + [SMALL_STATE(3552)] = 95889, + [SMALL_STATE(3553)] = 95903, + [SMALL_STATE(3554)] = 95917, + [SMALL_STATE(3555)] = 95931, + [SMALL_STATE(3556)] = 95945, + [SMALL_STATE(3557)] = 95959, + [SMALL_STATE(3558)] = 95973, + [SMALL_STATE(3559)] = 95987, + [SMALL_STATE(3560)] = 96001, + [SMALL_STATE(3561)] = 96015, + [SMALL_STATE(3562)] = 96029, + [SMALL_STATE(3563)] = 96043, + [SMALL_STATE(3564)] = 96057, + [SMALL_STATE(3565)] = 96071, + [SMALL_STATE(3566)] = 96085, + [SMALL_STATE(3567)] = 96099, + [SMALL_STATE(3568)] = 96113, + [SMALL_STATE(3569)] = 96127, + [SMALL_STATE(3570)] = 96141, + [SMALL_STATE(3571)] = 96155, + [SMALL_STATE(3572)] = 96169, + [SMALL_STATE(3573)] = 96183, + [SMALL_STATE(3574)] = 96197, + [SMALL_STATE(3575)] = 96211, + [SMALL_STATE(3576)] = 96225, + [SMALL_STATE(3577)] = 96239, + [SMALL_STATE(3578)] = 96253, + [SMALL_STATE(3579)] = 96267, + [SMALL_STATE(3580)] = 96281, + [SMALL_STATE(3581)] = 96295, + [SMALL_STATE(3582)] = 96309, + [SMALL_STATE(3583)] = 96323, + [SMALL_STATE(3584)] = 96337, + [SMALL_STATE(3585)] = 96351, + [SMALL_STATE(3586)] = 96365, + [SMALL_STATE(3587)] = 96379, + [SMALL_STATE(3588)] = 96393, + [SMALL_STATE(3589)] = 96407, + [SMALL_STATE(3590)] = 96421, + [SMALL_STATE(3591)] = 96435, + [SMALL_STATE(3592)] = 96449, + [SMALL_STATE(3593)] = 96463, + [SMALL_STATE(3594)] = 96477, + [SMALL_STATE(3595)] = 96491, + [SMALL_STATE(3596)] = 96505, + [SMALL_STATE(3597)] = 96519, + [SMALL_STATE(3598)] = 96533, + [SMALL_STATE(3599)] = 96547, + [SMALL_STATE(3600)] = 96561, + [SMALL_STATE(3601)] = 96575, + [SMALL_STATE(3602)] = 96589, + [SMALL_STATE(3603)] = 96603, + [SMALL_STATE(3604)] = 96617, + [SMALL_STATE(3605)] = 96631, + [SMALL_STATE(3606)] = 96645, + [SMALL_STATE(3607)] = 96659, + [SMALL_STATE(3608)] = 96673, + [SMALL_STATE(3609)] = 96687, + [SMALL_STATE(3610)] = 96701, + [SMALL_STATE(3611)] = 96715, + [SMALL_STATE(3612)] = 96729, + [SMALL_STATE(3613)] = 96743, + [SMALL_STATE(3614)] = 96757, + [SMALL_STATE(3615)] = 96771, + [SMALL_STATE(3616)] = 96785, + [SMALL_STATE(3617)] = 96799, + [SMALL_STATE(3618)] = 96813, + [SMALL_STATE(3619)] = 96817, + [SMALL_STATE(3620)] = 96821, + [SMALL_STATE(3621)] = 96825, + [SMALL_STATE(3622)] = 96829, + [SMALL_STATE(3623)] = 96833, + [SMALL_STATE(3624)] = 96837, }; 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(2285), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(724), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(144), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1505), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(517), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2625), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(134), [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(304), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1505), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3199), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3200), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3639), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2065), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2067), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1364), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1065), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1334), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(277), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), - [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(2358), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3419), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3364), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3458), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1537), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2051), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1495), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(801), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3077), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3385), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2069), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1066), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3346), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3042), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(814), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1361), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(863), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(830), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2682), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(348), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1973), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2390), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3420), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3467), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1533), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2038), [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2079), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2053), [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3318), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2752), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1449), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2592), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1998), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2577), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1494), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3389), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1991), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1494), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3575), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [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(234), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(167), [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(75), [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(76), [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(77), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3598), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2609), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(173), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3563), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3367), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2639), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(203), [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(113), [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(114), [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(115), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3510), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2576), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(98), [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3556), - [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2609), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3563), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(84), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2639), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1051), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(151), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(144), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1057), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(170), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(134), [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(11), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(304), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1505), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(234), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(790), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(850), - [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), - [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3199), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3498), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3639), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(297), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1495), + [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(233), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(801), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(855), + [779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3168), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3408), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3385), [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2487), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2622), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1364), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1422), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(835), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2691), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1066), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1480), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(836), [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1024), - [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(2563), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(345), - [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(2807), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2676), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2570), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(341), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2994), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2701), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(189), [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3318), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2571), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1449), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2592), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1489), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1501), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3373), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1501), - [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3486), - [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(156), - [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(156), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [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(1806), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 199), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 199), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3130), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2572), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1424), + [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2606), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1385), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1494), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3389), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1494), + [860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3575), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 200), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 200), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), @@ -193559,1061 +192326,1061 @@ static const TSParseActionEntry ts_parse_actions[] = { [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1051), - [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(11), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(304), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1505), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [1138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3199), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3639), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2487), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2622), - [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1364), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1024), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), - [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [1183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2807), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2676), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [1195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3318), - [1201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2571), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1449), - [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2592), - [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), + [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1495), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(801), + [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3168), + [1106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3385), + [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2487), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2691), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1066), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), + [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(836), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1024), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2570), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2994), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2701), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2572), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1494), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3389), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1494), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3575), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 30), [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 30), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 77), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 77), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 147), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 147), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 100), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 100), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 117), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 117), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 243), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 243), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [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_match_block, 3, 0, 0), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [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__statement, 1, 0, 0), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [1381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 119), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 119), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 147), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 147), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 35), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 35), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 40), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 40), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 100), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 100), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 41), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 41), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 244), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 244), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 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_loop_expression, 2, 0, 8), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 78), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 78), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 118), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 118), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 174), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 174), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2031), - [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(683), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2281), - [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3254), - [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(822), - [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(832), - [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2868), - [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2869), - [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3205), - [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3345), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2734), - [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2112), - [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2344), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2579), - [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), - [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2738), - [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2738), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 249), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 249), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 90), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 90), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 203), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 203), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 90), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 90), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 206), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 206), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 207), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 207), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 159), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 159), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 208), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 208), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 161), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 161), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 209), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 209), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 163), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 163), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 215), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 215), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 216), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 216), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 218), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 218), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 219), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 219), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 98), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 98), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 220), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 220), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 73), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 73), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 203), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 203), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 182), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 182), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 229), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 229), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 230), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 230), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 231), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 231), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 190), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 190), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 232), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 232), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 233), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 233), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 234), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 234), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 139), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 139), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 193), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 193), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 235), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 235), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 236), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 236), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 237), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 237), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 238), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 238), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 239), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 239), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 240), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 240), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 241), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 241), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 197), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 197), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 242), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 242), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 206), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 206), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 246), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 246), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 211), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 211), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 247), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 247), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 213), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 213), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 248), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 248), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 250), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 250), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 251), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 251), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 252), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 252), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 254), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 254), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 225), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 225), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), - [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 227), - [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 227), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 229), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 229), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), - [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 262), - [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 262), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 263), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 263), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 233), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 233), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 264), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 264), - [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 252), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 252), - [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 265), - [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 265), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 74), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 74), - [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 235), - [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 235), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 266), - [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 266), - [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 240), - [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 240), - [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 267), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 267), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 268), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 268), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 269), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 269), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 270), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 270), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 271), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 271), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 256), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 256), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 272), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 272), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 258), - [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 258), - [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 273), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 273), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 262), - [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 262), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 274), - [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 274), - [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 275), - [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 275), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 276), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 276), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 268), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 268), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 277), - [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 277), - [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 278), - [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 278), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 279), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 279), - [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 275), - [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 275), - [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 280), - [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 280), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 75), - [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 75), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 76), - [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 76), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 112), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 112), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 82), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 82), - [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), - [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), - [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 83), - [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 83), - [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 113), - [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 113), - [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 114), - [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 114), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 115), - [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 115), - [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 75), - [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 75), - [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 116), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 116), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 84), - [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 84), - [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), - [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), - [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), - [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), - [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 81), - [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 81), - [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), - [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), - [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 125), - [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 125), - [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 126), - [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 126), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 102), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 102), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 118), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 118), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 127), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 127), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 112), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 112), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 74), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 74), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 113), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 113), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 130), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 130), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 113), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 113), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 131), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 131), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 132), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 132), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 88), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 88), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 86), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 86), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 133), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 133), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 113), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 113), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 135), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 135), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 65), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 65), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 136), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 136), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 139), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 139), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 73), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 73), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 142), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 142), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 97), - [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 97), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 137), - [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 137), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 139), - [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 139), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 90), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 90), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 137), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 137), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 139), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 139), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 137), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 137), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 139), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 139), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 146), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 146), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 86), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 86), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 74), - [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 74), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 73), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 73), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), - [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 87), - [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 87), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 74), - [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 74), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 88), - [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 88), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 86), - [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 86), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 73), - [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 73), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 74), - [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 74), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 65), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 65), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 114), - [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 114), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 158), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 158), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 159), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 159), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 160), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 160), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 122), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 122), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 125), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 125), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 171), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 171), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 172), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 172), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 173), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 173), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 90), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 90), - [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 95), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 95), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 176), - [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 176), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 74), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 74), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 181), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 181), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 132), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 132), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 182), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 182), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 133), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 133), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 134), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 134), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 183), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 183), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 184), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 184), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 185), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 185), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 186), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 186), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 187), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 187), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 190), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 190), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 191), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 191), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 142), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 142), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 192), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 192), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 176), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 176), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 185), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 185), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 90), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 90), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 139), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 139), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 185), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 185), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 193), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 193), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 185), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 185), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 197), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 197), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 198), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 198), - [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3269), - [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), - [2885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2740), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3471), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), - [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2365), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2262), - [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2218), - [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3658), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3325), - [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3201), - [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3360), - [2929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), - [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2900), - [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3361), - [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3362), - [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), - [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2904), - [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2220), - [2950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), - [2953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2092), - [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), - [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1989), - [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3370), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 90), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 90), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 54), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 54), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 95), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 95), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 96), - [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 96), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), - [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 143), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 143), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 120), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 120), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 175), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 175), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), + [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(672), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2243), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3105), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3007), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3164), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2578), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2105), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2361), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2314), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2604), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2604), + [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3503), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 231), + [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 231), + [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 208), + [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 208), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 159), + [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 159), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 209), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 209), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 161), + [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 161), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), + [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 163), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 163), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), + [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), + [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), + [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 215), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 215), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 167), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 167), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 216), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 216), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 169), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 169), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 217), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 217), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 218), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 218), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 219), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 219), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 220), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 220), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 221), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 221), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 204), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 204), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 183), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 183), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 229), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 229), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 230), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 230), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 232), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 232), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 191), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 191), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 233), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 233), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 234), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 234), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 235), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 235), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 139), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 139), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 194), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 194), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 236), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 236), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 237), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 237), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 238), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 238), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 239), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 239), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 240), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 240), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 241), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 241), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 242), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 242), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 198), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 198), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 243), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 243), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 207), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 207), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 247), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 247), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 212), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 212), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 248), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 248), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 214), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 214), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 249), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 249), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 250), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 250), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 251), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 251), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 252), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 252), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 253), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 253), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 224), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 224), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 226), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 226), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 228), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 228), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 230), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 230), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 262), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 262), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 263), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 263), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 264), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 264), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 234), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 234), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 265), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 265), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 253), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 253), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 266), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 266), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 236), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 236), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 267), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 267), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 241), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 241), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 268), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 268), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 269), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 269), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 270), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 270), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 271), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 271), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 272), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 272), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 257), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 257), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 273), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 273), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 259), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 259), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 274), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 274), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 263), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 263), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 275), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 275), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 276), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 276), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 277), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 277), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 269), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 269), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 278), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 278), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 279), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 279), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 280), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 280), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 276), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 276), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 281), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 281), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 74), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 74), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 75), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 75), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 76), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 76), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 77), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 77), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 82), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 82), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 83), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 83), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 84), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 84), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 74), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 74), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 86), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 86), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 75), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 75), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 74), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 74), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 87), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 87), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 75), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 75), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 88), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 88), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 86), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 86), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 74), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 74), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 75), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 75), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 67), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 67), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 90), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 90), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 95), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 95), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3100), + [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1067), + [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2723), + [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3347), + [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3170), + [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3277), + [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2386), + [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2289), + [2316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2200), + [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3615), + [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3278), + [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3256), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(860), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3318), + [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1973), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3017), + [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3319), + [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3320), + [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3321), + [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3021), + [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2197), + [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1866), + [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2075), + [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3328), + [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), + [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3328), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 90), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 90), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 95), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 95), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 96), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 96), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 97), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 97), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 90), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 90), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 90), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 90), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 98), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 98), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 56), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 56), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), + [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 33), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 33), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 34), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 34), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 112), + [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 112), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 115), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 115), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 116), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 116), + [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 117), + [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 117), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 76), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 76), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 118), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 118), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 36), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 36), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), + [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 81), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 81), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 125), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 125), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 126), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 126), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 102), + [2577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 102), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 120), + [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 120), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 112), + [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 112), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 75), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 75), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 115), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 115), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 130), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 130), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 115), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 115), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 131), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 131), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 132), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 132), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 88), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 88), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 86), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 86), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 133), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 133), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 115), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 115), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 135), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 135), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 67), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 67), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 136), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 136), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 139), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 139), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 142), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 142), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 143), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 143), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 137), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 137), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 139), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 139), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 90), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 90), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 137), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 137), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 139), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 139), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 137), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 137), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 139), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 139), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 146), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 146), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 39), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 39), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 56), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 56), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 46), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 46), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 116), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 116), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 158), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 158), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 159), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 159), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 160), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 160), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 122), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 122), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 125), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 125), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 172), + [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 172), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 173), + [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 173), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 174), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 174), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 177), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 177), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 56), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 56), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 75), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 75), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 182), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 182), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 132), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 132), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 183), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 183), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 133), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 133), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 134), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 134), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 184), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 184), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 185), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 185), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 186), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 186), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 187), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 187), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 188), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 188), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 191), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 191), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 192), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 192), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 142), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 142), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 193), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 193), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 177), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 177), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 186), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 186), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 90), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 90), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 139), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 139), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 186), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 186), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 194), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 194), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 186), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 186), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 197), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 197), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 198), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 198), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 199), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 199), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 56), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 56), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 204), + [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 204), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), @@ -194622,1998 +193389,1960 @@ static const TSParseActionEntry ts_parse_actions[] = { [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 106), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 106), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 107), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 107), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3345), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3586), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 174), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 174), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 174), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 106), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 106), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 43), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 43), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 42), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 42), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), + [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 107), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 107), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 48), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 48), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 47), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 47), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [3462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), + [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), + [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 66), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 66), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 68), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 68), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 69), - [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 69), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 78), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 78), - [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 121), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 121), - [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 78), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 78), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 121), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 121), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 78), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 78), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 118), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 118), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 118), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 121), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 121), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 109), - [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 109), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), - [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), - [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), - [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), - [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), - [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 155), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 155), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 104), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 104), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 156), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 156), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 81), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 81), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 105), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 105), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), - [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), - [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 177), - [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 177), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 55), - [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 55), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 129), - [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 129), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 99), - [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 99), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 202), - [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 202), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 85), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 85), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 148), - [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 148), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 101), - [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 101), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 152), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 152), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 64), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 64), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 65), - [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 65), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 65), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 65), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), - [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), - [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2656), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3334), - [4049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 128), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 128), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [4057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 68), + [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 68), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 70), + [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 70), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 71), + [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 71), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 43), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 109), + [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 109), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 120), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 120), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 120), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 48), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 51), + [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 51), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 52), + [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 52), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 175), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 175), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 175), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 129), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 129), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 203), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 203), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 66), + [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 66), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 67), + [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 67), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 67), + [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 67), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 104), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 104), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), + [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 152), + [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 152), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 105), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 105), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 155), + [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 155), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 156), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 156), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 44), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 45), + [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 44), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), + [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 49), + [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 49), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 53), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 53), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 54), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 81), + [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 81), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 57), + [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 57), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 148), + [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 148), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 178), + [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 178), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 37), + [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 37), + [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 85), + [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 85), + [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [3893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 99), + [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 99), + [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 101), + [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 101), + [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 50), + [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 50), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 49), + [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 49), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [3987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 128), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 128), + [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3228), + [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2673), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 174), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 118), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 189), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 157), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 140), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 157), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 175), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 141), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 189), + [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 190), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 205), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 206), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 120), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 120), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 188), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 204), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 118), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 140), - [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 205), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 245), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 141), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 111), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 61), - [4686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 61), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 60), - [4752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 60), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 56), - [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 56), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 58), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 63), - [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 63), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 57), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 58), - [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 58), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 63), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 57), - [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 58), - [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 63), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 57), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 57), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(81), - [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2365), - [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 72), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 57), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 57), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1968), - [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(386), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 121), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 253), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 65), - [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), - [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 178), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 78), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 65), - [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 221), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 221), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 104), - [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 178), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 104), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 253), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 149), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 102), - [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 80), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 200), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 79), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(809), - [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [5871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3068), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [5990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 79), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [6021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 179), - [6023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 179), SHIFT_REPEAT(801), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 180), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 80), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 104), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(774), - [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2206), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(452), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 65), - [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 119), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 150), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 151), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 222), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2318), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2066), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 120), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [6219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 103), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [6301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(892), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2203), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 91), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 92), - [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 93), - [6403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 94), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 201), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 112), - [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [6463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 244), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 59), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [6535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [6543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), - [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [6605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 67), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 153), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [6885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [6945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 70), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [7029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 175), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [7153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 71), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [7197] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [7275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), - [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), - [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 246), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 111), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 42), REDUCE(sym_scoped_type_identifier, 3, 0, 43), + [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 47), REDUCE(sym_scoped_type_identifier, 3, 0, 48), + [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 31), + [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 63), + [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 63), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 58), + [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 58), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [4738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), + [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 59), + [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 65), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 59), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 59), + [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 60), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 59), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 60), + [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 65), + [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 59), + [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 60), + [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 59), + [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 65), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 59), + [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 59), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 60), + [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 65), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(81), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [4896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [4899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [4972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(869), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2386), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2221), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 32), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 59), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 59), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [5375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [5403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1978), + [5406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(398), + [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1468), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [5440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 67), + [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), + [5444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 179), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 67), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 222), + [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 179), + [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 104), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 32), + [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 222), + [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 104), + [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 254), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 254), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 149), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 201), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 112), + [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2876), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [5707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(811), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 102), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 50), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [5740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 113), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 114), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 64), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 91), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 92), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 93), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 94), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(419), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3240), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 38), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 202), + [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2155), + [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2236), + [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 36), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 165), + [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(774), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 67), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 223), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 103), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 79), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 245), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 104), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(451), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [6307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 61), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(790), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 150), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 121), + [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [6373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 151), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 180), + [6383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 180), SHIFT_REPEAT(798), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 181), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2346), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2202), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 204), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 80), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 153), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 34), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 69), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [6878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 176), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [6894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [6926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [6968] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [7120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [7168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 72), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 73), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 55), + [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -196674,10 +195403,10 @@ 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__line_doc_content] = true, }, [9] = { [ts_external_token_raw_string_literal_content] = true,